* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.page-holder {
  overflow: hidden;
}

.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.position-relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.btn {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  background-color: #7A66FF;
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #170F49;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #170F49;
}
@media (min-width: 991px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
}
@media (min-width: 991px) {
  h2 {
    font-size: 48px;
    line-height: 105%;
  }
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 105%;
}
@media (min-width: 991px) {
  h3 {
    font-size: 24px;
  }
}

p {
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  color: #514F6E;
  margin: 0;
}

.form-block {
  margin-bottom: 24px;
}
.form-block input {
  height: 50px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(23, 15, 73, 0.08);
  width: 100%;
  padding: 20px;
  font-size: 15px;
  line-height: 150%;
  color: #170F49;
}

.form-btn {
  position: relative;
}
.form-btn input {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  background-color: #7A66FF;
  color: #fff;
  width: 100%;
}
.form-btn input:hover {
  opacity: 0.8;
}
.form-btn .wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.header {
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-radius: 210px;
  position: relative;
  z-index: 999;
}
.header__logo a {
  display: flex;
}
.header__nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 86px;
  right: 0;
  width: 100%;
  z-index: 10;
  gap: 20px;
  background: #7A66FF;
  padding: 20px;
}
@media (min-width: 991px) {
  .header__nav {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    top: 0;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    width: fit-content;
  }
}
.header__nav.open {
  display: flex;
}
.header__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 991px) {
  .header__menu {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 32px;
  }
}
.header__menu > li {
  position: relative;
}
.header__menu > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px;
  padding-left: 0;
  font-weight: 500;
}
@media (min-width: 991px) {
  .header__menu > li > a {
    color: #170F49;
    padding: 0;
  }
}
.header__menu > li > ul.sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
}
@media (min-width: 991px) {
  .header__menu > li > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 0;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    z-index: 100;
    padding: 20px 0 0 16px;
  }
}
.header__menu > li > ul.sub-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 10px;
}
@media (min-width: 991px) {
  .header__menu > li > ul.sub-menu li a {
    color: #170F49;
    padding: 10px 25px;
    transition: background-color 0.2s;
  }
  .header__menu > li > ul.sub-menu li a:hover {
    color: #7771F5;
  }
}
@media (min-width: 991px) {
  .header__menu > li:hover > ul.sub-menu {
    display: flex;
    padding: 10px 0;
  }
}
@media (min-width: 991px) {
  .header__menu > li.menu-item-has-children > a {
    padding-right: 24px;
    position: relative;
  }
  .header__menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
.header__menu > li.menu-item-has-children.open > ul.sub-menu {
  display: flex;
}
.header__menu > li.menu-item-has-children.open .submenu-toggle {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.header__menu .submenu-toggle {
  transition: transform 0.3s ease;
}
.header__cta {
  display: none;
  align-items: center;
  gap: 20px;
}
.header__cta a {
  text-decoration: none;
  padding: 16px;
}
@media (min-width: 991px) {
  .header__cta {
    display: flex;
  }
}
.header__hamburger {
  display: block;
  cursor: pointer;
}
@media (min-width: 991px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-icon, .header__hamburger-close {
  display: block;
}
.header__hamburger-close {
  display: none;
}

.page-id-169 .header,
.page-id-183 .header {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
}
@media (min-width: 991px) {
  .page-id-169 .header__wrapper,
  .page-id-183 .header__wrapper {
    background: #fff;
    padding: 14px 32px;
  }
}

.footer {
  background: #170F49;
  padding: 60px 20px 24px 20px;
}
@media (min-width: 480px) {
  .footer {
    padding: 70px 20px 32px 20px;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
  margin-bottom: 30px;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 480px) {
  .footer__top {
    flex-direction: row;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 480px) {
  .footer__bottom {
    flex-direction: row;
  }
}
.footer__pages {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}
@media (min-width: 480px) {
  .footer__pages {
    flex-direction: row;
  }
}
.footer__pages-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social-link {
  color: #fff;
  text-decoration: none;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .footer__row {
    flex-direction: column;
    gap: 64px;
  }
}
.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  opacity: 17%;
}

.modal {
  display: none;
}

.hxg {
  padding: 80px 20px;
  background-color: #F9F9FD;
}
@media (max-width: 990px) {
  .hxg {
    padding: 60px 20px;
  }
}
.hxg__tf {
  max-width: 920px;
  margin: 0 auto 48px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hxg__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
@media (max-width: 990px) {
  .hxg__row {
    grid-template-columns: 1fr;
    gap: 4px;
    max-width: 564px;
    margin: 0 auto;
  }
}
.hxg__col {
  display: grid;
  grid-auto-rows: min-content;
  gap: 90px;
}
@media (max-width: 990px) {
  .hxg__col {
    gap: 24px;
  }
}
@media (max-width: 479px) {
  .hxg__col {
    padding: 0 10px;
    gap: 18px;
  }
}
.hxg__center img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 990px) {
  .hxg__center img {
    margin: 0 auto;
  }
}
@media (max-width: 990px) {
  .hxg__center {
    text-align: center;
  }
}
.hxg__img--mobile {
  display: none;
}
@media (max-width: 399px) {
  .hxg__img--mobile {
    display: block;
  }
}
.hxg__img--desktop {
  display: block;
}
@media (max-width: 399px) {
  .hxg__img--desktop {
    display: none;
  }
}
.hxg__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(23, 15, 73, 0.06);
  padding: 16px;
  max-width: 288px;
  position: relative;
}
@media (max-width: 479px) {
  .hxg__card {
    padding: 12px;
  }
}
.hxg__card p {
  font-size: 16px;
  color: #514F6E;
  line-height: 24px;
  letter-spacing: -0.5px;
  margin: 0;
}
@media (max-width: 990px) {
  .hxg__card p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 990px) {
  .hxg__card:nth-child(2) {
    margin-left: auto;
    text-align: right;
  }
}
.hxg__col--left .hxg__card::before, .hxg__col--right .hxg__card::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media (min-width: 1240px) {
  .hxg__col--left .hxg__card::before, .hxg__col--right .hxg__card::before {
    width: 217px;
    height: 30px;
  }
}
@media (max-width: 1239px) and (min-width: 991px) {
  .hxg__col--left .hxg__card::before, .hxg__col--right .hxg__card::before {
    display: none;
  }
}
@media (max-width: 990px) {
  .hxg__col--left .hxg__card::before, .hxg__col--right .hxg__card::before {
    width: 23px;
  }
}
@media (min-width: 1240px) {
  .hxg__col--left .hxg__card:nth-child(1)::before {
    background-image: url("../../img/line-left-top.svg");
    top: -23px;
    right: -55px;
  }
}
@media (max-width: 990px) {
  .hxg__col--left .hxg__card:nth-child(1)::before {
    background-image: url("../../img/mobile-line-top-left.svg");
    height: 245px;
    top: 99%;
    right: auto;
    left: 20px;
  }
}
@media (max-width: 479px) {
  .hxg__col--left .hxg__card:nth-child(1)::before {
    top: 45%;
    left: -15px;
  }
}
@media (min-width: 1240px) {
  .hxg__col--left .hxg__card:nth-child(2)::before {
    background-image: url("../../img/line-left-bottom.svg");
    bottom: -23px;
    right: -55px;
  }
}
@media (max-width: 990px) {
  .hxg__col--left .hxg__card:nth-child(2)::before {
    background-image: url("../../img/mobile-line-top-right.svg");
    height: 140px;
    top: 99%;
    right: 10px;
  }
}
@media (max-width: 479px) {
  .hxg__col--left .hxg__card:nth-child(2)::before {
    right: -15px;
    top: 45%;
  }
}
@media (min-width: 1240px) {
  .hxg__col--right .hxg__card:nth-child(1)::before {
    background-image: url("../../img/line-right-top.svg");
    top: -23px;
    left: -70px;
  }
}
@media (max-width: 990px) {
  .hxg__col--right .hxg__card:nth-child(1)::before {
    background-image: url("../../img/mobile-line-bottom-left.svg");
    height: 140px;
    bottom: 76px;
    left: 10px;
  }
}
@media (max-width: 479px) {
  .hxg__col--right .hxg__card:nth-child(1)::before {
    bottom: 20%;
    left: -15px;
  }
}
@media (min-width: 1240px) {
  .hxg__col--right .hxg__card:nth-child(2)::before {
    background-image: url("../../img/line-right-bottom.svg");
    bottom: -23px;
    left: -70px;
  }
}
@media (max-width: 990px) {
  .hxg__col--right .hxg__card:nth-child(2)::before {
    background-image: url("../../img/mobile-line-bottom-right.svg");
    height: 245px;
    bottom: 65px;
    right: 20px;
  }
}
@media (max-width: 479px) {
  .hxg__col--right .hxg__card:nth-child(2)::before {
    bottom: 11%;
    right: -15px;
  }
}

.logos-full {
  padding: 40px 0;
}
.logos-full .marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos-full .marquee__item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
}
.logos-full .marquee::before, .logos-full .marquee::after {
  display: none;
}
.logos-full .logos__heading {
  text-align: center;
  margin: 0 auto 24px auto;
  padding: 0 20px;
  max-width: 900px;
  font-size: 24px;
  color: #fff;
  opacity: 64%;
  font-weight: 600;
}

.cta {
  padding: 22px 20px;
  text-align: center;
  background-color: #F9F9FD;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
}
@media (max-width: 990px) {
  .cta::before, .cta::after {
    display: none;
  }
}
.cta::before {
  left: 0;
  background-image: url("../../img/cta-left.svg");
  background-position: left center;
}
.cta::after {
  right: 0;
  background-image: url("../../img/banner-right-hexagon.svg");
  background-position: right 0px;
}
.cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta__tf h2 {
  font-size: 84px;
  line-height: 105%;
  font-weight: 600;
  margin: 0 0 40px 0;
}
@media (max-width: 990px) {
  .cta__tf h2 {
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 24px 0;
  }
}
@media (max-width: 1024px) {
  .cta__tf h2 br {
    display: none;
  }
}
.cta__tf p {
  font-size: 15px;
}
@media (max-width: 1024px) {
  .cta__tf p br {
    display: none;
  }
}
.cta__actions {
  margin-top: 24px;
}
@media (max-width: 990px) {
  .cta__actions {
    margin-top: 40px;
  }
}

.tsm {
  padding: 60px 20px;
  background-color: #F1F0FB;
}
.tsm__tf {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}
.tsm__wrap {
  position: relative;
}
.tsm__review {
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
  margin: 0 0 80px 0;
  color: #170F49;
  text-align: center;
}
@media (max-width: 990px) {
  .tsm__review {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
  }
}
.tsm__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 990px) {
  .tsm__bottom {
    flex-direction: column;
    justify-content: center;
  }
}
.tsm__author {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 990px) {
  .tsm__author {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 990px) {
  .tsm__author-meta {
    text-align: center;
  }
}
.tsm__author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.tsm__author-name {
  font-weight: 700;
  color: #170F49;
  margin-bottom: 0;
  font-size: 20px;
}
.tsm__author-pos {
  color: #7A65FD;
  font-size: 16px;
  font-weight: 500;
}
.tsm__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 990px) {
  .tsm__controls {
    justify-content: center;
    position: static;
    margin-top: 60px;
  }
}
.tsm__fraction {
  min-width: 64px;
  width: fit-content;
  text-align: center;
  font-weight: 600;
  color: #170F49;
}
.tsm__prev, .tsm__next {
  width: 88px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #170F49;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.tsm__arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #170F49;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.tsm__arrow--right {
  mask-image: url("../../img/arrow-right.svg");
  -webkit-mask-image: url("../../img/arrow-right.svg");
}
.tsm__arrow--left {
  mask-image: url("../../img/arrow-left.svg");
  -webkit-mask-image: url("../../img/arrow-left.svg");
}
.tsm__prev:hover, .tsm__next:hover {
  background: #7A66FF;
  border-color: #7A66FF;
}
.tsm__prev:hover .tsm__arrow, .tsm__next:hover .tsm__arrow {
  background-color: #fff;
}

.contact {
  padding: 80px 20px;
}
@media (max-width: 990px) {
  .contact {
    padding: 60px 20px;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (max-width: 990px) {
  .contact__grid {
    gap: 24px;
  }
}
@media (min-width: 991px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.contact__badge {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #514F6E;
  padding: 12px 16px;
  border-radius: 500px;
  border: 1px solid rgba(23, 15, 73, 0.08);
  max-width: fit-content;
  background: #F4F3FC;
  margin-bottom: 18px;
  line-height: 135%;
}
.contact__tf {
  margin-bottom: 40px;
}
@media (max-width: 990px) {
  .contact__tf h2 {
    margin-bottom: 24px;
  }
}
.contact__form {
  background: #F9F8FD;
  border-radius: 36px;
  padding: 40px;
}
.contact__form .contact__form-title {
  font-size: 32px;
  margin: 0 0 20px 0;
  color: #170F49;
  font-weight: 600;
}
@media (max-width: 990px) {
  .contact__form {
    border-radius: 20px;
    padding: 32px 16px;
  }
}

.hero {
  padding: 160px 20px 0 20px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 705px;
  height: 100%;
  max-height: 800px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero::before {
  left: 0;
  background-image: url("../../img/hero-left.svg");
  background-position: left;
}
.hero::after {
  right: 0;
  background-image: url("../../img/hero-right.svg");
  background-position: right;
}
.hero__badge {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #514F6E;
  padding: 12px 16px;
  border-radius: 500px;
  border: 1px solid rgba(23, 15, 73, 0.08);
  max-width: fit-content;
  margin: 0 auto 32px auto;
  background-color: #F4F3FC;
}
.hero__badge span {
  color: #4A3AFF;
}
.hero__tf {
  text-align: center;
}
@media (max-width: 1024px) {
  .hero__tf br {
    display: none;
  }
}
.hero__tf h1 {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .hero__tf p br {
    display: none;
  }
}
.hero__buttons {
  margin-top: 24px;
  text-align: center;
  display: fl;
}
.hero__buttons .btn {
  width: 100%;
  margin-bottom: 16px;
}
.hero__buttons .btn:nth-last-child(1) {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .hero__buttons .btn {
    width: initial;
    margin-bottom: 0;
  }
}
.hero__content {
  margin-bottom: 92px;
}
@media (max-width: 1024px) {
  .hero__content {
    margin-bottom: 40px;
  }
}
.hero__video {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.hero__video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.hero__video-thumbnail:hover {
  transform: scale(1.02);
}
.hero__video-thumbnail:hover .hero__video-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.hero__video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
  pointer-events: none;
}
@media (min-width: 991px) {
  .hero__video-play {
    width: 160px;
    height: 160px;
  }
}
.hero__video-play img {
  width: 100%;
  height: 100%;
}

.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-lightbox.active {
  display: block;
  opacity: 1;
}
.video-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.video-lightbox__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  z-index: 10000;
}
@media (min-width: 991px) {
  .video-lightbox__content {
    width: 80%;
  }
}
.video-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: transform 0.2s ease;
  z-index: 10001;
}
.video-lightbox__close:hover {
  transform: scale(1.1);
}
@media (min-width: 991px) {
  .video-lightbox__close {
    top: -50px;
    right: -50px;
    font-size: 50px;
    width: 50px;
    height: 50px;
  }
}
.video-lightbox__container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-lightbox__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marquee {
  --gap: 40px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  /* Fades at the edges */
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--marquee-fade-color, #fff), rgba(255, 255, 255, 0));
  width: var(--marquee-fade-width, 60px);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--marquee-fade-color, #fff), rgba(255, 255, 255, 0));
  width: var(--marquee-fade-width, 60px);
}
.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  margin: 0;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee .marquee__content {
    animation-play-state: paused !important;
  }
}

.enable-animation .marquee__content {
  animation: scroll 40s linear infinite;
}

.logos {
  padding: 40px 20px;
}
.logos .marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos .marquee__item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
}
.logos .logos-grid {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 40px;
  list-style: none;
  padding: 0;
  justify-items: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.logos .logos-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos .logos-grid__item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  max-width: 100%;
}

.cnt {
  padding: 60px 20px;
}
@media (min-width: 991px) {
  .cnt {
    padding: 120px 20px;
  }
}
.cnt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (max-width: 990px) {
  .cnt__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 991px) {
  .cnt__grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
  }
}
.cnt__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
@media (max-width: 990px) {
  .cnt__image {
    order: 2;
  }
}
.cnt__content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .cnt__content {
    order: 1;
  }
}
.cnt__tf {
  margin-bottom: 40px;
}
.cnt__tf h2 {
  font-size: 40px;
}
@media (max-width: 990px) {
  .cnt__tf h2 {
    font-size: 32px;
  }
}
.cnt__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cnt__list-item {
  position: relative;
  padding-left: 32px;
}
.cnt__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/list-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cnt__subheading {
  margin: 0;
  color: rgba(13, 40, 98, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

.process {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 990px) {
  .process {
    padding: 60px 0 0 0;
  }
}
.process__wrapper {
  padding: 0 20px;
}
.process__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 991px) {
  .process__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* left text, right button */
  }
}
.process__tf {
  max-width: 720px;
}
.process__btn {
  margin-left: auto;
}
@media (max-width: 990px) {
  .process__btn {
    margin: 0;
  }
}
.process__image {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 640px;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1279px) {
  .process__image {
    max-width: 500px;
  }
}
.process__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 990px) {
  .process__image {
    max-width: 100%;
    position: relative;
  }
}
.process__list {
  position: relative;
  max-width: 48%;
  margin-left: auto;
  overflow: hidden;
}
.process__list::before {
  content: "";
  position: absolute;
  left: 10.5px;
  top: -100px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(122, 102, 255, 0) 0%, #7A66FF 100%);
}
@media (max-width: 990px) {
  .process__list {
    max-width: 100%;
    margin-left: 0;
  }
}
.process__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
}
.process__marker {
  position: relative;
}
.process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding-top: 9px;
}
.process__content {
  display: flex;
  flex-direction: column;
}
.process__heading {
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #170F49;
  font-weight: 700;
}
@media (max-width: 990px) {
  .process__heading {
    font-size: 18px;
    margin: 0 0 16px 0;
  }
}
.process__subheading {
  margin: 0;
  color: #514F6E;
  font-size: 15px;
  line-height: 150%;
}

