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

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/helvetica-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/helvetica-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  position: relative;
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
}
body.lock {
  overflow: hidden;
}
body.overlay:before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.section-el {
  padding: 40px 0;
  margin-top: -20px;
  border-radius: 16px 16px 0 0;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section-el {
    padding: 90px 0;
    margin-top: -30px;
    border-radius: 32px 32px 0 0;
  }
}

.btn-primary {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 32px;
  background: #FFFFFF;
  backdrop-filter: blur(19.2999992371px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn-primary__text {
  color: #000919;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-family: "Inter";
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #E6EFFF;
  }
}

.btn-secondary {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 32px;
  background: #1A1A1A;
  backdrop-filter: blur(19.2999992371px);
  min-width: 150px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn-secondary__text {
  color: #FFFFFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-family: "Inter";
}
@media (hover: hover) {
  .btn-secondary:hover {
    background: #011232;
  }
}

.btn-blue {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 32px;
  background: #023491;
  backdrop-filter: blur(19.2999992371px);
  min-width: 150px;
  text-align: center;
}
.btn-blue__text {
  color: #FFFFFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-family: "Inter";
}

.h2-title {
  color: #012465;
  font-size: clamp(32px, 3vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

.header {
  z-index: 100;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  width: 100%;
}
.header.menuOpen {
  background-color: #011232;
}
.header__cols-wrap {
  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;
  padding: 16px 0;
}
.header__logo {
  display: inline-block;
  width: 223px;
  position: relative;
  z-index: 100;
}
.header__logo svg {
  width: 100%;
}
.header__nav-wrap-top {
  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: 32px;
}
.header__nav-wrap {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  position: fixed;
  top: 63px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 63px);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 0;
  padding: 40px 0;
  overflow-y: auto;
}
.header__nav-wrap.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 99;
  background-color: #011232;
}
@media screen and (min-width: 768px) {
  .header__nav-wrap {
    position: inherit;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    width: auto;
    height: auto;
  }
}
.header__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .header__nav-menu {
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header__nav-menu li a {
  color: #FFFFFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (min-width: 768px) {
  .header__nav-menu li a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    display: block;
    padding: 8px;
  }
}
@media (hover: hover) {
  .header__nav-menu li a:hover {
    opacity: 0.5;
  }
}
.header__btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__btn {
    display: inline-block;
  }
}
.header__burger {
  position: relative;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger-icon {
  width: 16px;
  height: 16px;
  position: relative;
}
.header__burger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  height: 1px;
  top: 7.5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 1px;
}
.header__burger-icon:before, .header__burger-icon:after {
  content: "";
  background: #FFFFFF;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 1px;
}
.header__burger-icon:before {
  top: 0;
}
.header__burger-icon:after {
  bottom: 0;
}
.header__burger-text {
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__burger.active .header__burger-icon span {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.header__burger.active .header__burger-icon:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7.5px;
}
.header__burger.active .header__burger-icon:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 7.5px;
}

.header.header-simple {
  position: relative;
}
.header.header-simple .header__nav-menu li a {
  color: #121721;
}
.header.header-simple .btn-primary {
  background: #023491;
}
.header.header-simple .btn-primary__text {
  color: #FFFFFF;
}
@media (hover: hover) {
  .header.header-simple .btn-primary:hover {
    background: #011232;
  }
}
.header.header-simple .header__burger-icon span,
.header.header-simple .header__burger-icon:before,
.header.header-simple .header__burger-icon:after {
  background: #121721;
}
.header.header-simple .header__burger-text {
  color: #121721;
}
.header.header-simple.menuOpen {
  background-color: #9ABDFE;
}
.header.header-simple .header__nav-wrap.active {
  background-color: #9ABDFE;
}

.footer {
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__top {
  margin-bottom: 20px;
  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;
}
@media screen and (min-width: 768px) {
  .footer__top {
    margin-bottom: 40px;
  }
}
.footer__logo {
  width: 223px;
  display: block;
}
.footer__social-link svg {
  fill: #475A85;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .footer__social-link:hover svg {
    fill: #354464;
  }
}
.footer__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #EAEFF7;
  padding: 8px 0 0;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .footer__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 0;
  }
}
.footer__privacy {
  color: #232D43;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
}
.footer__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__nav-menu li a {
  color: #7A8DB8;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  padding: 10px;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.footer__nav-menu li a::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #7A8DB8;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .footer__nav-menu li a:hover {
    color: #354464;
  }
}
.footer__nav-menu li:nth-child(1) a {
  padding-left: 0;
}
.footer__nav-menu li:nth-child(1) a::before {
  display: none;
}

