.about__flex {
  display: flex;
  gap: 20px;
}

.about__card {
  padding: 30px 30px 35px 25px;
  border-radius: 40px;
  border: 1px solid var(--5, #e9e3d9);
  width: 100%;
}

.about__card svg {
  margin-bottom: 40px;
}

.about__card h2 {
  color: var(--1, #302b44);
  font-family: "PT Astra Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 30px;
}

.about__card ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__card li {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  padding-left: 23px;
}

.about__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: #fd8280;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .about svg {
    margin-bottom: 30px;
  }

  .about__flex {
    flex-direction: column;
  }

  .about__card {
    padding: 20px 20px 25px;
    border-radius: 20px;
  }
}

.age h2 {
  max-width: 506px;
  margin: 0 auto 50px;
}

.age__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 35px;
}

.age .age__btn--active {
  background-color: var(--2);
  color: #fff;
}

.age .swiper-slide {
  max-width: 740px;
}

.age__card {
  max-width: 740px;
  width: 100%;
  border-radius: 40px;
  background: #fcf5eb;
}

.age__card p {
  color: var(--1, #302b44);
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--2);
  margin-bottom: 25px;
}

.age__card-top {
  background-color: var(--2);
  border-radius: 40px 40px 0 0;
  padding: 31px 0;
  margin-bottom: 25px;
}

.age__card-top h3 {
  color: #fff;
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.age__card-bottom {
  padding: 0 30px 30px;
}

.age__flex {
  display: flex;
  gap: 20px;
}

.age__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 50%;
}

.age__list li {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  position: relative;
  padding-left: 23px;
}

.age__list li::before {
  content: "";
  background-image: url(../img/svg/star.svg);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  left: 0;
  top: 6px;
  width: 10px;
  height: 8px;
}

.age__btn-2 {
  display: none;
}

