h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
  -webkit-transition: color 0.2s ease, opacity 0.2s ease;
  transition: color 0.2s ease, opacity 0.2s ease;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  -webkit-transition: background 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  transition: background 0.35s ease, box-shadow 0.35s ease, -webkit-box-shadow 0.35s ease;
}
.site-header--scrolled {
  background: #000;
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.site-header.menu-open {
  background: #000;
}
.site-header__inner {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 40px;
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header__logo {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
}
.site-header__logo img {
  height: 52px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
.site-header__link {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.site-header__link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.site-header__btn-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 16px 24px 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.site-header__btn-contact:hover {
  border-color: #fff;
  color: #fff;
}
.site-header__btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header__btn-icon svg, .site-header__btn-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.site-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.site-header__mobile-nav {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}
.site-header__mobile-nav.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header__mobile-link {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__mobile-link:last-child {
  border-bottom: none;
}
.site-header__mobile-link:hover {
  color: #8e6ce4;
}
.site-header--inner {
  background: #fff;
}
.site-header--inner.site-header--scrolled {
  -webkit-box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}
.site-header--inner.menu-open {
  background: #fff;
}
.site-header--inner .site-header__link {
  color: #000;
}
.site-header--inner .site-header__link:hover {
  color: rgba(0, 0, 0, 0.55);
}
.site-header--inner .site-header__btn-contact {
  border-color: rgba(0, 0, 0, 0.4);
  color: #000;
}
.site-header--inner .site-header__btn-contact:hover {
  border-color: #000;
  color: #000;
}
.site-header--inner .site-header__hamburger span {
  background: #000;
}
.site-header--inner .site-header__mobile-nav {
  background: #fff;
  border-top-color: rgba(0, 0, 0, 0.08);
}
.site-header--inner .site-header__mobile-link {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.site-header--inner .site-header__mobile-link:last-child {
  border-bottom: none;
}
.site-header--inner .site-header__mobile-link:hover {
  color: #8e6ce4;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .site-header__inner {
    padding: 0 2.7777777778vw;
  }
  .site-header__nav {
    gap: 4.4444444444vw;
  }
  .site-header__btn-contact {
    gap: 2.7777777778vw;
    padding: 1.1111111111vw 1.6666666667vw 1.1111111111vw 1.9444444444vw;
  }
}
@media (max-width: 991px) {
  .site-header__inner {
    padding: 0 24px;
    height: 70px;
  }
  .site-header__nav {
    display: none !important;
  }
  .site-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.site-footer {
  background: #000;
}
.site-footer__container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 40px;
}
.site-footer__top {
  padding-bottom: 96px;
}
.site-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.site-footer__logo {
  display: block;
  line-height: 0;
}
.site-footer__logo img {
  height: 46px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__tagline {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.09px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 371px;
  margin: 0;
}
.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-footer__social-link svg, .site-footer__social-link img {
  width: 20px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__social-link:hover {
  color: #fff;
}
.site-footer__nav-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.site-footer__nav-title {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0;
}
.site-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__nav-link {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.224px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.site-footer__nav-link strong {
  font-weight: 600;
  color: #fff;
}
.site-footer__nav-link:hover {
  color: #fff;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__bottom-inner {
  max-width: 1620px;
  margin: 0 auto;
  padding: 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.site-footer__copyright {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 300px;
}
.site-footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer__legal-link {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  white-space: nowrap;
}
.site-footer__legal-link:hover {
  color: #fff;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .site-footer__container {
    padding: 0 2.7777777778vw;
  }
  .site-footer__bottom-inner {
    padding: 1.6666666667vw 2.7777777778vw;
  }
}
@media (max-width: 991px) {
  .site-footer__container {
    padding: 0 24px;
  }
  .site-footer__top {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .site-footer__bottom-inner {
    padding: 20px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .site-footer__legal {
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .site-footer__legal {
    gap: 24px;
  }
  .site-footer__legal-link, .site-footer__copyright {
    font-size: 14px;
  }
  .site-footer__nav-col {
    gap: 16px;
  }
}

.section-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 57px;
}
.section-label--dark {
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.section-label--light {
  border: 1px solid rgba(8, 8, 10, 0.08);
}
.section-label__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 16px;
  background: #8e6ce4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-label__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
  white-space: nowrap;
  color: #fff;
}
.section-label--light .section-label__text {
  color: #08080a;
}
@media (max-width: 991px) {
  .section-label {
    padding: 14px 16px;
  }
  .section-label__text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .section-label {
    padding: 12px 14px;
    height: 40px;
  }
  .section-label__text {
    font-size: 15px;
  }
}

.hero-section {
  background: #000;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 84px;
}
.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-section__bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(195.08deg, rgba(0, 0, 0, 0) 34.89%, rgba(0, 0, 0, 0.98) 55.93%);
  z-index: 1;
}
.hero-section__container {
  position: relative;
  z-index: 2;
  max-width: 1620px;
  margin: 0 auto;
  padding: 80px 40px 104px;
  min-height: calc(100vh - 84px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.hero-section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
.hero-section__title {
  font-family: "Sora", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -3.36px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.hero-section__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.12px;
  color: #fff;
  max-width: 765px;
  margin: 0;
}
.hero-section__scroll-hint {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 28px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  opacity: 0.75;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.hero-section__scroll-hint:hover {
  opacity: 1;
}
.hero-section__scroll-hint svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .hero-section__title {
    font-size: 4.8611111111vw;
    letter-spacing: -0.2333333333vw;
  }
  .hero-section__subtitle {
    font-size: 1.25vw;
  }
  .hero-section__container {
    padding: 5.5555555556vw 2.7777777778vw 7.2222222222vw;
    gap: 1.1111111111vw;
  }
  .hero-section__content {
    gap: 1.8055555556vw;
  }
  .hero-section__scroll-hint {
    width: 1.3888888889vw;
    height: 1.9444444444vw;
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding-top: 70px;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .hero-section__container {
    padding: 56px 24px 104px;
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
  .hero-section__content {
    gap: 20px;
  }
  .hero-section__title {
    font-size: 50px;
    letter-spacing: -1.8px;
  }
  .hero-section__subtitle {
    font-size: 18px;
  }
  .hero-section__scroll-hint {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero-section__title {
    font-size: 32px;
    letter-spacing: -1.2px;
  }
  .hero-section__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
}

.stats-section {
  background: #000;
}
.stats-section__container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 40px 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.stats-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.stats-section__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  padding: 40px 24px 40px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 192px;
}
.stats-section__item:last-of-type {
  border-right: none;
}
.stats-section__icon {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.stats-section__icon svg,
.stats-section__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.stats-section__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stats-section__number {
  font-family: "Sora", sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.96px;
  color: #fff;
  display: block;
}
.stats-section__label {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}
.stats-section__offices {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 345px;
  height: 192px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.stats-section__offices-bg {
  position: absolute;
  inset: 0;
}
.stats-section__offices-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: blur(34px);
          filter: blur(34px);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.stats-section__offices-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}
.stats-section__offices-content {
  position: relative;
  z-index: 1;
  padding: 34px 24px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
}
.stats-section__offices-icon {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.stats-section__offices-icon svg,
.stats-section__offices-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.stats-section__offices-title {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.96px;
  color: #fff;
  margin: 0 0 32px;
}
.stats-section__offices-loc {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}
.stats-section__offices-loc:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .stats-section__number {
    font-size: 3.75vw;
    letter-spacing: -0.0666666667vw;
  }
  .stats-section__label {
    font-size: 1.25vw;
  }
  .stats-section__container {
    padding: 0 2.7777777778vw 7.2222222222vw;
    gap: 5.5555555556vw;
  }
  .stats-section__offices-title {
    font-size: 1.8055555556vw;
    margin-bottom: 1.9444444444vw;
  }
  .stats-section__offices-loc {
    font-size: 1.3888888889vw;
    margin-bottom: 1.3888888889vw;
  }
}
@media (max-width: 991px) {
  .stats-section__container {
    padding: 0 24px 72px;
    gap: 48px;
  }
  .stats-section__item {
    min-width: 220px;
    height: auto;
    padding: 32px 16px 32px 0;
  }
  .stats-section__offices {
    min-width: 100%;
    height: auto;
    min-height: 160px;
    border-radius: 12px;
  }
  .stats-section__number {
    font-size: 40px;
  }
  .stats-section__label {
    font-size: 15px;
  }
  .stats-section__data {
    gap: 16px;
  }
  .stats-section__offices-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .stats-section__offices-loc {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .stats-section__item {
    min-width: 150px;
  }
  .stats-section__icon {
    width: 36px;
    height: 36px;
  }
  .stats-section__number {
    font-size: 32px;
  }
}

@-webkit-keyframes who-gradient-sweep {
  0% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes who-gradient-sweep {
  0% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.who-we-are {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 40px;
}
.who-we-are__text {
  font-family: "Sora", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 76px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, #bdd2f6 40%, #c6d8ff 45%, #a987f9 55%, #bdd2f6 62%, #ffffff 72%, #ffffff 100%);
  background-size: 400% 400%;
  background-position: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.who-we-are.is-animated .who-we-are__text {
  -webkit-animation: who-gradient-sweep 2s ease-in-out forwards;
          animation: who-gradient-sweep 2s ease-in-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .who-we-are__text {
    background-position: 0% 0%;
  }
  .who-we-are.is-animated .who-we-are__text {
    -webkit-animation: none;
            animation: none;
  }
}
@media (min-width: 992px) and (max-width: 1440px) {
  .who-we-are {
    gap: 2.7777777778vw;
  }
  .who-we-are__text {
    font-size: 4.0277777778vw;
    line-height: 5vw;
  }
}
@media (max-width: 991px) {
  .who-we-are {
    gap: 24px;
  }
  .who-we-are__text {
    font-size: 38px;
    line-height: 1.25;
    letter-spacing: -1px;
  }
}
@media (max-width: 576px) {
  .who-we-are__text {
    font-size: 26px;
    line-height: 1.3;
  }
}

.approach-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  max-height: 1008px;
}
.approach-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.approach-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.approach-section__bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
.approach-section__container {
  position: relative;
  z-index: 1;
  max-width: 1620px;
  margin: 0 auto;
  padding: 160px 40px 120px;
}
.approach-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px 64px;
}
.approach-section__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 48px;
  min-width: 400px;
}
.approach-section__title {
  font-family: "Sora", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  max-width: 595px;
}
.approach-section__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 492px;
}
.approach-section__desc {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.12px;
  color: #000;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .approach-section__title {
    font-size: 5vw;
    letter-spacing: -0.25vw;
  }
  .approach-section__desc {
    font-size: 1.6666666667vw;
  }
  .approach-section__container {
    padding: 8.3333333333vw 2.7777777778vw 5.5555555556vw;
  }
  .approach-section__inner {
    gap: 3.3333333333vw 4.4444444444vw;
  }
  .approach-section__right {
    width: 34.1666666667vw;
  }
}
@media (max-width: 991px) {
  .approach-section {
    min-height: auto;
  }
  .approach-section__container {
    padding: 80px 24px 72px;
  }
  .approach-section__left {
    min-width: 100%;
    gap: 24px;
  }
  .approach-section__right {
    width: 100%;
  }
  .approach-section__title {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .approach-section__desc {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .approach-section__title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .approach-section__desc {
    font-size: 16px;
  }
}

.ecosystem-section {
  background: #fff;
  padding-bottom: 104px;
  margin-top: -1px;
  position: relative;
}
.ecosystem-section__header {
  max-width: 1620px;
  margin: 0 auto;
  padding: 90px 40px 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  text-align: center;
}
.ecosystem-section__title {
  font-family: "Sora", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  text-align: center;
}
.ecosystem-section__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.12px;
  color: #000;
  text-align: center;
  margin: 0;
  max-width: 525px;
}
.ecosystem-section__slider-wrap {
  padding: 0 40px;
  overflow: hidden;
}
.ecosystem-section__nav {
  max-width: 1620px;
  margin: 72px auto 0;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .ecosystem-section__title {
    font-size: 5vw;
    letter-spacing: -0.25vw;
  }
  .ecosystem-section__subtitle {
    font-size: 1.6666666667vw;
  }
  .ecosystem-section__header {
    padding: 6.25vw 2.7777777778vw 4.4444444444vw;
    gap: 3.3333333333vw;
  }
  .ecosystem-section__nav {
    margin-top: 5vw;
  }
}
@media (max-width: 991px) {
  .ecosystem-section {
    padding-bottom: 72px;
  }
  .ecosystem-section__header {
    padding: 60px 24px 48px;
    gap: 28px;
  }
  .ecosystem-section__title {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .ecosystem-section__subtitle {
    font-size: 18px;
  }
  .ecosystem-section__slider-wrap {
    padding: 0 24px;
  }
  .ecosystem-section__nav {
    margin-top: 40px;
    padding: 0 24px;
  }
}
@media (max-width: 576px) {
  .ecosystem-section__title {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .ecosystem-section__subtitle {
    font-size: 15px;
  }
  .ecosystem-section__slider-wrap {
    padding: 0 16px;
  }
}

.venture-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  margin: 0 8px;
  outline: none;
}
.venture-card__bg {
  position: absolute;
  inset: 0;
}
.venture-card__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.venture-card__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.18)), color-stop(70%, rgba(0, 0, 0, 0.82)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.82) 70%);
  -webkit-transition: background 0.45s ease;
  transition: background 0.45s ease;
  z-index: 1;
}
.venture-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 40px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.venture-card__tag {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.66px;
  line-height: 1.1;
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.venture-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.venture-card__desc {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  letter-spacing: 0.07px;
  max-height: none;
  opacity: 1;
  margin: 0;
}
.venture-card__name {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1px;
  line-height: normal;
  margin: 0;
}
@media (min-width: 576px) {
  .venture-card {
    height: 480px;
    margin: 0 8px;
  }
  .venture-card__content {
    padding: 40px 32px;
  }
  .venture-card__tag {
    font-size: 13px;
  }
  .venture-card__name {
    font-size: 26px;
    letter-spacing: -1px;
  }
  .venture-card__desc {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  .venture-card {
    height: 572px;
    margin: 0 12px;
  }
  .venture-card__bg img {
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
  .venture-card__overlay {
    background: linear-gradient(188.14deg, rgba(0, 0, 0, 0) 34.84%, rgba(0, 0, 0, 0.72) 86.69%);
  }
  .venture-card__content {
    padding: 56px 40px;
  }
  .venture-card__tag {
    font-size: 16px;
    letter-spacing: -0.88px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .venture-card__name {
    font-size: 32px;
    letter-spacing: -1.5px;
    -webkit-transition: font-size 0.35s ease, letter-spacing 0.35s ease, opacity 0.35s ease;
    transition: font-size 0.35s ease, letter-spacing 0.35s ease, opacity 0.35s ease;
  }
  .venture-card__bottom {
    gap: 16px;
  }
  .venture-card__desc {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.09px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease, opacity 0.4s ease;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }
  .venture-card:hover .venture-card__bg img, .venture-card.is-expanded .venture-card__bg img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  .venture-card:hover .venture-card__overlay, .venture-card.is-expanded .venture-card__overlay {
    background: rgba(103, 58, 210, 0.92);
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
  .venture-card:hover .venture-card__tag, .venture-card.is-expanded .venture-card__tag {
    opacity: 0;
  }
  .venture-card:hover .venture-card__name, .venture-card.is-expanded .venture-card__name {
    position: absolute;
    top: 56px;
    left: 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 1;
  }
  .venture-card:hover .venture-card__desc, .venture-card.is-expanded .venture-card__desc {
    max-height: 340px;
    opacity: 1;
  }
}
@media (min-width: 1400px) {
  .venture-card:hover .venture-card__desc, .venture-card.is-expanded .venture-card__desc {
    max-height: 430px;
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .venture-card .venture-card__desc {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .venture-card .venture-card__desc {
    font-size: 13px;
  }
  .venture-card .venture-card__name {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1440px) {
  .venture-card {
    height: 39.7222222222vw;
  }
  .venture-card__name {
    font-size: 2.2222222222vw;
  }
  .venture-card__desc {
    font-size: 0.9722222222vw;
  }
  .venture-card__tag {
    font-size: 1.1111111111vw;
  }
  .venture-card__content {
    padding: 3.8888888889vw 2.7777777778vw;
  }
  .venture-card:hover .venture-card__name, .venture-card.is-expanded .venture-card__name {
    top: 3.8888888889vw;
    left: 2.7777777778vw;
    font-size: 0.9722222222vw;
    letter-spacing: 0.1041666667vw;
  }
}

.ecosystem-nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ecosystem-nav-btn svg {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ecosystem-nav-btn--prev, .ecosystem-nav-btn--next {
  background: #000;
  color: #fff;
  border-color: transparent;
}
.ecosystem-nav-btn--prev svg path, .ecosystem-nav-btn--next svg path {
  stroke: #fff;
}
.ecosystem-nav-btn--prev:hover, .ecosystem-nav-btn--next:hover {
  background: #000;
  color: #fff;
}
.ecosystem-nav-btn--prev:hover svg path, .ecosystem-nav-btn--next:hover svg path {
  stroke: #fff;
}
.ecosystem-nav-btn--prev:disabled, .ecosystem-nav-btn--next:disabled {
  background: rgba(0, 0, 0, 0.1019607843);
  color: #B2B2B2;
  cursor: default;
}
.ecosystem-nav-btn--prev:disabled svg path, .ecosystem-nav-btn--next:disabled svg path {
  stroke: #B2B2B2;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .ecosystem-nav-btn {
    width: 3.8888888889vw;
    height: 3.8888888889vw;
  }
  .ecosystem-nav-btn svg {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
}
@media (max-width: 576px) {
  .ecosystem-nav-btn {
    width: 48px;
    height: 48px;
  }
  .ecosystem-nav-btn svg {
    width: 16px;
    height: 16px;
  }
}

.sgrf-banner {
  background: #000;
  overflow: hidden;
}
.sgrf-banner__container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 104px 40px;
}
.sgrf-banner__inner {
  position: relative;
  padding: 56px 80px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.sgrf-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sgrf-banner__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sgrf-banner__body {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  width: 100%;
}
.sgrf-banner__logo {
  height: 75px;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sgrf-banner__logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sgrf-banner__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.sgrf-banner__title {
  font-family: "Sora", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -2.8px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 320px;
  max-width: 900px;
}
.sgrf-banner__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  border-radius: 99px;
  padding: 16px 24px 16px 28px;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.35px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.sgrf-banner__btn:hover {
  opacity: 0.88;
  color: #000;
}
.sgrf-banner__btn-icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sgrf-banner__btn-icon svg,
.sgrf-banner__btn-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .sgrf-banner__title {
    font-size: 3.8888888889vw;
    letter-spacing: -0.1944444444vw;
  }
  .sgrf-banner__container {
    padding: 7.2222222222vw 2.7777777778vw;
  }
  .sgrf-banner__inner {
    padding: 3.8888888889vw 1.6666666667vw;
  }
  .sgrf-banner__logo {
    height: 5.2083333333vw;
  }
}
@media (max-width: 991px) {
  .sgrf-banner__container {
    padding: 60px 24px;
  }
  .sgrf-banner__inner {
    padding: 42px 24px;
    min-height: auto;
    border-radius: 12px;
  }
  .sgrf-banner__title {
    font-size: 40px;
    letter-spacing: -1.5px;
    min-width: auto;
    width: 100%;
  }
  .sgrf-banner__logo {
    height: 56px;
  }
  .sgrf-banner__text-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .sgrf-banner__container {
    padding: 40px 16px;
  }
  .sgrf-banner__title {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .sgrf-banner__logo {
    height: 44px;
  }
}

.about-hero {
  position: relative;
  min-height: 500px;
  padding-top: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #000 url("../../images/place-holders/about-hero-bg.png") center center/cover no-repeat;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 10, 0.18)), to(rgba(8, 8, 10, 0.28)));
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.28) 100%);
}
.about-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 40px 104px;
}
.about-hero__title {
  font-family: "Sora", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .about-hero {
    min-height: 31.25vw;
  }
  .about-hero__container {
    padding: 0 2.7777777778vw 7.2222222222vw;
  }
  .about-hero__title {
    font-size: 5vw;
    letter-spacing: -0.25vw;
  }
}
@media (max-width: 991px) {
  .about-hero {
    min-height: 300px;
    padding-top: 70px;
  }
  .about-hero__container {
    padding: 0 24px 24px;
  }
  .about-hero__title {
    font-size: 50px;
    letter-spacing: -2px;
  }
}
@media (max-width: 576px) {
  .about-hero {
    min-height: 240px;
  }
  .about-hero__title {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
}

.leadership-section--light {
  background: #fff;
  color: #000;
}
.leadership-section--dark {
  background: #000;
  color: #fff;
}
.leadership-section__container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 160px 40px;
}
.leadership-section__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
.leadership-section__intro--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
.leadership-section__title {
  font-family: "Sora", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  margin: 0;
}
.leadership-section--light .leadership-section__title {
  color: #000;
}
.leadership-section--dark .leadership-section__title {
  color: #fff;
}
.leadership-section__title--left {
  text-align: left;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .leadership-section__container {
    padding: 11.1111111111vw 2.7777777778vw;
  }
  .leadership-section__title {
    font-size: 5vw;
    letter-spacing: -0.25vw;
  }
  .leadership-section__intro {
    gap: 3.3333333333vw;
  }
  .leadership-section__intro--center {
    margin-bottom: 5.5555555556vw;
  }
}
@media (max-width: 991px) {
  .leadership-section__container {
    padding: 80px 24px;
  }
  .leadership-section__title {
    font-size: 46px;
    letter-spacing: -1.8px;
  }
  .leadership-section__intro {
    gap: 28px;
  }
  .leadership-section__intro--center {
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .leadership-section__container {
    padding: 56px 20px;
  }
  .leadership-section__title {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .leadership-section__intro {
    gap: 20px;
  }
  .leadership-section__intro--center {
    margin-bottom: 32px;
  }
}

.leadership-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.leadership-card__image-wrap {
  width: 100%;
  aspect-ratio: 248/300;
  overflow: hidden;
}
.leadership-card__image-wrap--tall {
  aspect-ratio: 370/447;
}
.leadership-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.leadership-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.leadership-card__name {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0;
}
.leadership-card__role {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.09px;
  margin: 0;
}
.leadership-card__bio-btn {
  border: 0;
  background: transparent;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1px;
  text-decoration: none;
}
.leadership-card__bio-btn:hover {
  opacity: 0.75;
}
.leadership-card__bio-icon {
  width: 20px;
  height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.leadership-card__bio-icon svg {
  width: 100%;
  height: 100%;
}
.leadership-card--dark-text .leadership-card__name,
.leadership-card--dark-text .leadership-card__role,
.leadership-card--dark-text .leadership-card__bio-btn {
  color: #000;
}
.leadership-card--light-text .leadership-card__name,
.leadership-card--light-text .leadership-card__role,
.leadership-card--light-text .leadership-card__bio-btn {
  color: #fff;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .leadership-card {
    gap: 1.8055555556vw;
  }
  .leadership-card__name {
    font-size: 1.8055555556vw;
    letter-spacing: -0.1041666667vw;
  }
  .leadership-card__content {
    gap: 1.25vw;
  }
  .leadership-card__role {
    font-size: 1.25vw;
    letter-spacing: 0.00625vw;
  }
  .leadership-card__bio-btn {
    font-size: 1.3888888889vw;
  }
}
@media (max-width: 991px) {
  .leadership-card {
    gap: 20px;
  }
  .leadership-card__name {
    font-size: 22px;
    letter-spacing: -0.8px;
  }
  .leadership-card__content {
    gap: 14px;
  }
  .leadership-card__role {
    font-size: 16px;
  }
  .leadership-card__bio-btn {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .leadership-card__name {
    font-size: 20px;
  }
  .leadership-card__role {
    font-size: 15px;
  }
  .leadership-card__bio-btn {
    font-size: 16px;
  }
}

.leadership-modal .modal {
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 0;
  --bs-modal-bg: #ffffff;
}
.leadership-modal .modal-dialog {
  max-width: 472px;
  margin: 16px auto;
}
.leadership-modal .modal-content {
  border: 0;
  border-radius: 0;
}
.leadership-modal__content {
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100vh - 32px);
}
.leadership-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.leadership-modal__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  margin-top: 40px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
}
.leadership-modal__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.leadership-modal__name {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #000;
  margin: 0;
}
.leadership-modal__role {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.09px;
  color: #000;
  margin: 0;
}
.leadership-modal__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 1.667px;
  background: #f5f5f5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.leadership-modal__close svg {
  width: 20px;
  height: 20px;
}
.leadership-modal__linkedin {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  color: #0a66c2;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.leadership-modal__linkedin svg {
  width: 40px;
  height: 40px;
}
.leadership-modal__bio {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.09px;
  color: #000;
  margin: 0;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .leadership-modal__content {
    padding: 3.3333333333vw;
  }
  .leadership-modal__name {
    font-size: 1.8055555556vw;
    letter-spacing: -0.1041666667vw;
  }
  .leadership-modal__role {
    font-size: 1.25vw;
  }
  .leadership-modal__bio {
    font-size: 1.25vw;
  }
  .leadership-modal__person {
    gap: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .leadership-modal .modal-dialog {
    max-width: calc(100% - 32px);
    margin: 16px auto;
  }
  .leadership-modal__content {
    padding: 28px 24px;
    gap: 24px;
  }
  .leadership-modal__name {
    font-size: 24px;
    letter-spacing: -0.8px;
  }
  .leadership-modal__role {
    font-size: 17px;
  }
  .leadership-modal__bio {
    font-size: 17px;
    line-height: 1.6;
  }
  .leadership-modal__person {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .leadership-modal .modal-dialog {
    max-width: calc(100% - 20px);
    margin: 10px auto;
  }
  .leadership-modal__content {
    padding: 20px 16px 24px;
    max-height: calc(100vh - 20px);
  }
  .leadership-modal__head {
    gap: 10px;
    margin-bottom: 16px;
  }
  .leadership-modal__body {
    margin-top: 24px;
  }
  .leadership-modal__name {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.6px;
  }
  .leadership-modal__role {
    font-size: 16px;
  }
  .leadership-modal__bio {
    font-size: 15px;
  }
  .leadership-modal__person {
    gap: 10px;
  }
  .leadership-modal__linkedin {
    width: 38px;
    height: 38px;
  }
  .leadership-modal__linkedin svg {
    width: 38px;
    height: 38px;
  }
}

.contact-section {
  background: #fff;
  padding-top: 84px;
}
.contact-section__container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 64px 40px 140px;
}
.contact-section__title {
  font-family: "Sora", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 56px;
}

.contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact-info__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  line-height: 1;
  overflow: hidden;
}
.contact-info__icon svg {
  width: 26px;
  height: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-info__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.contact-info__country {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}
.contact-info__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.contact-info__address {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: #000;
  font-style: normal;
  margin: 0;
}
.contact-info__phone {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: #000;
  margin: 0;
}
.contact-info__item--fax {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-info__item--fax .contact-info__body {
  padding-top: 0;
  gap: 0;
}
.contact-info__item--fax .contact-info__phone {
  font-size: 18px;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.contact-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #000;
  white-space: nowrap;
  margin: 0;
}
.contact-form__required {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.336px;
  color: #ff1f1f;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.contact-form__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__input:focus {
  border-bottom: 1.5px solid #000;
}
.contact-form__phone-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.contact-form__phone-wrapper:focus-within {
  border-bottom: 1.5px solid #000;
}
.contact-form__phone-prefix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.contact-form__phone-flag {
  font-size: 18px;
  line-height: 1;
  width: 22px;
  display: inline-block;
  text-align: center;
}
.contact-form__phone-code {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #000;
}
.contact-form__phone-chevron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  color: #000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__phone-chevron svg {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.contact-form__phone-dropdown-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #000;
  outline: none;
}
.contact-form__phone-dropdown-btn::after {
  display: none;
}
.contact-form__phone-dropdown-btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
  border-radius: 3px;
}
.contact-form__phone-dropdown-btn[aria-expanded=true] .contact-form__phone-chevron svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contact-form__country-dropdown {
  min-width: 230px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin-top: 6px;
}
.contact-form__country-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  background: transparent;
  border: none;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-align: left;
  cursor: pointer;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
}
.contact-form__country-option:hover, .contact-form__country-option:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}
.contact-form__country-option.active {
  background: rgba(0, 0, 0, 0.06);
  font-weight: 600;
}
.contact-form__country-flag {
  font-size: 18px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.contact-form__country-name {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
}
.contact-form__country-code-val {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.contact-form__phone-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__phone-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  border: none;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  outline: none;
}
.contact-form__phone-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__phone-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__phone-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__phone-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__phone-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  outline: none;
  resize: none;
  min-height: 60px;
  border-radius: 0;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  height: 60px;
}
.contact-form__textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.contact-form__textarea:focus {
  border-bottom: 1.5px solid #000;
}
.contact-form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 48px;
}
.contact-form__captcha {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__captcha-widget {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 14px 16px;
  min-width: 286px;
}
.contact-form__captcha-widget label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.contact-form__captcha-widget label input[type=checkbox] {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  accent-color: #4a90d9;
}
.contact-form__captcha-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.contact-form__captcha-brand-logo {
  font-size: 10px;
  font-weight: 700;
  color: #4a90d9;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
}
.contact-form__captcha-brand-text {
  font-size: 9px;
  color: rgba(0, 0, 0, 0.45);
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
}
.contact-form__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  background: #91298c;
  border: none;
  border-radius: 99px;
  padding: 16px 24px 16px 28px;
  min-width: 163px;
  height: 52px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__submit:hover {
  background: rgb(113.1935483871, 32.0064516129, 109.2903225806);
}
.contact-form__submit-text {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.35px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.contact-form__submit-icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form__submit-icon svg {
  width: 100%;
  height: 100%;
}
.contact-form__note {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08px;
  color: #05201f;
  margin: 0;
}

@media (min-width: 992px) and (max-width: 1440px) {
  .contact-section {
    padding-top: 84px;
  }
  .contact-section__container {
    padding: 4.4444444444vw 2.7777777778vw 9.7222222222vw;
  }
  .contact-section__title {
    font-size: 5vw;
    letter-spacing: -0.25vw;
    margin-bottom: 3.8888888889vw;
  }
  .contact-info {
    gap: 3.3333333333vw;
  }
  .contact-info__body {
    gap: 1.6666666667vw;
  }
  .contact-info__item {
    gap: 1.6666666667vw;
  }
  .contact-info__country {
    font-size: 1.6666666667vw;
  }
  .contact-info__details {
    gap: 0.5555555556vw;
  }
  .contact-info__address, .contact-info__phone {
    font-size: 1.25vw;
  }
  .contact-info__item--fax .contact-info__phone {
    font-size: 1.25vw;
  }
  .contact-form {
    gap: 3.3333333333vw;
  }
  .contact-form__fields {
    gap: 3.3333333333vw;
  }
  .contact-form__label {
    font-size: 1.25vw;
  }
  .contact-form__input, .contact-form__textarea, .contact-form__phone-input {
    font-size: 1.25vw;
    padding-top: 1.1111111111vw;
    padding-bottom: 1.1111111111vw;
  }
  .contact-form__phone-code {
    font-size: 1.25vw;
  }
  .contact-form__phone-wrapper {
    padding: 1.1111111111vw 0;
  }
}
@media (max-width: 991px) {
  .contact-section {
    padding-top: 70px;
  }
  .contact-section__container {
    padding: 48px 24px 80px;
  }
  .contact-section__title {
    font-size: 52px;
    letter-spacing: -2.6px;
    margin-bottom: 40px;
  }
  .contact-info {
    gap: 40px;
  }
  .contact-info__body {
    gap: 18px;
  }
  .contact-info__country {
    font-size: 20px;
  }
  .contact-info__address, .contact-info__phone {
    font-size: 16px;
  }
  .contact-info__item--fax .contact-info__phone {
    font-size: 16px;
  }
  .contact-form {
    gap: 36px;
  }
  .contact-form__label {
    font-size: 16px;
  }
  .contact-form__input, .contact-form__textarea, .contact-form__phone-input, .contact-form__phone-code {
    font-size: 16px;
  }
  .contact-form__submit {
    min-width: 150px;
  }
}
@media (max-width: 576px) {
  .contact-section__container {
    padding: 36px 16px 64px;
  }
  .contact-section__title {
    font-size: 36px;
    letter-spacing: -1.8px;
    margin-bottom: 32px;
  }
  .contact-info {
    gap: 32px;
  }
  .contact-info__country {
    font-size: 18px;
  }
  .contact-info__address, .contact-info__phone {
    font-size: 14px !important;
  }
  .contact-info__item--fax .contact-info__phone {
    font-size: 14px !important;
  }
  .contact-info__details {
    gap: 8px;
  }
  .contact-form {
    gap: 28px;
  }
  .contact-form__fields {
    gap: 28px;
  }
  .contact-form__label {
    font-size: 15px;
  }
  .contact-form__input, .contact-form__textarea, .contact-form__phone-input, .contact-form__phone-code {
    font-size: 15px;
  }
  .contact-form__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .contact-form__captcha-widget {
    min-width: unset;
    width: 100%;
  }
  .contact-form__submit {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-form__note {
    font-size: 14px;
  }
}
.contact-form__field-error {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04px;
  color: #d9000d;
  margin-top: 6px;
  min-height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.contact-form__field-error:not(:empty) {
  opacity: 1;
}
.contact-form__input--invalid {
  border-bottom-color: #d9000d !important;
}
.contact-form__phone-wrapper--invalid {
  border-bottom-color: #d9000d !important;
}
.contact-form__textarea--invalid {
  border-bottom-color: #d9000d !important;
}
.contact-form__submit--loading {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}

.contact-toaster {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  pointer-events: none;
}

.contact-toast {
  background: #fff;
  -webkit-box-shadow: 0 0 26px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 26px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  min-width: 300px;
  max-width: 450px;
  width: 100%;
  padding: 24px;
  pointer-events: all;
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.contact-toast.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.contact-toast.is-hiding {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.contact-toast__icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-toast__icon svg {
  width: 100%;
  height: 100%;
}
.contact-toast__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.contact-toast__title {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.96px;
  color: #000;
  margin: 0;
}
.contact-toast__message {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08px;
  color: #000;
  margin: 0;
}
.contact-toast__close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.35);
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.contact-toast__close:hover {
  color: #000;
}

@media (max-width: 576px) {
  .contact-toaster {
    bottom: 16px;
    right: 16px;
    left: 16px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .contact-toast {
    max-width: none;
  }
}