:root {
  --black: #0B0E1E;
  --white: #ffffff;
  --primary-color: #008ad2;
  --second-color: #ffac5d;
  --accent-color: #878787;
  --lightgrey: #dfecff;
  --title-font: "Instrument Sans", sans-serif;
  --paragraph-font: "Arimo", sans-serif;
}



body {
  font-family: var(--paragraph-font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--black);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

a {
  text-decoration: none;
}

p {
  font-weight: 400;
}

.custom-container {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1180px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.fs-20 {
  font-size: 20px;
}

.main-title {
  font-size: 50px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--black);
  position: relative;
  /* padding-bottom: 10px;
  margin-bottom: 25px; */
}

/* .main-title::before{
  border-radius:10px;content: '';position: absolute;bottom: 0;left: 0;width: 70px;height: 3px;background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
} */
.main-title span {
  /* color: var(--primary-color); */
  text-transform: none;
  background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grey {
  background: var(--lightgrey);
}

.mesh-bg {
  background: radial-gradient(circle at 20% 30%, #f4f0e4 0%, transparent 40%), radial-gradient(circle at 70% 40%, #edf8ff 0%, transparent 50%), radial-gradient(circle at 60% 80%, #fff 0%, transparent 50%), radial-gradient(circle at 30% 70%, #ffff 0%, transparent 50%), radial-gradient(circle at 80% 20%, #fff 0%, transparent 50%);
  background-color: #fff;
  /* background-blend-mode: screen; */
}

.theme-btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  text-decoration: none;
  text-transform: none;
  border-radius: 0;
  outline: 0;
  border: 1px solid rgba(11, 14, 30, 1);
  padding: 10px 25px 10px 25px;
  background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
  color: #fff;
  transition: 0.3s ease-in;
}

.theme-btn svg {
  width: 16px;
  transition: 0.3s ease-in-out;
}

.theme-btn:hover {
  color: rgba(11, 14, 30, 1);
  background: transparent;
  background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theme-btn:hover svg {
  transform: translateX(10px);
}

.theme-btn.btn-bordered {
  background: transparent;
}

.theme-btn.btn-bordered:hover {
  background: var(--primary-color);
  color: #fff;

}

.sub-heading {
  color: var(--accent-color);
  font-size: 18px;
}

.color-green {
  color: var(--second-color);
}.bg-blue{
  background: radial-gradient(circle at 4% 22%, #2A558D 0%, #04293c 25%, #0B0E1E 100%);
}