/* Load Geist Mono from Google Fonts */

@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:ital,wght@0,100..900;1,100..900&display=swap");

/* ==========================================
Buttons
========================================== */

.gb-text-d138f906,
.button-primary {
  font-family: basic-sans, sans-serif;
  font-size: 1.1rem;
  color: var(--dark-purple) !important;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(
    272deg,
    var(--green) 7.92%,
    var(--yellow-orange) 50.48%,
    var(--orange) 99.57%
  );
  backdrop-filter: blur(2px);
  display: flex;
  padding: 12px 26px 12px 34px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  position: relative;
  z-index: 1;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  pointer-events: auto;
}

.gb-text-d138f906::before,
.button-primary::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow-orange));
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.gb-text-d138f906:hover::before,
.button-primary:hover::before {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1);
}

.gb-text-d138f906:hover,
.button-primary:hover {
  color: var(--dark-purple);
  background: linear-gradient(
    272deg,
    var(--green) 7.92%,
    var(--yellow-orange) 50.48%,
    var(--orange) 99.57%
  );
}

/* ==========================================
Text Links
========================================== */

.inline-link a {
  color: var(--main-purple) !important;
  text-decoration: underline !important;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: end;
  gap: 24px;
  padding-bottom: 10px;
  font-family: basic-sans, sans-serif;
  color: var(--white) !important;
  font-size: 1.3rem;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}

.text-link-dark {
  position: relative;
  display: inline-flex;
  align-items: end;
  padding-bottom: 5px;
  font-family: basic-sans, sans-serif;
  color: var(--mid-purple) !important;
  font-size: 1.313rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.05px;
  text-decoration: none;
  text-transform: uppercase !important;
  width: fit-content;
}

.text-link::before,
.text-link-dark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  transition: background 0.35s ease;
  transition: width 0.35s ease;
}

.text-link::after {
  content: "";
  left: 0;
  width: 36px;
  height: 18px;
  /* transform:translateY(-50%); */
  flex-shrink: 0;
  background: url("../images/Arrow-default.svg") center/contain no-repeat !important;
  transition: background 0.3s ease;
  transition: width 0.3s ease;
}

.text-link:hover::before {
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--orange) 33%,
    var(--red) 96%
  );
  width: 100%;
}

.text-link:hover::after {
  background: url("../images/Arrow-hover.svg") center/contain no-repeat !important;
  width: 53px !important;
  height: 18px !important;
}

.text-link-alt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: basic-sans, sans-serif;
  color: var(--green) !important;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase !important;
  width: fit-content;
}

.text-link-alt::after {
  content: "";
  left: 0;
  width: 36px;
  height: 18px;
  flex-shrink: 0;
  background: url("../images/Arrow-default.svg") center/contain no-repeat;
  transition: background 0.3s ease;
  transition: width 0.3s ease;
}

.text-link-alt:hover {
  color: var(--green) !important;
}

.text-link-alt:hover::after {
  background: url("../images/Arrow-hover.svg") center/contain no-repeat !important;
  width: 53px;
  height: 18px;
}

/* ==========================================
   Headings & Paragraph Styles
========================================== */

h1 {
  font-size: 4.375rem !important;
  font-weight: 600 !important;
  line-height: 115% !important;
  letter-spacing: 1% !important;
}

h2 {
  font-size: 2.5rem !important;
  line-height: 120% !important;
  letter-spacing: 1% !important;
}

h3 {
  font-family: "Geist Mono", monospace !important;
  font-size: 1.5rem;
  font-weight: 400 !important;
  line-height: 130%;
  letter-spacing: 0%;
}

h4 {
  font-size: 1.3125rem !important;
  line-height: 120% !important;
  letter-spacing: 1% !important;
}

p.body-xl {
  font-size: 1.5rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 145% !important;
}

p.body-lg {
  font-size: 1.313rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 145% !important;
}

p.semi-bold-p,
h4.semi-bold-p {
  font-weight: 600 !important;
}

p.body-main-reg {
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  line-height: 145% !important;
}

p.body-main-light {
  font-size: 1.125rem !important;
  font-weight: 300 !important;
  line-height: 145% !important;
}

p.light {
  font-weight: 300 !important;
}

.breadcrumb {
  font-family: "Geist Mono", monospace !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 120%;
  color: #fff !important;
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  left: -12px;
}

.breadcrumb-active {
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  width: fit-content;
}

.breadcrumb::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7872b 0%, #ffae17 100%);
}

.terms-content h2 {
  margin-bottom: 1.563rem;
}

