@charset "UTF-8";
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* шапка лежит поверх полноэкранного hero */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0;
}
.header__logo {
  width: 100%;
  max-width: 143px;
}
.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: #F2F2F2;
  padding: 10px 16px;
  gap: 20px;
}
.header__menu_item {
  list-style: none;
}
.header__menu_item a {
  color: rgba(66, 66, 66, 0.8);
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease;
}
.header__menu_item a:hover {
  color: #3D3D55;
}
.header__end {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
.header__end .subscribe {
  border-radius: 30px;
  padding: 10px 16px;
  border: 1px solid #3D3D55;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02);
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  cursor: pointer;
  text-decoration: none;
}
.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
}
.header__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3D3D55;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger span:nth-child(1) {
  top: 0;
}
.header__burger span:nth-child(2) {
  top: 10px;
}
.header__burger span:nth-child(3) {
  top: 20px;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.lang {
  padding: 10px;
  border-radius: 30px;
  background: #92CDF1;
  box-shadow: 0px 4px 8px 0px rgba(188, 188, 188, 0.04);
  color: #FFF;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  inset: 0;
  background: #E5F7FF;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px 48px;
}
.sidebar__inner_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar__inner_head .sidebar__close {
  width: 40px;
  height: 40px;
}
.sidebar__logo {
  max-width: 143px;
}
.sidebar__nav {
  margin: 48px 0 32px;
  display: flex;
  flex-direction: column;
}
.sidebar__item {
  list-style: none;
}
.sidebar__item a {
  font: 18px Geologica, sans-serif;
  padding-bottom: 10px;
  padding-top: 10px;
  color: #3D3D55;
  cursor: pointer;
  border-bottom: 1px solid #ECB920;
  display: block;
  text-decoration: none;
}
.sidebar__item:last-child {
  border-bottom: none;
}
.sidebar__cta {
  margin-bottom: 32px;
}
.sidebar__contacts {
  font: 14px/1.4 Geologica, sans-serif;
  color: #3D3D55;
  margin-bottom: 24px;
}
.sidebar__contacts a {
  color: inherit;
  text-decoration: none;
}
.sidebar__contacts_yellow {
  color: #ECB920;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.sidebar__social {
  display: flex;
  gap: 16px;
  margin-bottom: auto;
}
.sidebar__social a > img {
  width: 40px;
  height: 40px;
}
.sidebar__copy {
  font: 12px Geologica, sans-serif;
  color: #3D3D55;
  opacity: 0.6;
}
.sidebar__madeBy {
  font-family: Geologica, "Geologica Fallback", sans-serif;
  color: #3D3D55;
}
.sidebar__madeBy a {
  color: #3D3D55;
}

@media screen and (max-width: 980px) {
  .header {
    /* прячем только меню и (если нужно) языковую метку */
    /* кнопка остаётся видимой */
  }
  .header__menu {
    display: none;
  }
  .header__end .subscribe {
    display: inline-flex; /* чтобы сохранить flex‑поведение */
    align-items: center;
  }
  .header__burger {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 0 !important;
  }
  .header__end .subscribe {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .header__end .lang {
    display: none;
  }
}/*# sourceMappingURL=header.css.map */@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* hero растянут через 100vw — гасим возможный горизонтальный скролл */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: #FAFAFA;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.iti {
  --iti-path-flags-1x: url("../images/form/flags.webp");
  --iti-path-flags-2x: url("../images/form/flags@2x.webp");
  --iti-path-globe-1x: url("../images/form/globe.webp");
  --iti-path-globe-2x: url("../images/form/globe@2x.webp");
}

.main__btn {
  border-radius: 30px;
  background: #ECB920;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02);
  padding: 10px 16px;
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  border: none;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  text-align: center;
  display: block;
}

.hero {
  position: relative;
  /* во весь экран и под шапку: полная высота вьюпорта,
     на всю ширину (вырывается из .wrapper), отступ сверху под хедер */
  padding: 160px 16px 60px;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
/* картинки не рисуются "полосами" по мере скачивания:
   скрыты до полной загрузки, затем плавно проявляются (см. main.js) */
img.img-reveal {
  opacity: 0;
  transition: opacity 0.35s ease;
}
img.img-reveal.is-loaded {
  opacity: 1;
}
.hero__bg {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__video {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  /* появляется плавно поверх картинки, когда реально начало играть */
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero__video.is-playing {
  opacity: 1;
}
@media (max-width: 767px) {
  .hero__video {
    display: none;
  }
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.hero__top_title {
  width: 100%;
  max-width: 668px;
  color: #FFF;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.hero__top_right {
  width: 100%;
  max-width: 316px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 26px;
  padding-top: 16px;
}
.hero__top_right p {
  color: #FFF;
  text-align: right;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.hero__top_right p span {
  color: #F6E026;
}
.hero__advants {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.hero__advants_item {
  padding: 14px 10px 14px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #FFF;
  background: rgba(60, 80, 97, 0.3);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  gap: 12px;
  max-height: 94px;
  align-items: center;
  flex: 1;
}
.hero__advants_item img {
  width: 40px;
  height: 40px;
}
.hero__advants_item p {
  color: #FFF;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.hero .hero_bottom_btn {
  display: none;
}

.map {
  margin-top: 60px;
  position: relative;
  scroll-margin-top: 60px;
}
.map__text {
  padding: 10px 16px;
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 30px;
  border: 1px solid #3D3D55;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.02);
  color: #424242;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  z-index: 1;
  text-decoration: none;
}
.map .main__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 316px;
}
.map .map-card {
  min-width: 300px;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.map .map-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 50px;
  background: #fafafa;
  bottom: 0;
  right: 0;
  border-radius: 30px 0 0 0;
}
.map .map-card .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.map .map-card .box::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 35px;
  background: transparent;
  bottom: 0;
  right: 329px;
  border-radius: 0 0 30px 0;
  z-index: 1;
  box-shadow: 10px 10px #fafafa;
}
.map .map-card .box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  bottom: 50px;
  right: 0;
  border-radius: 0 0 30px 0;
  z-index: 1;
  box-shadow: 10px 10px #fafafa;
}
.map .map-card .box img {
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 30px;
  display: block;
}
.map .map-card .cta {
  width: 320px;
  height: 90px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.map .map-card .cta img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.peace-block {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
}

.peace-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: normal;
  text-align: left;
}

.peace-text {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: justify;
}

.title__dark {
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
  text-align: center;
}
.title__dark span {
  color: #ECB920;
}

.why {
  margin-top: 80px;
  margin-bottom: 60px;
}
.why__content {
  display: flex;
  gap: 20px;
}
.why .second-card {
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 15px;
  background: #E5FFE9;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.why .second-card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fafafa;
  top: 0;
  left: 0;
  border-radius: 30px 0;
}
.why .second-card .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.why .second-card .box h3 {
  padding-left: 80px;
  padding-top: 15px;
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px; /* 118.75% */
}
.why .second-card .box p {
  padding-top: 25px;
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: 0.1px;
  position: relative;
  z-index: 3;
  padding-left: 20px;
}
.why .second-card .box::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #e5ffe9;
  top: 68px;
  left: 0px;
  border-radius: 30px 0 0 0;
  z-index: 1;
  box-shadow: -10px -10px 0 0 #fafafa;
}
.why .second-card .box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  top: 0px;
  left: 67px;
  border-radius: 30px 0 0 0;
  z-index: 1;
  box-shadow: -10px -10px 0px #fafafa;
}
.why .second-card .box img {
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 30px;
}
.why .second-card .cta {
  width: 60px;
  height: 60px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.why .second-card .cta img {
  width: 100%;
}
.why__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.why__right {
  flex: 1;
  border-radius: 30px;
  position: relative;
}
.why__right_bg {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.why__right_txt {
  color: #FFF;
  text-align: right;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 389px;
}

.card-1 {
  height: 272px;
}

.card-2 {
  height: 248px;
}

.card {
  position: relative;
  max-width: 565px;
  display: flex;
}
.card .advants-img {
  width: 60px;
  height: 60px;
}
.card .advants-bg1 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.card__content {
  position: relative;
  z-index: 12;
}
.card__content_ttl {
  padding: 20px;
  padding-left: 40px;
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  /* 118.75% */
}
.card__content_txt {
  padding-top: 10px;
  max-width: 520px;
  margin-left: -35px;
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.investors {
  padding: 60px 83px;
  border-radius: 30px;
  border: 1px solid #8ABCDA;
  background: url(../images/investors_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: 1160px;
}
.investors__cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.investors__cards_item {
  border-radius: 30px;
  border: 1px solid #92CDF1;
  background: #E5FFE9;
  padding: 39px 33px;
}
.investors__cards_item h3 {
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 16px;
}
.investors__cards_item p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.investors__cards_item-bg {
  margin-top: 20px;
}
.investors__cards_item-bg h3 {
  color: #3D3D55;
}
.investors__cards_item-bg p {
  color: #3D3D55;
}

.title__light {
  color: #FFF;
  text-align: center;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.title__light span {
  color: #ECB920;
}

.amman {
  padding: 60px 83px;
  max-width: 1160px;
  position: relative;
  border-radius: 30px;
  margin: 0 auto;
  scroll-margin-top: 30px;
}
.amman__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 30px;
}
.amman__top {
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.amman__top_left {
  flex: 1;
}
.amman__top_left .orange_amman {
  padding: 39px 33px;
  background: url(../images/amman_card_bg.webp);
  background-size: cover;
  border-radius: 30px;
  margin-bottom: 20px;
}
.amman__top_left .orange_amman p {
  color: #FFF;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}
.amman__top_left .orange_amman p span {
  color: #3D3D55;
}
.amman__top_left .amman-advants {
  display: flex;
  gap: 20px;
}
.amman__top_left .amman-advants-item {
  border-radius: 20px;
  border: 1px solid #ECB920;
  background: #E5FFE9;
  padding: 20px;
  flex: 1;
}
.amman__top_left .amman-advants-item h3 {
  color: #ECB920;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}
.amman__top_left .amman-advants-item p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.amman__top_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}
.amman__top_right .amman_logo {
  width: 100%;
  max-width: 130px;
}
.amman__top_right .amman-factories {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
.amman__top_right .amman-factories-item {
  background-color: #fff;
  padding: 8px 16px 8px 20px;
  border-radius: 15px;
  border: 1px solid #3D3D55;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.amman__top_right .amman-factories-item p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.amman__top_right .amman-factories-item img {
  width: 40px;
  height: 40px;
}
.amman__text {
  margin-top: 90px;
  color: #FFF;
  text-align: center;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}
.amman__text span {
  color: #ECB920;
}

.slides {
  position: relative;
}

:root {
  --slide-radius: 16px; /* Скругление углов */
  --slide-height: 288px; /* Фиксированная высота слайда */
  --slide-gap: 16px; /* Отступ между слайдами */
}

/* Основной контейнер карусели */
.swiper-1 {
  width: 100%;
  height: var(--slide-height); /* Явная высота */
  overflow: hidden; /* Скрываем края других слайдов */
}

/* Обёртка слайдов */
.swiper-wrapper-1 {
  display: flex;
  height: 100%; /* Наследуем высоту */
}

/* Слайд */
.swiper-slide-1 {
  flex-shrink: 0;
  height: 100%; /* Полная высота контейнера */
  position: relative;
  overflow: hidden;
  border-radius: var(--slide-radius);
}

/* Определяем ширину слайдов для соотношения 1/3 и 2/3 */
.swiper-slide-1:nth-child(2n+1) {
  width: calc((100% - var(--slide-gap)) / 3); /* 1/3 ширины */
}

.swiper-slide-1:nth-child(2n) {
  width: calc((100% - var(--slide-gap)) * 2 / 3); /* 2/3 ширины */
}

/* Изображение растягивается по размеру слайда */
.swiper-slide-1 img {
  width: 100%;
  height: 288px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Мобильная точка перелома: один слайд */
@media (max-width: 768px) {
  .swiper-slide-1 {
    width: 100% !important;
  }
  .swiper-1 img {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin: 0 auto;
  }
  .swiper-slide-1:nth-child(2n+1),
  .swiper-slide-1:nth-child(2n) {
    width: 100% !important;
  }
}
.swiper-nav-1 {
  width: 100%;
  position: relative;
}

/* Кнопки навигации */
.swiper-button-prev-1,
.swiper-button-next-1 {
  position: absolute;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  top: unset !important;
  bottom: -70px !important;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev-1 {
  left: 16px;
}

.swiper-button-next-1 {
  right: 16px;
}

.swiper-button-prev-1::after {
  content: url(../images/arrow-left.svg) !important;
}

.swiper-button-next-1::after {
  content: url(../images/arrow-right.svg) !important;
}

.anotherAdvants {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 60px;
}
.anotherAdvants__left {
  flex: 0.5;
  background: url(../images/baybg.webp);
  background-size: cover;
  border-radius: 30px;
  max-height: 370px;
  padding: 58px 53px;
}
.anotherAdvants__left h3 {
  color: #FDFDFF;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.anotherAdvants__left h3 span {
  color: #ECB920;
}
.anotherAdvants__left p {
  color: #FFF;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.anotherAdvants__right {
  flex: 0.5;
  border-radius: 30px;
  background: #92CDF1;
  padding: 24px;
}
.anotherAdvants__right_item {
  display: flex;
  border-radius: 20px;
  border: 1px solid #3D3D55;
  background: #E6F8FF;
  padding: 10px 8px;
  margin-bottom: 16px;
  gap: 12px;
  align-items: center;
}
.anotherAdvants__right_item:last-child {
  margin-bottom: 0;
}
.anotherAdvants__right_item img {
  width: 40px;
  height: 40px;
}
.anotherAdvants__right_item p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.anotherAdvants__right_item p span {
  font-style: 600;
}

.interest {
  margin-top: 60px;
}
.interest__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.interest__title h2 {
  text-align: center;
  flex: 1;
}
.interest__title p {
  flex: 1;
  color: #3D3D55;
  text-align: right;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.interest .interest__hero {
  min-width: 300px;
  height: 300px;
  background: #fff;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.interest .interest__hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 200px;
  background: #fafafa;
  top: 0;
  right: 0;
  border-radius: 0 0 0 30px;
}
.interest .interest__hero .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.interest .interest__hero .box::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  top: 200px;
  right: 0;
  border-radius: 0 30px 0 0;
  z-index: 1;
  box-shadow: 10px -10px #fafafa;
}
.interest .interest__hero .box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  top: 0;
  right: 400px;
  border-radius: 0 30px 0 0;
  z-index: 1;
  box-shadow: 10px -10px #fafafa;
}
.interest .interest__hero .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 20px;
}
.interest .interest__hero .cta {
  width: 390px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 40px;
  background: #E5FFE9;
  border: 1px solid #92CDF1;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 13px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.interest .interest__hero .cta h3 {
  color: #ECB920;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  text-align: start;
}
.interest .interest__hero .cta p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.interest__cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
}
.interest__cards-1 {
  background-color: #E5FFE9;
  border: 1px solid #92CDF1 !important;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  display: none !important;
}
.interest__cards-1 h3 {
  color: #ECB920;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  text-align: start !important;
}
.interest__cards_item {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid #ECB920;
  padding: 20px;
}
.interest__cards_item-left {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.interest__cards_item-left img {
  width: 40px;
  height: 40px;
}
.interest__cards_item-left h3 {
  color: #ECB920;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}
.interest__cards_item p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.strategy {
  margin-top: 60px;
}
.strategy__cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
}
.strategy__cards_item {
  flex: 1;
  background: #E6F8FF;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.strategy__cards_item::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fafafa;
  top: 0;
  right: 0;
  border-radius: 0 0 0 30px;
}
.strategy__cards_item .box {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 37px;
  padding-left: 20px;
  padding-right: 0;
}
.strategy__cards_item .box::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 60px;
  background: transparent;
  top: 70px;
  right: 0;
  border-radius: 0 30px 0 0;
  z-index: 1;
  box-shadow: 10px -10px #fafafa;
}
.strategy__cards_item .box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 40px;
  background: transparent;
  top: 0;
  right: 70px;
  border-radius: 0 30px 0 0;
  z-index: 1;
  box-shadow: 10px -10px #fafafa;
}
.strategy__cards_item .box h3 {
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 20px;
}
.strategy__cards_item .box p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.strategy__cards_item .box img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 20px;
}
.strategy__cards_item .cta {
  width: 60px;
  height: 60px;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 13px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.strategy__cards_item .cta img {
  width: 60px;
}

.structure {
  margin-top: 60px;
}
.structure .swiper-2 {
  width: 100%;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.structure .swiper-slide-2 {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.structure .swiper-slide-2 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.structure .structure-next-btn,
.structure .structure-prev-btn {
  width: 50px !important;
  height: 50px !important;
  top: 38% !important;
}
.structure .structure-next-btn::before {
  content: url(../images/arrow-right-dark.svg) !important;
}
.structure .structure-prev-btn::before {
  content: url(../images/arrow-left-dark.svg) !important;
}
.structure .structure-next-btn::after {
  content: none;
}
.structure .structure-prev-btn::after {
  content: none;
}
.structure .custom-slide {
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.structure .custom-slide img {
  width: 100% !important;
  height: 288px;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.structure .custom-slide .slider__desc {
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.structure .custom-slide .slider__desc h3 {
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  word-wrap: nowrap;
}
.structure .custom-slide .slider__desc p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
}

.steps {
  margin-top: 60px;
}
.steps__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.steps__title h2 {
  text-align: start;
}
.steps__title p {
  color: #3D3D55;
  text-align: right;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.steps .accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps .accordion .accordion-item {
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.steps .accordion .accordion-item:nth-child(5) {
  background: #9fd2fb;
  border: 1px solid #8ABCDA;
}
.steps .accordion .accordion-item.open .chevron {
  transform: rotate(180deg);
}
.steps .accordion .accordion-item.open .panel {
  opacity: 1;
}
.steps .accordion .accordion-item .accordion-header {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.steps .accordion .accordion-item .accordion-header .accordion-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.steps .accordion .accordion-item .accordion-header .accordion-header-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.steps .accordion .accordion-item .accordion-header .num {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
}
.steps .accordion .accordion-item .accordion-header .dot {
  display: block;
  width: 10px;
  height: 10px;
  background: #3D3D55;
  flex: 0 0 auto;
  border-radius: 50%;
}
.steps .accordion .accordion-item .accordion-header .index {
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
  /* 52.8px */
}
.steps .accordion .accordion-item .accordion-header .chevron {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.steps .accordion .accordion-item .panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 22px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.steps .accordion .accordion-item .panel .panel-content {
  padding: 16px 0 22px;
  padding-left: 125px;
  line-height: 1.6;
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 137.5% */
}
.steps .accordion .green {
  background: #d9f7e4;
  border: 1px solid #8ABCDA;
}
.steps .accordion .b-orange {
  border: 1px solid #ECB920;
}

#contacts {
  scroll-margin-top: 80px;
}

.footer {
  margin-top: 60px;
  background-color: #424242;
  padding: 50px 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left {
  flex: 1;
}
.footer__left_logo-mobile {
  display: none;
}
.footer__left_yellow {
  color: #ECB920;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.footer__mid {
  flex: 1;
  display: flex;
  justify-content: center;
}
.footer__mid img {
  width: 100%;
  max-width: 143px;
}
.footer__right {
  flex: 1;
}
.footer__right_contacts {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
.footer__right_contacts a {
  color: #FFF;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: block;
  text-decoration: none;
}
.footer__right .socials {
  margin-top: 14px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.footer__right .socials a > img {
  width: 40px;
  height: 40px;
}
.footer .copyright, .footer .madeBy {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 8px;
}
.footer .madeBy {
  margin-top: 0;
}
.footer .madeBy a {
  color: rgba(255, 255, 255, 0.8);
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.footer .copyright-mobile, .footer .madeBy-mobile {
  display: none;
}

.popupSuccess {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.popupSuccess__content {
  background-color: #9fd2fb;
  border: 1px solid #8ABCDA;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 370px;
  max-width: 80%;
  border-radius: 30px;
}
.popupSuccess__content h2 {
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}
.popupSuccess__content p {
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}
.popupSuccess__content button {
  outline: none;
  border: 1px solid #8ABCDA;
  background-color: #b8f0cd;
  color: #000;
  max-width: 180px;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  border-radius: 15px;
  padding: 10px 15px;
  cursor: pointer;
}

.sticky-bottom {
  position: sticky;
  bottom: 30px;
  width: 35%;
  margin: 0 auto;
  z-index: 90;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.sticky-bottom .top-btn-sticky {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 14px;
  border-radius: 30px;
}
.sticky-bottom .whatsapp {
  flex: 1;
  padding: 10px 14px;
  gap: 8px;
}
.sticky-bottom .whatsapp img {
  width: 22px;
}
.sticky-bottom .whatsapp span {
  font-size: 15px;
}

.whatsapp {
  z-index: 89;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  border-radius: 30px;
  cursor: pointer;
  padding: 15px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.whatsapp:hover {
  background-color: #1fa955;
  transform: translateY(-1px);
}
.whatsapp:hover img {
  /* иконка — отдельная картинка, затемняем её в тон фону */
  filter: brightness(0.82);
}
.whatsapp span {
  font-family: Geologica, "Geologica Fallback", sans-serif;
  color: #fff;
}
.whatsapp img {
  width: 35px;
  transition: filter 0.15s ease;
}

.whatsapp.visible {
  opacity: 1;
  visibility: visible;
}
.whatsapp.visible img {
  width: 55px;
}

@media screen and (max-width: 980px) {
  .hero__top {
    flex-direction: column;
  }
  .hero__top h1, .hero__top p {
    text-align: center;
  }
  .hero_top_btn:not(.top-btn-sticky) {
    display: none !important;
  }
  .hero_bottom_btn {
    display: block !important;
    margin: 0 auto;
    width: 300px;
  }
  .hero__advants_item p {
    font-size: 16px !important;
  }
  .interest__cards {
    flex-direction: column;
    margin-top: 10px;
  }
  .interest__cards_item {
    flex-direction: column;
  }
  .strategy__content_ttl {
    font-size: 21px !important;
    line-height: 22px !important;
  }
}
@media screen and (max-width: 860px) {
  .hero__advants_item p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    height: auto !important;
    min-height: 100svh;
    padding-top: 120px;
    margin: 0;
    margin-left: calc(50% - 50vw);
  }
  .hero__advants {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .hero__advants_item {
    padding: 4px 10px 4px 4px;
  }
  .map .map-card .cta {
    width: 265px;
  }
  .map .map-card::after {
    width: 275px;
  }
  .map .map-card .box::after {
    right: 274px;
  }
  .hero__top_right {
    margin-bottom: 20px;
  }
  .why__content {
    flex-direction: column;
  }
  .why__content .why__right {
    min-height: 390px;
    background-position-y: bottom;
  }
  .investors {
    padding: 60px 16px;
  }
  .investors__cards {
    grid-template-columns: 1fr;
  }
  .amman {
    padding: 60px 16px;
  }
  .amman__top {
    flex-direction: column;
  }
  .anotherAdvants {
    flex-direction: column;
    gap: 0;
  }
  .anotherAdvants__left {
    border-radius: 30px 30px 0 0;
  }
  .anotherAdvants__right {
    border-radius: 0 0 30px 30px;
  }
  .interest__title, .steps__title {
    flex-direction: column;
  }
  .interest__title h2, .steps__title h2 {
    text-align: center;
  }
  .interest__title p, .steps__title p {
    text-align: center;
    margin-bottom: 10px;
  }
  .interest__hero {
    display: none !important;
  }
  .interest__cards-1 {
    display: flex !important;
  }
  .second-card .box p {
    padding-right: 10px;
  }
  .strategy__cards {
    flex-direction: column;
  }
  .strategy__content_txt {
    padding-right: 10px;
  }
  .accordion-header {
    flex-direction: column !important;
    align-items: start !important;
  }
  .accordion-header-right {
    width: 100%;
  }
  .panel-content {
    padding-left: 0 !important;
  }
  .footer {
    flex-direction: column;
    align-items: start;
  }
  .footer__left_logo-mobile {
    display: inline-block;
    width: 100%;
    max-width: 144px;
    margin-bottom: 20px;
  }
  .footer__left .copyright, .footer__left .madeBy {
    display: none;
  }
  .footer__left_yellow {
    margin-bottom: 8px;
  }
  .footer__mid {
    display: none;
  }
  .footer__right_contacts {
    align-items: start;
    gap: 8px;
  }
  .copyright-mobile, .madeBy-mobile {
    display: block !important;
  }
  .sticky-bottom {
    width: 90%;
  }
}
@media screen and (max-width: 550px) {
  .hero__top_title {
    font-size: 50px;
  }
  .hero__advants_item {
    justify-content: start;
  }
  .map .map-card .box img {
    border-radius: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .why {
    margin-top: 20px;
  }
  .why__right_txt {
    right: 15px;
    max-width: 295px;
  }
  .title__light {
    font-size: 40px;
  }
  .investors__cards_item {
    padding: 20px 33px;
  }
  .swiper-1 img {
    width: 100% !important;
    height: 288px;
  }
  .interest {
    margin-top: 20px;
  }
  .interest .interest__title h2 {
    margin-bottom: 20px;
  }
  .interest__cards-1 {
    gap: 15px;
  }
  .steps {
    margin-top: 20px;
  }
}
@media screen and (max-width: 390px) {
  .hero__top_title {
    font-size: 45px;
  }
}/*# sourceMappingURL=styles.css.map *//**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}@charset "UTF-8";
.form__block {
  margin-top: 60px;
  border-radius: 30px;
  border: 1px solid var(--2, #E0E0E0);
  background: #92CDF1;
  padding: 24px 28px 36px 28px;
}
.form__block h2 {
  text-align: start;
  margin-bottom: 0;
}
.form__block .form__text {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 19.2px */
  margin: 16px 0;
}
.form__block .form__container {
  display: flex;
  gap: 20px;
}
.form__block .form__container .form__img {
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
}
.form__block .form-row {
  display: flex;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  flex: 1;
}
.form__block .form-row > * {
  width: 100%;
  min-width: 0;
}
.form__block .form-row .form-row > * {
  width: 100%;
}
.form__block .form-row .pill, .form__block .form-row .phone-wrapper {
  background-color: transparent;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #42465f;
  outline: none;
  border-radius: 30px;
  border: 1px solid #3D3D55;
  max-height: 39px;
  width: 100%;
  box-sizing: border-box;
}
.form__block .form-row .pill::-moz-placeholder, .form__block .form-row .phone-wrapper::-moz-placeholder {
  color: #42465f;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
}
.form__block .form-row .pill::placeholder, .form__block .form-row .phone-wrapper::placeholder {
  color: #42465f;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
}
.form__block .form-row .phone-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.form__block .form-row .phone-wrapper .flag {
  margin-right: 8px;
  font-size: 18px;
}
.form__block .form-row .phone-wrapper input {
  border: none;
  background: transparent;
  font: inherit;
  width: 100%;
  color: #42465f;
}
.form__block .form-row .phone-wrapper input::-moz-placeholder {
  color: #42465f;
}
.form__block .form-row .phone-wrapper input::placeholder {
  color: #42465f;
}
.form__block .form-row .iti__selected-flag {
  background: transparent;
}
.form__block .small__text {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 90;
}
.popup__content {
  width: 375px;
  border-radius: 30px;
  border: 1px solid #8ABCDA;
  background: #E6F8FF;
  padding: 30px;
}
.popup__content_header {
  display: flex;
  justify-content: end;
}
.popup__content_header img {
  cursor: pointer;
}
.popup__content h2 {
  color: #3D3D55;
  font-family: Arsenal, "Arsenal Fallback", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 10px;
}
.popup__content p {
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 25px;
}
.popup__content .popup__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
.popup__content .popup__form .fake-radio {
  top: 0;
}
.popup__content .popup__form .contact-method__item {
  font-family: Geologica, "Geologica Fallback", sans-serif;
}
.popup__content .popup__form .iti--separate-dial-code .iti__selected-flag {
  background: transparent;
  font-family: Geologica, "Geologica Fallback", sans-serif;
}
.popup__content .pill, .popup__content .phone-wrapper, .popup__content .form__block .form-row .phone-wrapper, .form__block .form-row .popup__content .phone-wrapper {
  background-color: transparent;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #42465f;
  outline: none;
  border-radius: 30px;
  border: 1px solid #3D3D55;
  max-height: 39px;
  width: 100%;
  box-sizing: border-box;
}
.popup__content .pill::-moz-placeholder, .popup__content .phone-wrapper::-moz-placeholder, .popup__content .form__block .form-row .phone-wrapper::-moz-placeholder, .form__block .form-row .popup__content .phone-wrapper::-moz-placeholder {
  color: #42465f;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
}
.popup__content .pill::placeholder, .popup__content .phone-wrapper::placeholder, .popup__content .form__block .form-row .phone-wrapper::placeholder, .form__block .form-row .popup__content .phone-wrapper::placeholder {
  color: #42465f;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 16px;
}
.popup__content .phone-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.popup__content .phone-wrapper .flag {
  margin-right: 8px;
  font-size: 18px;
}
.popup__content .phone-wrapper input {
  border: none;
  background: transparent;
  font: inherit;
  width: 100%;
  color: #42465f;
}
.popup__content .phone-wrapper input::-moz-placeholder {
  color: #42465f;
}
.popup__content .phone-wrapper input::placeholder {
  color: #42465f;
}
.popup__content .iti__selected-flag {
  background: transparent;
}
.popup span {
  display: block;
  margin-top: 10px;
  color: #3D3D55;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.show {
  display: flex;
}

.phone-wrapper .iti {
  width: 100%;
}
.phone-wrapper .iti__flag-container {
  background: transparent;
}
.phone-wrapper input[type=tel] {
  font: inherit;
  color: #42465f;
  font-family: Geologica, "Geologica Fallback", sans-serif;
  background: transparent;
  border: none;
  width: 100%;
  padding-left: 0;
}
.phone-wrapper .iti__selected-dial-code {
  font-family: Geologica, "Geologica Fallback", sans-serif;
}

.iti {
  width: 100%;
}

.tg-pill {
  margin-top: 15px;
}

.contact-method__item {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* заполнение кружка, если выбрано */
  /* небольшой отступ от кружка до подписи */
}
.contact-method__item input {
  display: none;
}
.contact-method__item .fake-radio {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #42465f;
  border-radius: 50%;
}
.contact-method__item .fake-radio:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px;
  border-radius: 50%;
  background: #42465f;
  opacity: 0;
}
.contact-method__item input:checked + .fake-radio:after {
  opacity: 1;
}
.contact-method__item {
  padding-left: 28px;
  margin-right: 24px;
}

.method[data-disabled] {
  opacity: 0.4;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .form__container form {
    gap: 15px;
  }
  .form__container img {
    display: none;
  }
}/*# sourceMappingURL=form.css.map */