.form-popup {
  max-width: calc(100% - 32px);
  width: 1200px;
  max-height: calc(100% - 60px);
  overflow-y: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0.5) translate(-50%, -50%);
          transform: scale(0.5) translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 102;
  border-radius: 20px;
  background: #FFF;
}
@media screen and (min-width: 1024px) {
  .form-popup {
    border-radius: 30px;
  }
}
.form-popup.active {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}
.form-popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .form-popup__close {
    top: 24px;
    right: 24px;
  }
}
.form-popup__close-text {
  display: none;
}
@media screen and (min-width: 1024px) {
  .form-popup__close-text {
    display: block;
    color: #FFFFFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
  }
}
.form-popup__col-1 {
  padding: 16px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .form-popup__col-1 {
    width: 56.667%;
    padding: 48px;
  }
}
.form-popup__col-2 {
  width: 43.333%;
  display: none;
}
@media screen and (min-width: 1024px) {
  .form-popup__col-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form-popup__title-wrap {
  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;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .form-popup__title-wrap {
    gap: 8px;
    margin-bottom: 24px;
  }
}
.form-popup__title {
  color: var(--Secondary-700, #393D60);
  font-size: clamp(20px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  max-width: calc(100% - 32px);
}
.form-popup__subtitle {
  color: var(--Secondary-600, #4C5280);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.form-popup__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form {
  width: 100%;
}
.form__fieldset {
  border: none;
}
.form__inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .form__inputs-wrapper {
    gap: 16px;
  }
}
.form__input-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .form__input-item-sm {
    -ms-flex-preferred-size: calc(50% - 8px);
        flex-basis: calc(50% - 8px);
  }
}
.form__input-item-lg {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.form__input-item label {
  color: var(--Blue-700, #203079);
  font-size: clamp(12px, 2.5vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form__input-item input, .form__input-item select, .form__input-item textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--Secondary-200, #BFC2D9);
  color: var(--Secondary-600, #4C5280);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 171.429%;
  padding: 10px 16px;
}
.form__input-item input:focus,
.form__input-item select:focus,
.form__input-item textarea:focus {
  border: 1px solid var(--Secondary-600, #4C5280);
}
.form__input-item input.invalid,
.form__input-item select.invalid,
.form__input-item textarea.invalid {
  border: 1px solid red;
}
.form__input-item input::-webkit-input-placeholder, .form__input-item textarea::-webkit-input-placeholder {
  color: var(--Blue-500, #465FCE);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
}
.form__input-item input::-moz-placeholder, .form__input-item textarea::-moz-placeholder {
  color: var(--Blue-500, #465FCE);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
}
.form__input-item input:-ms-input-placeholder, .form__input-item textarea:-ms-input-placeholder {
  color: var(--Blue-500, #465FCE);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
}
.form__input-item input::-ms-input-placeholder, .form__input-item textarea::-ms-input-placeholder {
  color: var(--Blue-500, #465FCE);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
}
.form__input-item input::placeholder,
.form__input-item textarea::placeholder {
  color: var(--Blue-500, #465FCE);
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.5;
}
.form__input-item textarea {
  min-height: 120px;
  resize: vertical;
}
.form__input-item select {
  cursor: pointer;
}
.form__input-item.focused label {
  opacity: 1;
}
.form__input-item-radio .form__radio-input {
  width: auto;
  cursor: pointer;
}
.form__input-item-radio .form__radio-group-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__input-item-radio .form__radio-group-icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__input-item-radio .form__radio-label-icon {
  cursor: pointer;
  color: var(--Blue-500, #465FCE);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding-left: 8px;
}
.form .formAgreement {
  display: none;
}
.form___checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  gap: 8px;
}
.form___checkbox-label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  top: 0px;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--Blue-500, #465FCE);
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form__checkbox-input:checked + .form___checkbox-label::before {
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="%23465FCE"/><path d="M16.6663 5L7.49967 14.1667L3.33301 10" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.form__privacy-btn-wrap {
  margin-top: 16px;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.form__button-wrap {
  width: 100%;
  text-align: left;
}
.form__button-wrap .form__button {
  width: 100%;
  max-width: 327px;
  text-align: center;
  cursor: pointer;
  margin: 8px 0;
}
@media screen and (min-width: 768px) {
  .form__button-wrap {
    width: auto;
  }
}
.form__privacy-block {
  -ms-flex-preferred-size: 59%;
      flex-basis: 59%;
}
.form__agree-text {
  color: var(--Secondary-600, #4C5280);
  font-size: clamp(12px, 2.5vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}
.form__error-msg {
  color: red;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.12px;
  margin-top: 8px;
  display: none;
}
.form__error-msg.active {
  display: block;
}

.hero {
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  height: calc(100vh + 20px);
  padding: 124px 0 60px;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero {
    padding: 120px 0 80px;
    height: auto;
    min-height: calc(100vh + 30px);
  }
}
.hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/lines.svg");
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  z-index: 1;
}
.hero .container {
  height: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .hero .container {
    height: 100%;
  }
}
.hero__content {
  height: 100%;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25vh;
}
@media screen and (min-width: 1024px) {
  .hero__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.hero__main-info {
  max-width: 789px;
  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;
}
.hero__col-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .hero__col-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .hero__tags {
    width: 40%;
  }
}
.hero__tags-title {
  font-size: clamp(20px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  background: var(--grad, linear-gradient(90deg, #FFF 0%, #A8B3FD 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 12px;
  text-wrap: balance;
}
@media screen and (min-width: 1024px) {
  .hero__tags-title {
    text-align: left;
    margin-bottom: 20px;
  }
}
.hero__tags-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .hero__tags-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.hero__tag-item {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(300px);
  padding: 8px 12px;
  color: #FFFFFF;
  font-size: clamp(12px, 2.5vw, 14px);
  font-style: normal;
  font-weight: 400;
  font-family: "Inter";
}
.hero__title {
  text-align: center;
  font-size: clamp(36px, 7vw, 88px);
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#A8B3FD));
  background: linear-gradient(90deg, #FFF 0%, #A8B3FD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .hero__title {
    text-align: left;
    text-wrap: balance;
    margin-bottom: 20px;
  }
}
.hero__subtitle {
  color: #CDDEFE;
  text-align: center;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    max-width: 429px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    text-align: left;
  }
}
.hero__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero__banner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
  }
}
@media screen and (min-width: 1400px) {
  .hero__banner {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}
.hero__banner-img-wrap {
  padding: 8px;
  border-radius: 12px;
  background: #FFF;
}
.hero__banner-img {
  width: 98px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .hero__banner-img {
    width: 124px;
  }
}
.hero__banner-info-wrap {
  border-radius: 12px;
  background: #FFF;
  padding: 16px;
  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-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 252px;
}
@media screen and (min-width: 1024px) {
  .hero__banner-info-wrap {
    max-width: 100%;
    width: 252px;
  }
}
.hero__banner-text {
  color: #7A8DB8;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
}
.hero__banner-text span {
  color: #012465;
  font-size: clamp(20px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: block;
}

.why-us {
  background-color: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .why-us {
    margin-top: -30px;
  }
}
.why-us__cols-wrap {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .why-us__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.why-us__title-wrap {
  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: 4px;
}
@media screen and (min-width: 1024px) {
  .why-us__title-wrap {
    width: 40%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.why-us__title {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .why-us__title {
    text-align: left;
  }
}
.why-us__subtitle {
  color: #012465;
  text-align: center;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
@media screen and (min-width: 1024px) {
  .why-us__subtitle {
    text-align: left;
  }
}
.why-us__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: 12px;
}
@media screen and (min-width: 1024px) {
  .why-us__list {
    width: 45%;
  }
}
.why-us__list-item {
  padding: 12px;
  border-radius: 16px;
  background: var(--Gray-50, #F5F8FD);
  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;
}
@media screen and (min-width: 1024px) {
  .why-us__list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.why-us__list-item-icon {
  width: 48px;
  aspect-ratio: 1/1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #EAEFF7;
}
@media screen and (min-width: 1024px) {
  .why-us__list-item-icon {
    width: 64px;
  }
}
.why-us__list-item-icon svg {
  width: 24px;
}
@media screen and (min-width: 1024px) {
  .why-us__list-item-icon svg {
    width: 32px;
  }
}
.why-us__list-item-text {
  color: #354464;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}

.compliance {
  background: #F5F8FD;
}
.compliance__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .compliance__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .compliance__col-1 {
    width: 42.339%;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-image: url("../img/lines-2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
  }
}
.compliance__col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .compliance__col-2 {
    width: 45%;
    gap: 48px;
  }
}
.compliance__col-2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .compliance__col-2-item {
    gap: 16px;
  }
}
.compliance__img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .compliance__img {
    display: block;
  }
}
.compliance__title-wrap {
  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;
  text-align: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .compliance__title-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.compliance__subtitle {
  color: #475A85;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
.compliance__list-title {
  color: #354464;
  text-align: center;
  font-size: clamp(20px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .compliance__list-title {
    text-align: left;
  }
}
.compliance__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: 12px;
}
.compliance__list-item {
  padding: 12px;
  border-radius: 16px;
  background: #FFFFFF;
  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;
}
@media screen and (min-width: 1024px) {
  .compliance__list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.compliance__list-item-icon {
  width: 48px;
  aspect-ratio: 1/1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #F5F8FD;
}
@media screen and (min-width: 1024px) {
  .compliance__list-item-icon {
    width: 64px;
  }
}
.compliance__list-item-icon svg {
  width: 24px;
}
@media screen and (min-width: 1024px) {
  .compliance__list-item-icon svg {
    width: 32px;
  }
}
.compliance__list-item-text {
  color: #354464;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
.compliance__slogan {
  color: #7A8DB8;
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.compliance__slogan.desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .compliance__slogan.mobile {
    display: none;
  }
  .compliance__slogan.desktop {
    display: block;
    margin-top: 24px;
  }
}

.how-it-works {
  background: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .how-it-works {
    background-image: url("../img/lines-3.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.how-it-works__title-wrap {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .how-it-works__title-wrap {
    margin-bottom: 36px;
  }
}
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.how-it-works__step {
  padding: 12px;
  border-radius: 16px;
  background: #F5F8FD;
}
@media screen and (min-width: 1024px) {
  .how-it-works__step {
    padding: 24px;
    border-radius: 20px;
  }
}
.how-it-works__step-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .how-it-works__step-num {
    margin-bottom: 24px;
  }
}
.how-it-works__step-num-icon {
  width: 32px;
  aspect-ratio: 1/1;
  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;
  border-radius: 8px;
  background: #D7E0F5;
  color: #475A85;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 142.857%;
}
@media screen and (min-width: 1024px) {
  .how-it-works__step-num-icon {
    width: 40px;
  }
}
.how-it-works__step-num-text {
  color: #475A85;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 142.857%;
}
.how-it-works__step-title {
  color: #232D43;
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .how-it-works__step-title {
    margin-bottom: 8px;
  }
}
.how-it-works__step-list {
  list-style: disc;
  padding-left: 20px;
}
.how-it-works__step-list-tem {
  color: #475A85;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.how-it-works__duration {
  color: #012465;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .how-it-works__duration {
    margin-top: 36px;
  }
}
.how-it-works__duration span {
  color: #012465;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 142.857%;
  padding: 6px 12px;
  border-radius: 46px;
  background: #EAEFF7;
  display: inline-block;
}

.advantages {
  background: #F5F8FD;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .advantages__cols-wrap {
    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;
  }
}
.advantages__col-1 {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .advantages__col-1 {
    width: 46%;
  }
}
@media screen and (min-width: 1024px) {
  .advantages__col-2 {
    width: 46%;
    position: relative;
  }
  .advantages__col-2::before {
    position: absolute;
    content: "";
    width: 1130px;
    aspect-ratio: 1/1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-image: url("../img/lines-4.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }
}
.advantages__title {
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .advantages__title {
    text-align: left;
    text-wrap: pretty;
  }
}
.advantages__subtitle {
  color: #012465;
  text-align: center;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .advantages__subtitle {
    text-align: left;
  }
}
.advantages__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: 12px;
}
.advantages__list-item {
  padding: 12px;
  border-radius: 16px;
  background: #FFFFFF;
  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;
}
@media screen and (min-width: 1024px) {
  .advantages__list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.advantages__list-item-icon {
  width: 48px;
  aspect-ratio: 1/1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #F5F8FD;
}
@media screen and (min-width: 1024px) {
  .advantages__list-item-icon {
    width: 64px;
  }
}
.advantages__list-item-icon svg {
  width: 24px;
}
@media screen and (min-width: 1024px) {
  .advantages__list-item-icon svg {
    width: 32px;
  }
}
.advantages__list-item-text {
  color: #354464;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
.advantages__slogan {
  color: #7A8DB8;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 24px;
}
.advantages__img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .advantages__img {
    display: block;
  }
}

.for-whom {
  background: #EAEFF7;
  overflow: hidden;
}
.for-whom__title-wrap {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .for-whom__title-wrap {
    margin-bottom: 36px;
  }
}
.for-whom__swiper.swiper {
  overflow: visible;
}
.for-whom__swiper.swiper .swiper-slide {
  border-radius: 20px;
  background: #FFFFFF;
  height: auto;
  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;
  gap: 16px;
  padding: 24px;
}
.for-whom__swiper.swiper .swiper-slide .for-whom__swiper-slide-img {
  height: 207px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .for-whom__swiper.swiper .swiper-slide .for-whom__swiper-slide-img {
    height: 278px;
  }
}
.for-whom__swiper.swiper .swiper-slide .for-whom__swiper-slide-title {
  color: #354464;
  text-align: center;
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.for-whom__list-swiper.swiper {
  margin-top: 20px;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .for-whom__list-swiper.swiper {
    margin-top: 36px;
  }
}
.for-whom__list-swiper.swiper .for-whom__list-swiper-slide {
  padding: 12px;
  border-radius: 16px;
  background: #FFFFFF;
  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;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .for-whom__list-swiper.swiper .for-whom__list-swiper-slide {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.for-whom__list-swiper.swiper .for-whom__list-swiper-slide .for-whom__list-item-icon {
  width: 48px;
  aspect-ratio: 1/1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #F5F8FD;
}
@media screen and (min-width: 1024px) {
  .for-whom__list-swiper.swiper .for-whom__list-swiper-slide .for-whom__list-item-icon {
    width: 64px;
  }
}
.for-whom__list-swiper.swiper .for-whom__list-swiper-slide .for-whom__list-item-icon svg {
  width: 24px;
}
@media screen and (min-width: 1024px) {
  .for-whom__list-swiper.swiper .for-whom__list-swiper-slide .for-whom__list-item-icon svg {
    width: 32px;
  }
}
.for-whom__list-swiper.swiper .for-whom__list-swiper-slide .for-whom__list-item-text {
  color: #354464;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
.for-whom__list-title {
  color: #012465;
  text-align: center;
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 16px;
}

.control {
  background-color: #FFFFFF;
}
.control__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .control__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.control__col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .control__col-1 {
    width: 40%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .control__col-2 {
    width: 45%;
  }
}
.control__title {
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .control__title {
    text-align: left;
    margin-bottom: 24px;
  }
}
.control__col-2-title {
  color: #475A85;
  font-size: clamp(20px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .control__col-2-title {
    margin-bottom: 38px;
  }
}
.control__person {
  border-radius: 8px;
  background: #F5F8FD;
  padding: 16px;
  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;
}
.control__person-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.control__person-main-info {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.control__person-main-info-top {
  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;
}
.control__person-img {
  width: 111px;
  height: 111px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .control__person-img {
    width: 144px;
    height: 144px;
  }
}
.control__person-position {
  color: #475A85;
  font-size: clamp(12px, 2.5vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.control__person-name {
  color: #1A1A1A;
  font-size: clamp(20px, 3vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.control__person-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border-radius: 24px;
  border: 1px solid #D7E0F5;
  padding: 6px 12px 6px 8px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.control__person-link-text {
  color: #012465;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  font-family: "Inter";
}
.control__person-link-icon {
  width: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  .control__person-link:hover {
    border: 1px solid #475A85;
  }
}
.control__person-descr {
  color: #475A85;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
}
.control__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: 12px;
}
.control__list-item {
  padding: 12px;
  border-radius: 16px;
  background: var(--Gray-50, #F5F8FD);
  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;
}
@media screen and (min-width: 1024px) {
  .control__list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.control__list-item-icon {
  width: 48px;
  aspect-ratio: 1/1;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #EAEFF7;
}
@media screen and (min-width: 1024px) {
  .control__list-item-icon {
    width: 64px;
  }
}
.control__list-item-icon svg {
  width: 24px;
}
@media screen and (min-width: 1024px) {
  .control__list-item-icon svg {
    width: 32px;
  }
}
.control__list-item-text {
  color: #354464;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
.control__text {
  color: #7A8DB8;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .control__text {
    text-align: left;
  }
}

.booking {
  background-color: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .booking {
    background-image: url("../img/lines-3.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.booking__title-wrap {
  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;
  margin: 0 auto 20px;
  text-align: center;
  max-width: 580px;
}
@media screen and (min-width: 1024px) {
  .booking__title-wrap {
    margin: 0 auto 24px;
    gap: 8px;
  }
}
.booking__subtitle {
  color: #012465;
  text-align: center;
  font-size: clamp(18px, 3vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 177.778%;
}
.booking__items-wrap {
  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;
}
@media screen and (min-width: 1024px) {
  .booking__items-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.booking__item {
  border-radius: 12px;
  background: #FFFFFF;
  padding: 12px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .booking__item {
    -ms-flex-preferred-size: 400px;
        flex-basis: 400px;
    padding: 20px;
    border-radius: 16px;
  }
}
.booking__item:nth-child(odd) {
  background: #F5F8FD;
}
.booking__item:nth-child(even) {
  border: 1px solid #D7E0F5;
  background: #FFFFFF;
}
.booking__item-top {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .booking__item-top {
    margin-bottom: 32px;
  }
}
.booking__item-date {
  color: #7A8DB8;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.booking__item-sticker {
  border-radius: 30px;
  border: 0.75px solid #EAEFF7;
  background: #FFFFFF;
  padding: 6px 12px;
  color: #475A85;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  font-family: "Inter";
}
.booking__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .booking__item-info {
    margin-bottom: 16px;
  }
}
.booking__item-info:nth-last-child(1) {
  margin-bottom: 0;
}
.booking__item-info-icon {
  width: 20px;
  margin-right: 6px;
}
.booking__item-info-title {
  color: #012465;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-right: 8px;
}
.booking__item-info-slots {
  padding: 4px 10px;
  border-radius: 46px;
  background: #D7E0F5;
  color: #475A85;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-family: "Inter";
}
.booking__item-info-text {
  color: #475A85;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.booking .booking__btn-wrap {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .booking .booking__btn-wrap {
    margin-top: 36px;
  }
}
.booking .booking__btn {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .booking .booking__btn {
    width: auto;
  }
}

.compare__title {
  text-align: center;
  max-width: 536px;
  margin: 0 auto 24px;
}
@media screen and (min-width: 1024px) {
  .compare__title {
    margin: 0 auto 36px;
  }
}
.compare__items-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .compare__items-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.compare__item {
  border-radius: 16px;
  background: var(--Gray-50, #F5F8FD);
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .compare__item {
    padding: 36px;
    border-radius: 20px;
  }
}
.compare__item-title {
  color: #232D43;
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 4px;
}
.compare__item-subtitle {
  color: #475A85;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
}
.compare__item-img {
  height: 164px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .compare__item-img {
    height: 284px;
  }
}

.banner__inner-wrap {
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(91, 91, 91, 0.04), 0 5px 24px 0 rgba(91, 91, 91, 0.08);
          box-shadow: 0 2px 8px 0 rgba(91, 91, 91, 0.04), 0 5px 24px 0 rgba(91, 91, 91, 0.08);
  padding: 24px;
  background-image: url("../img/banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .banner__inner-wrap {
    padding: 48px;
  }
  .banner__inner-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/banner-lines.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.banner__content {
  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;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .banner__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.banner__title {
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-wrap: pretty;
  margin-bottom: 8px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.banner__subtitle {
  color: #FFFFFF;
  opacity: 0.8;
  text-align: center;
  font-size: clamp(14px, 2.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  max-width: 257px;
  margin: 0 auto 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 1024px) {
  .banner__subtitle {
    margin: 0 0 24px;
    max-width: 479px;
  }
}
.banner__date {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .banner__date {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin: 0;
  }
}
.banner__date-title {
  color: #FFFFFF;
  font-size: clamp(12px, 2.5vw, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 2px;
}
.banner__date-slot {
  color: #FFFFFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.banner__date-slot span {
  color: #FFFFFF;
  font-size: clamp(12px, 2.5vw, 14px);
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 2px 8px;
  border-radius: 46px;
  background: var(--white-10, rgba(255, 255, 255, 0.1));
}
.banner__btn {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  width: 100%;
  text-align: center;
  max-width: 295px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .banner__btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    max-width: 100%;
    width: auto;
    margin: 0 0 32px;
  }
}
.banner__img-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .banner__img-desktop {
    display: block;
    position: absolute;
    top: -48px;
    right: 0;
    height: calc(100% + 98px);
  }
}
.banner__img-mobile {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin-top: 36px;
}
@media screen and (min-width: 1024px) {
  .banner__img-mobile {
    display: none;
  }
}

.privacy .container {
  max-width: 768px;
}
.privacy__title {
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .privacy__title {
    margin-bottom: 12px;
  }
}
.privacy__content h2, .privacy__content h3, .privacy__content h4, .privacy__content h5, .privacy__content h6 {
  color: #354464;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
}
.privacy__content h3 {
  font-size: 22px;
}
.privacy__content h4 {
  font-size: 20px;
}
.privacy__content h5, .privacy__content h6 {
  font-size: 18px;
}
.privacy__content p {
  color: #475A85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.privacy__content ul, .privacy__content ol {
  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;
  padding-left: 20px;
}
.privacy__content ul li, .privacy__content ol li {
  color: #475A85;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.privacy__content ul {
  list-style: disc;
}
.privacy__content ol {
  list-style: auto;
}
.privacy__content > * {
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .privacy__content > * {
    margin-bottom: 12px;
  }
}
.privacy__content > *:nth-last-child(1) {
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .thank-you {
    background-image: url("../img/lines-3.svg");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.thank-you .container {
  min-height: calc(100vh - 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 658px;
  margin: 0 auto;
}
.thank-you__logo {
  display: none;
}
@media screen and (min-width: 1024px) {
  .thank-you__logo {
    display: block;
    width: 223px;
    margin-bottom: 36px;
  }
}
.thank-you__title {
  text-align: center;
  margin-bottom: 8px;
  text-wrap: balance;
}
.thank-you__subtitle {
  color: #475A85;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.thank-you__btn {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .thank-you__btn {
    margin-top: 36px;
  }
}/*# sourceMappingURL=main.css.map */