.terms-content h3 {
  color: var(--dark-purple) !important;
  font-weight: 700 !important;
}

.terms-content p,
.terms-content li {
  font-weight: 300 !important;
}

.terms-content li {
  margin-bottom: 15px;
}

.terms-content .wp-block-table th,
.terms-content .wp-block-table td {
  border: 1px solid #989db1;
}

.terms-content .wp-block-table thead {
  background-color: rgba(152, 157, 177, 0.2);
  border-bottom: 0;
}

h3.dot-bullet {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  left: -12px;
}

p.dot-bullet {
  position: relative;
  padding-top: 0px;
  display: inline-flex;
  align-items: start;
  gap: 15px;
}

h3.dot-bullet::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7872b 0%, #ffae17 100%);
}

h4.featured-title {
  font-size: 2rem !important;
  font-weight: 400 !important;
}
.orange {
  color: var(--yellow-orange) !important;
}

.green {
  color: var(--green) !important;
}

p.dot-bullet::before {
  content: "";
  width: 12px;
  height: 12px;
  padding-right: 12px;
  border-radius: 50%;
  margin-top: 8px;
  background: linear-gradient(180deg, #f7872b 0%, #ffae17 100%);
}

p.leadership-name-text {
  color: #232169 !important;
  font-size: 1.875rem !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 120%;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

p.leadership-title-text {
  color: #4038a8 !important;
  font-family: "Geist Mono", monospace !important;
  font-size: 1.125rem !important;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 10px;
}

p.leadership-bio-text {
  color: var(--Text-Grey) !important;
  font-size: 1rem !important;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 0;
}

h3.solutions,
.solutions a {
  font-family: "Geist Mono", monospace !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--yellow-orange) !important;
}

.homepage h1,
h1.homepage {
  font-size: 6.625rem !important;
  font-weight: 600 !important;
  line-height: 105% !important;
  letter-spacing: 0% !important;
  color: var(--green) !important;
}
.homepage h2,
h2.homepage {
  font-size: 3rem !important;
  font-weight: 400 !important;
  line-height: 125% !important;
  color: var(--green) !important;
  letter-spacing: 0.48px !important;
}
.homepage h4,
h4.homepage {
  font-size: 2rem !important;
  font-weight: 600 !important;
  line-height: 140% !important;
}

p.homepage-post-label,
.related-post-card__category,
.homepage-post-label a {
  font-family: "Geist Mono" !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  letter-spacing: 0.16px;
  color: var(--yellow-orange) !important;
}

p.homepage-post-title a,
p.related-post-card__title a {
  color: var(--White, #fff);
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 125%;
  letter-spacing: 0.26px;
  text-decoration: none !important;
}

.footer-widget-2 a {
  font-size: 0.875rem;
  text-decoration: underline !important;
  color: #fff !important;
}

/* ==========================================
   Tablet Styles
========================================== */

@media screen and (max-width: 1023px) {
  .homepage h2,
  h2.homepage {
    font-size: 2.25rem !important;
    font-weight: 400 !important;
    line-height: 125% !important;
    letter-spacing: 0.36px !important;
  }
  h1.homepage {
    font-size: 3.5rem !important;
  }

  h1 {
    font-size: 2.625rem !important;
    font-weight: 600 !important;
    line-height: 115% !important;
    letter-spacing: 1% !important;
  }

  h2 {
    font-size: 1.75rem !important;
    font-weight: 400 !important;
    line-height: 120% !important;
    letter-spacing: 1% !important;
  }
}

/* ==========================================
  Mobile
========================================== */

@media screen and (max-width: 768px) {
  h1.homepage {
    color: var(--green) !important;
  }

  h2.homepage {
    font-weight: 400 !important;
    line-height: 125% !important;
    letter-spacing: 0.36px !important;
    color: var(--green) !important;
  }

  h4.homepage {
    font-size: 1.875rem !important;
    line-height: 135% !important;
  }

  p.body-xl {
    font-size: 1.313rem !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 145% !important;
  }

  p.body-lg {
    font-size: 1.313rem !important;
    font-style: normal;
    font-weight: 400;
    line-height: 145% !important;
  }

  h3 {
    font-family: "Geist Mono", monospace !important;
    font-size: 1.375rem;
    font-weight: 400 !important;
    line-height: 130%;
    letter-spacing: 0%;
  }

  p.breadcrumb {
    gap: 20px;
    left: -12px;
  }

  p.body-main-reg {
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    line-height: 145% !important;
  }

  p.body-main-light {
    font-size: 1.125rem !important;
    font-weight: 300 !important;
    line-height: 145% !important;
  }
}