@media (max-width: 768px) {
  .age .swiper-slide {
    max-width: calc(100% - 80px);
  }

  .age .age__card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .age__swiper {
    margin-bottom: 40px;
  }

  .age .swiper-slide {
    max-width: calc(100% - 50px);
  }

  .age h2 {
    margin: 0 auto 40px;
  }

  .age__btns {
    gap: 9px;
    margin-bottom: 30px;
  }

  .age__btns button {
    padding: 16px 15px;
  }

  .age__card {
    border-radius: 20px;
  }

  .age__card p {
    color: var(--1, #302b44);
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
  }

  .age__card .age__card-top {
    border-radius: 20px 20px 0 0;
  }

  .age__card .age__card-top h3 {
    color: #fff;
    text-align: center;
    font-family: "PT Astra Serif";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
  }

  .age__card .age__card-top h3 span {
    display: block;
    text-align: center;
    font-family: "PT Astra Serif";
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
  }

  .age__flex {
    flex-direction: column;
  }

  .age__list {
    font-size: 13px;
    gap: 15px;
    line-height: 135%;
    max-width: unset;
  }

  .age__card-bottom {
    padding: 0 18.5px 30px;
  }

  .age__btn-2 {
    display: block;
    max-width: calc(100% - 50px);
    margin: 0 auto;
    width: 100%;
  }
}

.banner {
  position: relative;
}

.banner__block {
  border-radius: 40px;
  background: #fcf5eb;
  padding: 90px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.banner__block button,
.banner__block h2 {
  position: relative;
  z-index: 5;
}

.banner__icons {
  position: absolute;
  top: 5px;
  left: calc(50% - 34px);
  transform: translateX(-50%);
  z-index: 1;
}

.banner__btn-text-576 {
  display: none;
}

.banner-2 h2 {
  max-width: 598px;
}

.banner-2 h2 span {
  color: var(--2);
}

.banner-2 .banner__icons {
  top: -10px;
}

.banner-2 .banner__line {
  position: absolute;
  top: -285px;
  left: -20px;
}

.banner-2 .banner__icons-576 {
  display: none;
}

.banner-3 h2 {
  max-width: 707px;
}

.banner-3 h2 span {
  color: var(--2);
}

.banner-3 .banner__icons {
  position: absolute;
  top: -371px;
  left: calc(50% - 142px);
  transform: translateX(-50%);
  z-index: 1;
}

.banner-3 .banner__icons-576 {
  display: none;
}

@media (max-width: 1240px) {
  .banner__icons {
    max-width: 80%;
  }

  .banner-3 .banner__icons {
    left: calc(50% - 34px);
  }
}

@media (max-width: 992px) {
  .banner-2 .banner__line {
    display: none;
  }
}

@media (max-width: 576px) {
  .banner h2 span {
    color: var(--2);
  }

  .banner__block {
    padding: 25px 20px;
  }

  .banner__icons {
    display: none;
  }

  .banner__btn {
    width: 100%;
  }

  .banner__btn-text {
    display: none;
  }

  .banner__btn-text-576 {
    display: block;
  }

  .banner-2 .banner__block {
    padding: 95px 20px;
  }

  .banner-2 h2 {
    font-family: "Open Sans" !important;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 135% !important;
  }

  .banner-2 h2 span {
    font-family: "PT Astra Serif";
    display: block;
    font-size: 30px;
    line-height: 110%;
    color: var(--1);
    margin-bottom: 20px;
  }

  .banner-2 .banner__line {
    display: none;
  }

  .banner-2 .banner__icons-576 {
    display: block;
    position: absolute;
    top: -136px;
    left: 50%;
    transform: translateX(-50%);
  }

  .banner-3 h2 {
    color: var(--1, #302b44);
    text-align: center;
    font-family: "Open Sans" !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 135% !important;
  }

  .banner-3 h2 span {
    display: block;
    color: var(--1, #302b44);
    text-align: center;
    font-family: "PT Astra Serif";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 20px;
  }

  .banner-3 .banner__block {
    padding: 95px 20px;
  }

  .banner-3 .banner__icons-576 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.branch h2 {
  margin-bottom: 20px;
}

.branch span {
  display: block;
  color: var(--1, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 50px;
}

.branch__flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.branch__card {
  border-radius: 40px;
  background: #fcf5eb;
  padding: 30px 20px;
}

.branch__card h3 {
  color: var(--1, #302b44);
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 10px;
}

.branch__card span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--1, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 30px;
}

.branch__card img {
  display: block;
  margin: 0 auto 50px;
  border-radius: 20px;
  width: 100%;
}

.branch .blue-btn {
  width: 100%;
}

@media (max-width: 992px) {
  .branch__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .branch__card {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .branch span {
    font-size: 16px;
    line-height: 135%;
    margin-bottom: 40px;
  }

  .branch__card {
    border-radius: 20px;
    padding: 25px 20px;
  }

  .branch__card span {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 30px;
  }

  .branch__card img {
    max-width: 486px;
    width: 100%;
    margin-bottom: 40px;
    min-height: 190px;
    height: 100%;
  }
}

.concept__flex {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.concept__flex-2 {
  padding: 0 40px;
}

@media (max-width: 576px) {
  .concept__flex-2 {
    padding: 0 25px;
  }
}

.concept__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 726px;
  width: 100%;
  margin: 0 auto;
}

.concept__item {
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.concept__item span {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.concept__btn {
  max-width: 210px;
  width: 100%;
  margin: 0 auto;
}

.concept__block-576 .concept__flex {
  gap: 65px;
}

.concept__block-576 .concept__img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 90px;
}

.concept-modal {
border: none;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    position: fixed;
    top: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.concept-modal__body {
   position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 1460px;
        width: 90%;
        background-color: #fff;
        padding: 114px 60px 46px 74px;
            max-height: 90vh;
            overflow: auto;
                border-radius: 40px;
}

.concept-modal__close {
  position: absolute;
  right: 42px;
  top: 37px;
}

.concept-modal__close svg {
  width: 26px;
  height: 26px;
}

.concept-modal h2 {
  color: var(--1, #302b44);
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  max-width: 659px;
  margin: 0 auto 70px;
}

.concept-modal ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin-bottom: 80px;
}

.concept-modal ul li {
  display: flex;
  align-items: flex-start;
  max-width: 536px;
}

.concept-modal ul li svg {
  flex-shrink: 0;
}

.concept-modal ul li h3 {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 6px;
}

.concept-modal ul li p {
  color: #cbbba0;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 768px) {
  .concept-modal {
     position: fixed;
        bottom: 0;
        top: unset;
        margin: 0 auto;
        width: 100%;
        overflow: visible;
  }
   .concept-modal__body {
            border-radius: 30px 30px 0 0;
            width: 100%;
            top: unset;
            bottom: 0;
            left: 0;
            transform: unset;
        }
  .concept-modal__close {
    top: -50px;
    right: 15px;
  }

  .concept-modal__close svg path {
    stroke: #fff;
  }

  .concept-modal__close svg {
    width: 23px;
    height: 23px;
  }

  .concept-modal ul {
    display: flex;
    flex-direction: column;
    margin-bottom: unset;
    gap: 20px;
  }

  .concept-modal ul li {
    max-width: unset;
  }

  .concept-modal ul li svg {
    width: 43px;
    height: 30px;
  }

  .concept-modal ul li h3 {
    font-size: 14px;
  }

  .concept-modal ul li p {
    font-size: 11px;
  }

  .concept-modal .banner {
    display: none;
  }

  .concept-modal__body {
    padding: 40px 15px;
  }

  .concept-modal h2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .concept {
    padding-top: 0;
  }

  .concept__flex {
    gap: 40px;
  }

  .concept__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: unset;
  }

  .concept__item {
    max-width: unset;
  }

  .concept__item span {
    font-size: 16px;
    line-height: 135%;
  }

  .concept__btn {
    max-width: unset;
  }

  .concept .concept__flex-2 h2 {
    text-align: left;
  }

  .concept__block-576 .concept__flex {
    gap: 40px;
  }

  .concept__block-576 .concept__img {
    margin-bottom: 40px;
  }
}

.contacts h2 {
  text-align: left !important;
}

.contacts__flex {
  display: flex;
  align-items: stretch;

  gap: 20px;
}

.contacts__map {
  position: relative;
  max-width: 566px;
  border-radius: 32px;
  width: 100%;
  height: 340px;
}

.contacts__texts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.contacts__texts h2 {
  text-align: left;
}

.contacts__block button {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px;
  color: var(--Primary-3, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 10px;
}

.contacts__flex a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--Primary-3, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.contacts__block svg {
  flex-shrink: 0;
}

.custom-icon {
  width: 43px;
}

.custom-icon img {
  width: 43px;
  height: 53.5px;
}

@media (max-width: 992px) {
  .contacts__flex {
    flex-direction: column-reverse;
  }

  .contacts__map {
    max-width: unset;
  }
}

@media (max-width: 576px) {
  .contacts__flex {
    gap: 40px;
  }

  .contacts__texts {
    gap: 30px;
  }

  .contacts__block button {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 15px;
  }

  .contacts__flex a {
    font-size: 16px;
    line-height: 140%;
  }

  .contacts__map {
    height: 584px;
    border-radius: 32px;
  }
}

.ymaps-2-1-79-inner-panes {
  border-radius: 32px;
}

.ymaps-2-1-79-copyright__wrap {
  display: none !important;
}

.difference h2 {
  margin-bottom: 50px;
}

.difference__flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.difference__flex ul {
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.difference__flex ul li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: var(--Primary-3, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.difference__flex ul li svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .difference h2 {
    margin: 0 auto 40px;
  }

  .difference__flex {
    flex-direction: column;
    gap: 20px;
  }

  .difference__flex ul {
    max-width: unset;
    gap: 20px;
  }

  .difference__flex ul li {
    font-size: 16px;
    line-height: 135%;
  }
}

.excursion__block {
  position: relative;
  border-radius: 40px;
  border: 1px solid var(--5, #e9e3d9);
  padding: 50px 0 20px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.excursion__texts {
  max-width: 473px;
}

.excursion__texts h2 {
  text-align: left !important;
  margin-bottom: 30px;
}

.excursion__texts p {
  color: var(--Primary-3, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 50px;
}

.excursion .pink-btn {
  max-width: 282px;
}

.excursion__icon {
  position: relative;
  right: -20px;
  flex-shrink: 0;
  width: 470.283px;
  height: 412px;
}

.excursion__stars {
  position: absolute;
  right: -58px;
}

@media (max-width: 992px) {
  .excursion__block {
    padding: 50px 0 20px 20px;
  }

  .excursion__icon {
    flex-shrink: 1;
  }

  .excursion__stars {
    right: 0;
  }
}

@media (max-width: 768px) {
  .excursion__icon {
    position: absolute;
    top: 0;
    max-width: 124px;
    width: 100%;
    height: 101px;
    flex-shrink: 1;
  }
}

@media (max-width: 576px) {
  .excursion__block {
    padding: 20px;
    border-radius: 20px;
  }

  .excursion__texts h2 {
    margin-bottom: 20px;
  }

  .excursion__texts p {
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 40px;
  }

  .excursion__stars {
    display: none;
  }

  .excursion__icon {
    top: -20px;
  }

  .excursion .pink-btn {
    width: 100%;
    max-width: unset;
  }
}

.faq h2 {
  margin-bottom: 50px;
}

.faq__acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  padding-top: 30px;
  cursor: pointer;
}

.faq__acc span {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.faq__acc svg {
  flex-shrink: 0;
}

.faq .text-wrapper {
  border-bottom: 1px solid #e9e3d9;
}

.faq p {
  color: #302b44;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-bottom: 20px;
  opacity: 0.6;
}

.faq ul {
  padding-bottom: 20px;
}

.faq li {
  color: #302b44;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #302b44;
  opacity: 0.6;
  border-radius: 20px;
}

@media (max-width: 576px) {
  .faq h2 {
    margin-bottom: 30px;
  }

  .faq__acc span {
    font-size: 14px;
    line-height: 135%;
  }

  .faq p {
    font-size: 12px;
    line-height: 150%;
  }
}

@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url(../fonts/OpenSans-Regular.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 500;
  src: url(../fonts/OpenSans-Medium.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url(../fonts/OpenSans-SemiBold.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Astra Serif";
  font-weight: 400;
  src: url(../fonts/PT-Astra-Serif_Regular.woff2) format("woff2");
  font-style: normal;
  font-display: swap;
}

.footer {
  padding: 100px 0 20px;
  background: linear-gradient(0deg, #25222c 0, #25222c 100%), #25222c;
}

.footer__flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.footer__contacts span {
  display: none;
}

.footer__contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}

.footer__contacts a svg {
  fill: var(--2);
}

.footer__contacts a svg path {
  stroke: transparent;
}

.footer__socials {
  gap: 20px !important;
  justify-content: end;
}

.footer__socials .socials__icon {
  fill: #fff;
}

.footer__flex-2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.footer__flex-2 nav {
  width: 50%;
}

.footer__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 546px;
  width: 100%;
  gap: 20px 20px;
}

.footer__list a {
  color: #fff;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.footer__block strong {
  display: block;
  color: #fff;
  text-align: right;
  font-family: "PT Astra Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 20px;
}

.footer__flex-4 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__block-2 {
  max-width: 156px;
}

.footer__block-2 span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  text-align: right;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.footer__block-2 button {
  color: #fff;
  display: block;
  margin-left: auto;
  margin-bottom: 16px;
}

.footer__block-3 {
  max-width: 131px;
}

.footer__flex-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__flex-3 a,
.footer__flex-3 span {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 768px) {
  .footer__flex-2 {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }

  .footer__flex-2 nav {
    width: 100%;
    margin: 0 auto;
  }

  .footer__list {
    justify-items: center;
    margin: 0 auto;
  }

  .footer__block {
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 80px 0 40px;
  }

  .footer__list a {
    font-size: 14px;
    line-height: 140%;
  }

  .footer__logo {
    display: none;
  }

  .footer__flex-576 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__flex {
    order: 3;
    width: 100%;
    margin-bottom: unset;
  }

  .footer__flex-2 {
    gap: 50px;
    padding-bottom: unset;
    border-bottom: unset;
    margin-bottom: 50px;
  }

  .footer__block strong {
    text-align: center;
  }

  .footer__block-2 {
    max-width: 50%;
    width: 100%;
  }

  .footer__block-2 span {
    text-align: center;
  }

  .footer__block-2 button {
    width: 100%;
  }

  .footer__flex-4 {
    gap: 15px;
    align-items: flex-start;
  }

  .footer__block {
    margin: 0 auto;
  }

  .footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 20px;
    width: 100%;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  }

  .footer__contacts span {
    display: block;
    color: #fff;
    text-align: center;
    font-family: "PT Astra Serif";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
  }

  .footer__contacts a svg {
    width: 16px;
    height: 16px;
  }

  .footer__contacts .socials__link {
    width: 48px;
    height: 48px;
  }

  .footer__contacts .socials__link svg {
    width: 20px;
    height: 20px;
  }

  .footer__flex-3 a,
  .footer__flex-3 span {
    font-size: 10px;
    line-height: 140%;
  }

  .footer__flex-3 a {
    text-align: right;
  }
}

.freeday__flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.freeday__line {
  display: flex;
  align-items: center;
  height: 4px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.freeday__line .active {
  width: 100%;
  height: 4px;
  background-color: var(--2);
}

.freeday__line .disabled {
  width: 100%;
  height: 4px;
  background-color: #e9e3d9;
}

.freeday__flex-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.freeday__flex-2 span {
  color: var(--2, #fd8280);
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.freeday__flex-2 .disabled {
  color: #e9e3d9;
}

.freeday__flex-3 {
  display: flex;
  gap: 20px;
}

.freeday__card {
  border-radius: 40px;
  border: 1px solid #e9e3d9;
  background: var(--White, #fff);
  width: 100%;
}

.freeday__card .freeday__card-top {
  background-color: var(--4);
  padding: 44px 0 27px;
  border-radius: 40px 40px 0 0;
}

.freeday__card .freeday__card-top span {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.freeday__card ul {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.freeday__card li {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  padding-left: 23px;
}

.freeday__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background-color: var(--4);
  border-radius: 50%;
}

.freeday__card-2 .freeday__card-top,
.freeday__card-2 li::before {
  background-color: var(--2);
}

.freeday h2 span {
  color: var(--2);
}

.freeday__btn {
  max-width: 264px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .freeday__flex {
    gap: 40px;
  }

  .freeday__flex-2 span {
    font-size: 18px;
    line-height: 120%;
  }

  .freeday__flex-3 {
    flex-direction: column;
  }

  .freeday__card {
    border-radius: 30px;
  }

  .freeday__card ul {
    padding: 25px 20px;
    gap: 15px;
  }

  .freeday__card .freeday__card-top {
    padding: 25px 0;
    border-radius: 30px 30px 0 0;
  }

  .freeday__card .freeday__card-top span {
    font-size: 25px;
    line-height: 110%;
  }
}

@media (max-width: 576px) {
  .freeday__btn {
    max-width: unset;
  }
}

.geo-modal {
  border: unset;
  width: 100%;
  display: none;
  position: fixed;
  overflow: auto;
  top: 0;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
}

.geo-modal>div {
  position: fixed;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  max-height: 90vh;
  overflow: auto;
  padding: 36px 52px 52px;
  max-width: 1402px;
  width: 90%;
  border-radius: 40px;
}

.geo-modal h2 {
  color: var(--b, #30b2b7);
  font-family: "PT Astra Serif";
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.geo-modal .geo-modal__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.geo-modal .geo-modal__flex-2 {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 46px;
}

.geo-modal .geo-modal__flex-2 ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.geo-modal .geo-modal__flex-2 li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.geo-modal .geo-modal__flex-2 li strong {
  color: #000;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.geo-modal .geo-modal__flex-2 li span {
  color: #000;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.geo-modal .geo-modal__flex-2 li a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.geo-modal .geo-modal__flex-2 li a strong {
  padding-left: 12px;
}

.geo-modal .geo-modal__swiper {
  max-width: 629px;
  width: 100%;
  margin: 0;
  border-radius: 30px;
}

.geo-modal .swiper-slide {
  max-width: 629px;
  width: 100%;
}

.geo-modal .swiper-slide img {
  width: 100%;
  height: 419px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.geo-modal .geo-modal__swiper-btns {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  z-index: 5;
}

.geo-modal .geo-modal__flex-3 {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 35px;
}

.geo-modal .geo-modal__flex-4 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.geo-modal .geo-modal__btn {
  width: 100%;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.geo-modal .geo-modal__pagination,
.geo-modal .swiper-horizontal>.swiper-pagination-bullets,
.geo-modal .swiper-pagination-bullets.swiper-pagination-horizontal,
.geo-modal .swiper-pagination-custom,
.geo-modal .swiper-pagination-fraction {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 123px !important;
}

.geo-modal .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.geo-modal .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.geo-modal .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: unset;
  margin: 0 5px !important;
}

.geo-modal .swiper-pagination-bullet {
  background-color: #e9e3d9;
  opacity: 1;
}

.geo-modal .swiper-pagination-bullet-active {
  background-color: #fd8280;
}

.geo-modal .geo-modal__map {
  width: 100%;
  height: 363px;
}

@media (max-width: 992px) {
  .geo-modal .geo-modal__flex {
    margin-bottom: 50px;
  }

  .geo-modal .geo-modal__flex-2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 34px;
  }

  .geo-modal .geo-modal__swiper {
    margin: 0 auto;
  }

  .geo-modal .geo-modal__flex-3 {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .geo-modal {
    width: 100%;
    top: unset;
    bottom: 0;
  }

  .geo-modal>div {
    border-radius: 0;
    padding: 28px 30px 40px;
    top: unset;
    bottom: 0;
    width: 100%;
    transform: unset;
    left: 0;
  }

  .geo-modal h2 {
    font-size: 32px;
  }

  .geo-modal .geo-modal__flex-2 {
    gap: 35px;
  }

  .geo-modal .geo-modal__flex-2 li span,
  .geo-modal .geo-modal__flex-2 li strong {
    font-size: 16px;
  }

  .geo-modal .geo-modal__flex-2 li a {
    gap: 20px;
  }

  .geo-modal .swiper-slide {
    margin-bottom: 10px;
  }

  .geo-modal .swiper-slide img {
    height: 205px;
  }

  .geo-modal .geo-modal__swiper-btns {
    position: static;
    transform: unset;
    gap: 13px;
    justify-content: center;
    width: 100%;
  }

  .geo-modal .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .geo-modal .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    bottom: 65px;
  }

  .geo-modal .geo-modal__btn {
    font-size: 16px;
    padding: 13px 14px;
  }

  .geo-modal .geo-modal__map {
    height: 183px;
  }
}

html {
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: inherit;
}

.body {
  margin: 0;
}

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

:focus-visible {
  outline: 0;
  text-decoration: underline;
}

h1,
h2,
h3,
p {
  margin: 0;
}

li {
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: 1188px;
  padding: 0 40px;
  margin-right: auto;
  margin-left: auto;
}

.relative {
  position: relative;
}

.h2-normalize h2 {
  color: var(--1, #302b44);
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.main {
  overflow: hidden;
}

.section-padding {
  padding: 50px 0;
}

.trans-btn {
  color: var(--1, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 103%;
  padding: 15px 34px;
  border-radius: 57px;
  border: 1px solid #fd8280;
  transition: background-color 0.25s, color 0.25s;
}

.trans-btn:hover {
  background-color: var(--2);
  color: var(--White, #fff);
}

.pink-btn {
  color: var(--White, #fff);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 12px 34px;
  border-radius: 100px;
  background: var(--2, #fd8280);
  box-shadow: 0 4px 10px 0 rgba(253, 130, 128, 0.3);
  border: 1px solid var(--2);
  transition: background-color 0.25s, color 0.25s;
}

.pink-btn:hover {
  background-color: transparent;
  color: var(--2);
}

.blue-btn {
  color: var(--White, #fff);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 13px 35px;
  border-radius: 100px;
  background: var(--4, #30b2b7);
  box-shadow: 0 4px 10px 0 rgba(48, 178, 183, 0.3);
  transition: background-color 0.25s, color 0.25s;
}

.blue-btn:hover {
  background-color: transparent;
  color: var(--4);
}

.content_acc {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}

.rotate {
  transform: rotate(45deg);
}

.content_acc.open {
  grid-template-rows: 1fr;
}

.acc svg {
  transition: transform 0.3s;
}

.text-wrapper {
  min-height: 0;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials__link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  background: var(--2, #fd8280);
  border: 1px solid var(--2);
  width: 36px;
  height: 36px;
  transition: background 0.25s;
}

.socials__icon {
  fill: #fff;
  transition: fill 0.25s;
}

.socials__link:hover {
  background-color: transparent;
}

.socials__link:hover .socials__icon {
  fill: var(--2);
}

@media (max-width: 576px) {
  .container {
    padding: 0 25px;
  }

  .h2-normalize h2 {
    font-size: 30px;
    line-height: 110%;
  }

  .section-padding {
    padding: 40px 0;
  }

  .section__flex {
    display: flex;
    flex-direction: column-reverse;
  }
}

dialog {
  animation: 0.5s forwards close;
}

dialog[open] {
  animation: 0.5s forwards open;
}

@keyframes open {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes close {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.header {
  padding-top: 19px;
  padding-bottom: 33px;
  position: relative;
  z-index: 2;
}

.header__top {
  margin-bottom: 9px;
}

.header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__metro {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__metro span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--1, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.header .menu__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header .menu__link {
  color: var(--Primary-3, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  transition: color 0.25s;
}

.header .menu__link:hover {
  color: var(--4);
}

.header__bottom {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  position: sticky;
  left: 50%;
  transform: translate(-50%, 8px);
}

.header__flex-2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__btn {
  max-width: -moz-max-content;
  max-width: max-content;
}

.header .logo__icon-medium,
.header .logo__icon-small,
.header .menu__item-998,
.header__burger-btn,
.header__contact,
.header__list-992,
.header__projects {
  display: none;
}

@media (max-width: 992px) {
  .header {
    position: relative;
  }

  .header__bottom,
  .header__top {
    display: contents;
  }

  .header__metro {
    display: none;
  }

  .header__flex {
    display: contents;
  }

  .header__union {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: end;
    gap: 30px;
  }

  .header .logo__icon {
    display: none;
  }

  .header__logo {
    transform: unset;
    position: absolute;
    left: 0;
  }

  .header .logo__icon-small {
    display: block;
  }

  .header__list {
    display: none;
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header__contact a:hover svg rect {
    fill: var(--1);
  }

  .header__contact a:hover svg path {
    fill: #fff;
  }

  .header__bottom {
    position: static;
  }

  .header .menu__item {
    display: none;
  }

  .header .menu__item-998 {
    display: block;
    justify-self: center;
  }

  .header__burger-btn {
    display: block;
    order: 4;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    z-index: 2;
  }

  .header .menu {
    position: absolute;
    left: calc(-100% - 100px);
    top: 100%;
    width: 100%;
    background-color: #fff;
    padding: 24px 0 38px;
    transition: transform 0.5s;
    box-shadow: -40px 1px 0 #fff, 40px 1px 0 #fff;
  }

  .header .menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 30px;
    gap: 20px 33px;
  }
  .header .menu__list:nth-child(1) {
    margin: 0;
  }

  .header.open .menu {
    transform: translateX(calc(100% + 100px));
  }

  .header__burger-btn span {
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--2);
    left: 5px;
    border-radius: 20px;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
  }

  .header__list-992 {
    display: flex;
    justify-content: center;
  }

  .header__burger-btn span:nth-child(1) {
    transform: translateY(-10px);
  }

  .header__burger-btn span:nth-child(3) {
    transform: translateY(10px);
  }

  .header.open .header__burger-btn span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .header.open .header__burger-btn span:nth-child(2) {
    opacity: 0;
  }

  .header.open .header__burger-btn span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .header__flex-2 {
    display: none;
  }

  .header__projects {
    display: block;
    margin-bottom: 20px;
  }

  .header__projects span {
    display: block;
    color: var(--1, #302b44);
    text-align: center;
    font-family: "PT Astra Serif";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 20px;
  }

  .header__projects .header__flex-3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .header__projects .header__flex-3 span {
    color: var(--1, #302b44);
    text-align: center;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: unset;
  }

  .header__projects .header__flex-4 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .header {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .header .logo__icon-medium {
    display: block;
  }

  .header .logo__icon-small {
    display: none;
  }

  .header .header__contact {
    gap: 6px;
  }

  .header .header__contact svg {
    width: 36px;
    height: 36px;
  }

  .header .header__union {
    gap: 20px;
    padding-top: 10px;
  }

  .header .header__burger-btn {
    width: 23px;
    height: 20px;
    top: -2px;
  }

  .header .header__burger-btn span {
    width: 23px;
    left: 0;
  }

  .header .header__burger-btn span:nth-child(1) {
    transform: translateY(-8px);
  }

  .header .header__burger-btn span:nth-child(3) {
    transform: translateY(8px);
  }

  .header .menu {
    box-shadow: -25px 1px 0 #fff, 25px 1px 0 #fff;
  }

  .header .menu__list {
    flex-direction: column;
  }

  .header .socials__link {
    width: 48px;
    height: 48px;
  }

  .header .socials__link .socials__icon_vk {
    width: 23.8px;
    height: 17.3px;
  }

  .header .socials__link .socials__icon_inst {
    width: 25px;
    height: 20px;
  }
}

.hero {
  padding-bottom: 70px;
  position: relative;
}

.hero__flex {
  display: flex;
  align-items: center;
}

.hero__flex img {
  width: 100%;
}

.hero__block {
  max-width: 470px;
  position: relative;
}

.hero__block h1 {
  color: var(--1, #302b44);
  font-family: "PT Astra Serif";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 30px;
}

.hero__block span {
  display: block;
  max-width: 281px;
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 50px;
}

.hero__block span a {
  margin-bottom: 20px;
}

.hero .pink-btn {
  margin-bottom: 20px;
}

.hero__btn {
  display: block;
  max-width: 282px;
  width: 100%;
}

.hero__line {
  position: absolute;
  /* right: 0; */
  top: -143px;
  /* top: 64px; */
  z-index: -1;
}

@media (max-width: 992px) {
  .hero__line {
    position: absolute;
    right: -138px;
    top: -59px;
    width: 900px;
    height: 500px;
    z-index: -1;
  }

  .hero__block h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero__flex {
    flex-direction: column;
  }

  .hero__block {
    max-width: unset;
  }

  .hero__block h1 {
    text-align: center;
  }

  .hero__block span {
    text-align: center;
    margin: 0 auto 50px;
  }

  .hero picture {
    width: 100%;
  }

  .hero button {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .hero .container {
    padding: unset;
  }

  .hero__block {
    max-width: 285px;
  }

  .hero__block h1 {
    font-size: 35px;
    line-height: 110%;
    margin-bottom: 20px;
  }

  .hero__block span {
    font-size: 16px;
    line-height: 135%;
    margin: 0 auto 40px;
  }

  .hero__line {
    display: none;
  }

  .hero picture {
    width: 100%;
  }

  .hero picture img {
    display: block;
    margin: 0 auto;
    max-width: 375px;
    width: 100%;
    height: 423px;
  }
}

.modal {
  background-color: transparent;
  border: unset;
  padding: 50px 32px;
}

.modal__body {
  /* max-width: 453px; */
  padding: 30px;
  border-radius: 20px;
  background: #fcf5eb;
  height: fit-content;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
}

.modal__texts {
  margin-bottom: 40px;
  text-align: center;
}

.modal__texts h2 {
  color: var(--1, #302b44);
  font-family: "PT Astra Serif";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 20px;
}

.modal__texts span {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__form label span {
  display: inline-block;
  color: #2f2b42;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 6px;
}

.modal__form label span span {
  color: #e32223;
}

.modal__form label input {
  padding-left: 20px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #d9d9d9;
  background: #fff;
  width: 100%;
  text-decoration: unset;
}

.modal__form label input::-moz-placeholder {
  color: rgba(47, 43, 66, 0.16);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 122%;
}

.modal__form label input::placeholder {
  color: rgba(47, 43, 66, 0.16);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 122%;
}

.modal__policy span {
  display: block;
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 166%;
  margin-bottom: 30px;
}

.modal__policy span a {
  color: var(--2, #fd8280);
}

.modal__select-block span {
  display: flex;
  color: #2f2b42;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 6px;
}

.modal__select-block span span {
  color: #e32223;
}

.modal__custom-select {
  position: relative;
  width: 100%;
  z-index: 10;
}

.modal__select-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-radius: 100px;
  border: 1px solid #d9d9d9;
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 20;
}

.modal__select-field span {
  color: #2f2b42;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: unset;
}

.modal__btn {
  width: 100%;
}

.modal__dropdown {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: calc(100% - 20px);
  background-color: #fff;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 30px 20px 10px;
  border-radius: 0 0 20px 20px;
  color: #2f2b42;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.open .modal__dropdown {
  display: flex;
}

.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  .modal {
    padding: 23px;
  }

  .modal__body {
    padding: 25px 20px;
  }

  .modal__close svg {
    width: 23px;
    height: 23px;
  }

  .modal__texts h2 {
    font-size: 25px;
    line-height: 110%;
  }

  .modal__texts span {
    font-size: 16px;
    line-height: 135%;
  }

  .modal__form label span {
    font-size: 14px;
    line-height: 100%;
  }

  .modal__form label input {
    height: 49px;
  }

  .modal__form label input::-moz-placeholder {
    font-size: 14px;
  }

  .modal__form label input::placeholder {
    font-size: 14px;
  }

  .modal__form span {
    font-size: 11px;
    line-height: 166%;
  }

  .modal__select-block span {
    font-size: 14px;
  }

  .modal__dropdown {
    font-size: 13px;
  }

  .modal__select-field {
    padding: 12px 20px;
  }

  .modal__select-field span {
    font-size: 13px;
  }
}

.multilang {
  padding: 205px 0 165px;
  background-image: url(../img/svg/multilang.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.multilang h2 {
  margin: 0 auto 30px;
}

.multilang span {
  display: block;
  margin: 0 auto;
  max-width: 459px;
  color: var(--1, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 768px) {
  .multilang {
    padding: 100px 0;
  }
}

@media (max-width: 576px) {
  .multilang {
    padding: 40px 0;
    background-image: unset;
  }

  .multilang h2 {
    margin-bottom: 20px;
  }

  .multilang span {
    font-size: 16px;
    line-height: 135%;
  }
}

.numbers__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.numbers__col {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.numbers__col strong {
  color: var(--4, #30b2b7);
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
}

.numbers__col span {
  color: var(--Primary-3, #302b44);
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

@media (max-width: 992px) {
  .numbers__flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
  }

  .header.fixed .pre-header {
    display: contents !important;
  }
}

@media (max-width: 576px) {
  .numbers__flex {
    gap: 40px;
  }

  .numbers__col {
    gap: 12px;
  }

  .numbers__col strong {
    font-size: 43px;
    line-height: 100%;
  }

  .numbers__col span {
    font-size: 16px;
    line-height: 135%;
  }

  .numbers__col:nth-child(3) {
    order: 2;
  }

  .numbers__col:nth-child(2) {
    order: 3;
  }

  .numbers__col:nth-child(4) {
    order: 4;
  }
}

.principles h2 {
  margin-bottom: 50px;
}

.principles__flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.principles__list {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.principles__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.principles__item h3 {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 6px;
}

.principles__item span {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.principles__item::before {
  content: "";
  display: block;
  background-image: url(../img/svg/principles.svg);
  background-repeat: no-repeat;
  width: 31px;
  height: 35px;
  background-size: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .principles__flex {
    flex-direction: column;
  }

  .principles__list {
    max-width: unset;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .principles .principles__item h3 {
    font-size: 16px;
    line-height: 135%;
  }

  .principles .principles__item span {
    font-size: 14px;
    line-height: 135%;
  }
}

.priorites {
  padding-top: 90px;
}

.priorites h2 {
  margin: 0 auto 50px;
}

.priorites .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.priorites .swiper-slide {
  max-width: 356px;
  display: contents;
}

.priorites__btns {
  display: none;
}

.priorites__card {
  max-width: 356px;
  width: 100%;
  padding: 30px 30px 35px;
  border-radius: 40px;
  border: 1px solid #e9e3d9;
  background: #fff;
}

.priorites__card h3 {
  max-width: 60%;
  color: #302b44;
  font-family: "PT Astra Serif";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  margin-bottom: 30px;
}

.priorites__card ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.priorites__card ul li {
  color: var(--1, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  padding-left: 23px;
}

.priorites__card ul li::before {
  content: "";
  background-image: url(../img/svg/gal.svg);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  left: 0;
  top: 6px;
  width: 16px;
  height: 12px;
}

@media (max-width: 992px) {
  .priorites {
    padding-top: 40px;
  }

  .priorites h2 {
    margin: 0 auto 40px;
  }

  .priorites .swiper-wrapper {
    gap: unset;
  }

  .priorites .swiper-slide {
    display: block;
    max-width: 356px;
  }

  .priorites__card {
    max-width: 292px;
    width: 100%;
  }

  .priorites__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .priorites__btns .priorites__btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e3d9;
    border-radius: 100px;
    background-color: transparent;
    transition: background-color 0.25s;
  }

  .priorites__btns .priorites__btn:active {
    background-color: var(--4);
  }

  .priorites__btns svg path {
    transition: stroke 0.25s;
  }

  .priorites__btns .priorites__btn:active svg path {
    stroke: #fff;
  }

  .priorites__btns .priorites-next {
    transform: rotate(180deg);
  }
}

@media (max-width: 576px) {
  .priorites .swiper-slide {
    max-width: unset;
  }

  .priorites__card {
    max-width: unset;
    width: calc(100% - 42px);
    padding: 25px 20px;
  }

  .priorites__card h3 {
    font-size: 26px;
    line-height: 105%;
  }

  .priorites__card ul {
    gap: 15px;
  }

  .priorites__card ul li {
    font-size: 13px;
    line-height: 156%;
  }
}

.reviews__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.reviews__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reviews__btns .reviews__btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9e3d9;
  border-radius: 100px;
  background-color: transparent;
  transition: background-color 0.25s;
}

.reviews__btns .reviews__btn:hover {
  background-color: var(--4);
}

.reviews__btns svg path {
  transition: stroke 0.25s;
}

.reviews__btns .reviews__btn:hover svg path {
  stroke: #fff;
}

.reviews__btns .reviews-next {
  transform: rotate(180deg);
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.reviews__rating strong {
  color: var(--Primary-3, #302b44);
  font-family: "PT Astra Serif";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews__rating strong span {
  color: var(--Primary-3, #302b44);
  font-family: "PT Astra Serif";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
}

.reviews__rating span {
  color: #adadad;
  font-family: "PT Astra Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
}

.reviews .swiper {
  overflow: visible;
}

.reviews .swiper-slide {
  max-width: 353px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: unset;
}

.reviews__card {
  border-radius: 34px;
  border: 1px solid #9b4392;
  background: #fff;
  padding: 30px;
  max-width: 291px;
}

.reviews__card p {
  color: var(--Primary-3, #302b44);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 156%;
}

.reviews__user {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.reviews__avatar {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--3, #fff);
  font-family: "PT Astra Serif";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  border-radius: 100px;
  flex-shrink: 0;
}

.reviews__name-date {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews__name {
  color: #302b44;
  font-family: "PT Astra Serif";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  white-space: nowrap;
}

.reviews__date {
  color: #adadad;
  font-family: "PT Astra Serif";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
}

.reviews__stars {
  display: flex;
  align-items: center;
}

.reviews__stars svg {
  width: 24px;
  height: 24px;
}

.reviews .swiper-slide:nth-child(1) .reviews__avatar {
  background-color: #fd8280;
}

.reviews .swiper-slide:nth-child(2) .reviews__avatar {
  background-color: #30b2b7;
}

.reviews .swiper-slide:nth-child(3) .reviews__avatar {
  background-color: #9b4392;
}

.reviews .swiper-slide:nth-child(4) .reviews__avatar,
.reviews .swiper-slide:nth-child(5) .reviews__avatar {
  background-color: #fd8280;
}

@media (max-width: 768px) {
  .reviews__flex {
    display: contents;
  }

  .reviews__flex-768 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .reviews__btns {
    order: 3;
    margin-bottom: 20px;
  }

  .reviews__rating {
    margin-bottom: 20px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .reviews .reviews__rating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-self: center;
  }

  .reviews .reviews__rating strong {
    grid-column: span 2;
    justify-self: center;
    font-size: 20px;
    line-height: 105%;
  }

  .reviews .reviews__rating strong svg {
    width: 20px;
    height: 20px;
  }

  .reviews .reviews__rating span {
    font-size: 16px;
    line-height: 130%;
  }

  .reviews .swiper-slide {
    max-width: unset;
  }

  .reviews .reviews__card {
    padding: 25px 20px;
    border-radius: 34px;
    background: #fcf5eb;
    border: unset;
    max-width: unset;
  }

  .reviews .reviews__card p {
    font-size: 13px;
    line-height: 156%;
  }
}

.steps h2 {
  max-width: 510px;
  margin: 0 auto 50px;
}

.steps h2 span {
  color: var(--4);
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  counter-reset: step;
  align-items: stretch;
  gap: 20px;
}

.steps__item {
  counter-increment: step;
  position: relative;
  border-radius: 40px;
  border: 1px solid var(--4, #30b2b7);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 20px;
}

.steps__item h3 {
  max-width: 281px;
  margin: 0 auto;
  color: var(--1, #302b44);
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.steps__item::before {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  background-color: var(--4);
  color: #fff;
  text-align: center;
  font-family: "PT Astra Serif";
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  content: "0"counter(step);
}

@media (max-width: 992px) {
  .steps__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .steps h2 {
    margin: 0 auto 40px;
  }

  .steps__list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }

  .steps__item {
    border-radius: 30px;
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("dat a: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-navigation-size: 44px;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function,
      initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.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 {
  /* display: flex;
  align-items: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  max-height: 740px; */
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media screen and (max-width: 780px) {
  .swiper-backface-hidden .swiper-slide {
    max-height: 64vh;
  }
}

@media screen and (max-width: 730px) {
  .swiper-backface-hidden .swiper-slide {
    max-height: 50vh;
  }
}

@media screen and (max-width: 780px) {
  .age__swiper .swiper-slide {
    max-height: unset !important;
  }

  .priorites__swiper .swiper-slide {
    max-height: unset !important;
  }
}

@media screen and (max-width: 730px) {
  .age__swiper .swiper-slide {
    max-height: unset !important;
  }

  .priorites__swiper .swiper-slide {
    max-height: unset !important;
  }
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.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-css-mode.swiper-horizontal>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.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, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,
      rgba(0, 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, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,
      rgba(0, 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, 0.5),
      rgba(0, 0, 0, 0));
}

.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: 1s linear infinite swiper-preloader-spin;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.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);
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 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: 0.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 svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-lock {
  display: none;
}

.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:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity 0.3s;
  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: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.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: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-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: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -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: transform 0.2s, top 0.2s;
}

.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: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color,
      rgba(0, 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: var(--swiper-pagination-progressbar-size, 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: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 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: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.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.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  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-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.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-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  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-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

:root {
  --font-family: "Open Sans";
  --1: #302b44;
  --2: #fd8280;
  --4: #30b2b7;
  --Primary-3: #302b44;
}

.visit {
  position: relative;
}

.visit h2 {
  margin-bottom: 50px;
}

.visit h2 span {
  color: var(--2);
}

.visit__swiper {
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 730px) {
    .swiper-backface-hidden .swiper-slide {
        max-height: unset !important;
    }
}
@media screen and (max-width: 780px) {
    .swiper-backface-hidden .swiper-slide {
        max-height: unset !important;
    }
}

.visit__swiper .swiper-wrapper {
  align-items: center;
}

.visit__video {
  width: 100%;
  border-radius: 40px;
  min-height: 529px;
  display: flex;
    align-items: center;
}

.visit__video img {
   border-radius: 40px;
}

.visit__pagination {
  margin: 0 auto 50px;
  text-align: center;
}

.visit__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e9e3d9;
  opacity: 1;
}

.visit__pagination .swiper-pagination-bullet-active {
  background-color: var(--2);
}

.visit__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: calc(100% + 200px);
  max-width: 1308px;
  z-index: 1;
}

.visit__btns .visit__btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9e3d9;
  border-radius: 100px;
  background-color: transparent;
  transition: background-color 0.25s;
}

.visit__btns .visit__btn:hover {
  background-color: var(--4);
}

.visit__btns svg path {
  transition: stroke 0.25s;
}

.visit__btns .visit__btn:hover svg path {
  stroke: #fff;
}

.visit__btns .visit-next {
  transform: rotate(180deg);
}

.visit .pink-btn {
  margin-bottom: 20px;
}

.visit__btn-2 {
  display: block;
  max-width: 308px;
  margin: 0 auto;
  width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

@media (max-width: 576px) {
  .visit h2 {
    margin-bottom: 40px;
  }

  .visit h2 span {
    color: var(--1);
  }

  .visit__video {
    min-height: 218px;
    border-radius: unset;
  }

  .visit__pagination {
    margin-bottom: 40px;
  }

  .visit .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .visit__btn-2 {
    max-width: unset;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.form-footer button {
  /* max-width: fit-content; */
  /* margin: 0 auto !important; */
  max-width: unset;
  width: 100%;
}

.form-footer {
  display: flex;
  /* flex-direction: column-reverse; */
  flex-direction: column;
}

.form-footer .note {
  margin-bottom: 30px;
}

#popup .popup-content .form h3,
#popup .popup-content .title {
  min-width: unset !important;
}


/* #popup .popup-content form fieldset {
  text-align: left;
  margin: 0 auto 15px;
  max-width: max-content;
} */