.why {
  padding: 80px 20px;
  background-color: #F1F0FB;
}
@media (max-width: 990px) {
  .why {
    padding: 60px 20px;
  }
}
.why__tf {
  max-width: 900px;
  margin: 0 auto 32px auto;
  text-align: center;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 991px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why__card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(23, 15, 73, 0.06);
  padding: 48px 32px 0 32px;
  overflow: hidden;
}
@media (max-width: 990px) {
  .why__card {
    padding: 16px 16px 0 16px;
  }
}
.why__card:nth-child(2) .why__image {
  right: -30px;
}
@media (max-width: 990px) {
  .why__card:nth-child(2) .why__image {
    right: 0;
  }
}
.why__card:nth-child(3) .why__image {
  right: -40px;
  bottom: -40px;
}
@media (max-width: 990px) {
  .why__card:nth-child(3) .why__image {
    right: 0;
    bottom: -10px;
  }
}
.why__card:nth-child(4) .why__image {
  right: -50px;
}
@media (max-width: 990px) {
  .why__card:nth-child(4) .why__image {
    right: 0;
  }
}
.why__content {
  margin-bottom: 4px;
  z-index: 2;
  position: relative;
  max-width: 290px;
}
@media (max-width: 990px) {
  .why__content {
    margin-bottom: 80px;
  }
}
.why__content h3 {
  font-size: 36px;
  margin: 0 0 16px 0;
  color: #170F49;
  font-weight: 600;
}
@media (max-width: 990px) {
  .why__content h3 {
    font-size: 18px;
  }
}
.why__content p {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  color: #514F6E;
}
@media (max-width: 990px) {
  .why__content p {
    font-size: 17px;
  }
}
.why__icon {
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.why__icon img {
  width: 64px;
  height: auto;
}
.why__icon {
  position: relative;
  z-index: 3;
}
.why__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
}
@media (max-width: 990px) {
  .why__image {
    width: 160px;
  }
}
.why__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.profile {
  padding: 60px 20px;
}
.profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 991px) {
  .profile__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.profile__tf h2 {
  margin: 0 0 36px 0;
}
.profile__tf h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 36px 0;
}
.profile__tf p {
  margin-bottom: 20px;
}
.profile__tf:nth-last-child(1) {
  margin-bottom: 0;
}
.profile__image {
  position: relative;
}
.profile__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.profile__image-overlay {
  background: linear-gradient(to top, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 170px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.profile__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}
@media (min-width: 991px) {
  .profile__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.profile__pill {
  font-size: 20px;
  padding: 24px 20px;
  border-radius: 36px;
  background: #F9F8FD;
  text-align: center;
  color: #170F49;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .profile__pill {
    padding: 20px 16px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 20px;
  }
}

/*# sourceMappingURL=app.css.map */
