@charset "UTF-8";
:root {
  --font-family: "Montserrat", sans-serif;
  --second-family: "Exo2", sans-serif;
  --third-family: "ZillaSlab", sans-serif;
  --font3: "SegoeUI", sans-serif;
  --font4: "Architects Daughter", sans-serif;
  --content-width: 1370px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}
:root :root {
  --fuschia-100: #ef5da8;
  --fuschia-80: #f178b6;
  --fuschia-60: #fcddec;
  --iris-100: #5d5fef;
  --iris-80: #7879f1;
  --iris-60: #a5a6f6;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ZillaSlab";
  src: url("../fonts/ZillaSlab-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

p, h1, h2, h3, h4, h5, h6, ul, li {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.header {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #eeeadf;
  z-index: 3;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.header__logo-name {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.08em;
  font-variant: all-small-caps;
  color: #000;
}
.header__logo-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #000;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
}
.header__nav-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  /* на всю высоту экрана */
}

.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* чтобы занять всю высоту */
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* растягивается, чтобы футер ушёл вниз */
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger {
  display: none;
}

.btn-container {
  display: none;
}

@media (max-width: 1024px) {
  .nav__item-del {
    display: none;
  }
  .btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .header__item-none {
    display: block;
  }
  .header__link {
    display: none;
  }
  .nav__book .nav__btn .nav__book-demo {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    right: 0;
    top: 84px;
    z-index: 1000;
    background-color: #fff;
    opacity: 0.9;
    padding: 30px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    width: 100%;
  }
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
  .nav__link {
    color: #000;
  }
  .menu--active {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .header__flex-container .nav__book {
    display: none;
  }
  .nav .nav__book {
    display: block;
  }
  .companies__bottom-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .options__flex-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .blog__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .header__lang-btn svg {
    width: 37px;
    height: 37px;
  }
}
.burger::before,
.burger::after,
.burger__line {
  background: #a1be6b;
}

.burger-box-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 100%;
  background: #000;
}

.burger {
  --burger-width: 19px;
  --burger-height: 19px;
}

.emo-logo {
  width: 15px;
  height: 15px;
}

.emo-about {
  width: 58px;
  height: 58px;
}

.footer {
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #eeeadf;
  padding: 20px 0;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__logo {
  display: block;
  margin-bottom: 24px;
}
.footer__social-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer__center-text {
  padding-top: 5px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
}
.footer__left-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  color: #000;
  line-height: 15px;
}
.footer__item-first,
.footer .footer__right-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}
.footer__item-link {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #000;
  display: inline-block;
}
.footer .footer__item {
  margin-bottom: 12px;
}
.footer__item:last-child {
  margin-bottom: 0px;
}
.footer__right-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer__right-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.footer__right-tel {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #000;
}
.footer__right-contacts {
  margin-bottom: 10px;
}

.hero {
  background: #f4f1ea;
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
.hero-svg-top {
  position: absolute;
  top: -10%;
  left: 3%;
  z-index: 0;
}
.hero-svg-middle {
  position: absolute;
  top: -10%;
  left: 45%;
  z-index: 0;
}
.hero-svg-right {
  position: absolute;
  top: 7%;
  right: 0;
  z-index: 0;
}
.hero-svg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-svg-rightend {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero__left {
  max-width: 560px;
  width: 100%;
}
.hero__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #282926;
  padding: 40px 70px 50px 70px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.hero__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 31px;
  padding-left: 8px;
}
.hero__title span {
  font-size: 48px;
  color: #a1be6b;
}
.hero__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 135%;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 46px;
}
.hero__left-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}
.hero__left-btn {
  border-radius: 10px;
  max-width: 211px;
  width: 100%;
  padding: 17px 36px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  background: #a1be6b;
  text-align: center;
}
.hero__left-link {
  max-width: 211px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #a1be6b;
  text-align: center;
}
.hero__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /* прижимаем к низу */
  position: relative;
  height: 100%;
  /* или задай нужную высоту, если нужно ограничить */
}
.hero__right-text {
  border-radius: 10px;
  width: 211px;
  padding: 12px 21px 12px 9px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  background: #a1be6b;
  position: absolute;
  bottom: 2%;
  left: 2%;
}

.map-address {
  background: #ede7d9;
}

.reviews {
  background: #ede7d9;
  padding-top: 50px;
  padding-bottom: 150px;
}
.reviews__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 104%;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
.reviews__title span {
  color: #a1be6b;
}
.reviews__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  padding: 33px;
  background: #282926;
  border-radius: 20px;
}
.reviews__subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.reviews__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  max-width: 405px;
  width: 100%;
}
.reviews__inner-left {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 121px;
  flex: 0 0 121px;
}
.reviews__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  /* если нужно */
}
.reviews__svg {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 41px;
  height: 41px;
}
.reviews__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  /* текстовая часть адаптивная */
  min-width: 0;
  /* важно, чтобы текст не ломал верстку */
}
.reviews__container {
  position: relative;
}

/* Контейнер пагинации */
.reviews__swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  bottom: -20% !important;
  z-index: 1 !important;
}

/* Обычные точки */
.swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #dcdcdc;
  /* серый по умолчанию */
  opacity: 1;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* Активная точка */
.swiper-pagination-bullet-active {
  background: #a1be6b;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.consult {
  background: #f4f1ea;
  padding: 70px 0;
  position: relative;
}
.consult__svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.consult__svg2 {
  position: absolute;
  top: 18%;
  left: 50%;
  z-index: 0;
}
.consult__svg3 {
  position: absolute;
  top: -10%;
  right: 0;
  z-index: 0;
}
.consult__svg4 {
  position: absolute;
  bottom: 0;
  left: 40%;
  z-index: 0;
}
.consult__svg5 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.consult__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 20px;
}
.consult__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 104%;
  color: #000;
  margin-bottom: 40px;
}
.consult__title span {
  color: #a1be6b;
}
.consult__right {
  max-width: 566px;
  width: 100%;
}
.consult__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 74px;
}
.consult__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 566px;
  width: 100%;
}
.consult__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: #000;
  gap: 12px;
  margin-bottom: 17px;
}
.consult__input {
  border: 1px solid #afafaf;
  border-radius: 10px;
  background: #fff;
  height: 71px;
  padding: 10px;
  max-width: 566px;
  width: 100%;
}
.consult__btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  border-radius: 10px;
  background: #a1be6b;
  max-width: 357px;
  width: 100%;
  height: 56px;
  display: block;
  margin-top: 75px;
}
.consult__custom {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #000;
}

.consult__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: var(--font-family);
  font-size: 16px;
  color: #000;
  position: relative;
}

/* скрываем стандартный чекбокс */
.consult__checkbox-field {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* квадрат чекбокса */
.consult__custom {
  position: relative;
  padding-left: 34px;
  /* место под чекбокс */
}

.consult__custom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  border: 2px solid #a1be6b;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* галочка */
.consult__custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg) scale(0);
  -ms-transform: translateY(-50%) rotate(-45deg) scale(0);
  transform: translateY(-50%) rotate(-45deg) scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

/* активный чекбокс */
.consult__checkbox-field:checked + .consult__custom::before {
  background-color: #a1be6b;
  border-color: #a1be6b;
}

/* активная галочка */
.consult__checkbox-field:checked + .consult__custom::after {
  -webkit-transform: translateY(-50%) rotate(-45deg) scale(1);
  -ms-transform: translateY(-50%) rotate(-45deg) scale(1);
  transform: translateY(-50%) rotate(-45deg) scale(1);
}

/* ховер эффект */
.consult__checkbox:hover .consult__custom::before {
  border-color: #8aaa55;
}

.consult__checkbox-field {
  outline: none;
}

.consult__checkbox-field:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.consult__checkbox-field {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
}

.consult__checkbox-field:focus,
.consult__checkbox-field:active,
.consult__checkbox-field:focus-visible,
.consult__checkbox-field:invalid {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
}

.consult__checkbox-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.consult__checkbox-field:focus + .consult__custom::before {
  outline: none;
  outline-offset: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  /* на всякий случай */
}

.faq {
  position: relative;
  z-index: 1;
  background: #ede7d9;
  padding: 60px 0;
}
.faq__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.faq__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  padding-bottom: 100px;
}
.faq__left {
  max-width: 640px;
  width: 100%;
}
.faq__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 93%;
  color: #000;
  padding-bottom: 39px;
}
.faq__title span {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 93%;
  color: #a1be6b;
}
.faq__inner-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.faq__inner {
  margin-bottom: 195px;
}
.faq__right {
  max-width: 670px;
  width: 100%;
}

.faq-add-style {
  padding: 3px;
  padding-right: 15px;
  border-radius: 10px;
  background: #a1be6b;
  font-weight: 600;
}

.accordion {
  border: 1px solid #afafaf;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  margin-bottom: 16px;
}

.accordion__control {
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3px;
}

.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: max-height;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #000;
}

.accordion__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #000;
  text-align: left;
}

.accordion__icon {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.open .accordion__icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.open .accordion__content {
  opacity: 1;
  padding-top: 20px;
}

.about {
  background: #f4f1ea;
  padding-top: 37px;
  padding-bottom: 60px;
  position: relative;
}
.about-svg {
  position: absolute;
  top: -10%;
  left: 0;
}
.about-svg2 {
  position: absolute;
  top: -5%;
  left: 50%;
}
.about-svg3 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-svg4 {
  position: absolute;
  left: 30%;
  bottom: 10%;
}
.about-svg4 {
  position: absolute;
  left: 30%;
  bottom: 10%;
}
.about-svg5 {
  position: absolute;
  right: 0;
  bottom: -10%;
}
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.about__left {
  max-width: 716px;
  width: 100%;
}
.about__right {
  max-width: 600px;
  width: 100%;
}
.about__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  color: #000;
  margin-bottom: 41px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.about__title span {
  color: #a1be6b;
}
.about__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 50px;
}
.about__text:last-of-type {
  margin-bottom: 5px;
}
.about__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  width: 221px;
  height: 56px;
  background: #a1be6b;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
}
.about__right {
  border-radius: 30px;
  padding: 17px 23px;
  background: #282926;
}
.about__right-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #fff;
  margin-top: 15px;
}

.about__video {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.about__video-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.about__video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.about__video-btn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}

.about__video-icon {
  width: 81px;
  height: 81px;
}

/* ====== Модалка ====== */
.video-modal {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-modal__video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  /* сохраняет пропорции, не обрезает shorts */
  display: none;
}

.video-modal__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 4px solid #a1be6b;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.video-modal__close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.video-modal__close:hover {
  color: #a1be6b;
}

.video-modal__video.vertical {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Видео заполняет пространство и сохраняет пропорции */
.video-modal__video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  -o-object-fit: contain;
  object-fit: contain;
  display: none;
}

/* Shorts (вертикальные видео) */
.video-modal__video.vertical {
  width: auto;
  height: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .video-modal__content {
    width: 100%;
    height: auto;
    max-height: 100vh;
    border-radius: 0;
    /* убираем скругления на мобилке, как YouTube */
  }
  .video-modal__video {
    width: 100%;
    height: auto;
    max-height: 100vh;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .video-modal__video.vertical {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .video-modal__close {
    top: 8px;
    right: 12px;
    font-size: 28px;
  }
}
.why {
  background: #ede7d9;
  padding-top: 66px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}
.why__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 20px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.why__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 93%;
  color: #000;
  margin-bottom: 22px;
}
.why__title span {
  color: #a1be6b;
}
.why__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #000;
  margin-bottom: 18px;
}
.why__item-second {
  padding: 35px 25px;
  background: #282926;
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
  border-radius: 15px;
}
.why__item-phrase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.why__phrase-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  color: #fff;
}
.why__phrase-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.why__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px 24px;
  border-radius: 15px;
  background: #fff;
}
.why__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.why__item-text {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin: 0 auto;
}
.why__item-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #000;
}
.why__item-btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

.why__voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.why__voice-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 49px;
  height: 49px;
  padding: 0;
}

.why__voice-icon {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.why__voice-icon.pause {
  opacity: 0;
}

.why__voice-btn.playing .play {
  opacity: 0;
}

.why__voice-btn.playing .pause {
  opacity: 1;
}

.why__voice-bars {
  width: 275px;
  max-width: 100%;
  height: auto;
}

.why__voice-bars rect {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  /* плавный переход цвета */
}

@media (max-width: 600px) {
  .why__voice {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .why__voice-bars {
    width: 100%;
  }
}
/* контейнер грида */
.why__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  /* три колонки одинаковой ширины */
  gap: 26px 20px;
  /* ключ: все строки одинаковой высоты (делают ячейки гибкими) */
  grid-auto-rows: 1fr;
}

/* если элементы — <li class="why__item"> */
.why__list > .why__item {
  /* растягиваем карточку на высоту ячейки (важно) */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* теперь работает */
  padding: 32px 24px;
  border-radius: 15px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.why__title-add {
  display: none;
}

.dynamic {
  position: relative;
  overflow: hidden;
  height: 141px;
  background: #f4f1ea;
}

.header__lang {
  position: relative;
  display: inline-block;
}

.header__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__lang-btn svg path {
  fill: black;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.header__lang-btn.active svg path {
  fill: #a1be6b;
}

/* Меню */
.header__lang-menu {
  position: absolute;
  top: 50px;
  right: 0;
  background: #282926;
  border-radius: 13px;
  width: 157px;
  height: 128px;
  -webkit-box-shadow: 0 0 10px 4px rgba(161, 190, 107, 0.8);
  box-shadow: 0 0 10px 4px rgba(161, 190, 107, 0.8);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  padding-left: 10px;
  padding-right: 10px;
}

.header__lang-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lang-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid #a1be6b;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-item:last-child {
  border-bottom: none;
}

.lang-item:hover {
  color: #a1be6b;
  background: #f6fbea;
}

.text-wave-style {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  text-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.78);
}

.footer__logo-add {
  margin-bottom: 9px;
}

@media (max-width: 1024px) {
  .footer__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .why__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero__title {
    text-align: center;
  }
  .text-wave-style {
    font-size: 24px;
  }
  .consult__title {
    text-align: center;
  }
  .consult__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .consult__text {
    margin-bottom: 10px;
  }
  .faq {
    padding: 20px 0;
  }
  .faq__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .faq__text {
    display: none;
  }
  .faq__title {
    text-align: center;
    padding-bottom: 15px;
    font-size: 32px;
  }
  .faq__title span {
    font-size: 32px;
  }
  .faq__inner-text {
    font-size: 16px;
    text-align: center;
  }
  .faq__inner {
    margin-bottom: 0px;
  }
  .faq__contacts {
    display: none;
  }
  .accordion__title {
    font-size: 14px;
  }
  .accordion__content {
    font-size: 12px;
  }
  .about {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
  }
  .about__btn {
    display: none;
  }
  .why__item-addbtn {
    display: block;
  }
  .about__title {
    text-align: center;
    font-size: 32px;
  }
  .about__text {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }
}
@media (max-width: 650px) {
  .why__item-second {
    padding: 10px;
    padding-bottom: 15px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .why__phrase-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
  }
  .why__item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #000;
  }
  .why__item-phrase {
    margin-bottom: 20px;
  }
  .why__phrase-text {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .why__list {
    gap: 10px 20px;
  }
  .why__list > .why__item {
    padding: 10px;
  }
  .why__item-text {
    font-size: 12px;
  }
  .why__title {
    display: none;
  }
  .why__title-add {
    display: block;
    text-align: center;
    font-size: 24px;
    line-height: 93%;
  }
  .why__text {
    font-size: 14px;
  }
  .why__item-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .why__item-addbtn {
    border-radius: 10px;
    width: 211px;
    height: 42px;
  }
  .why {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .hero__inner {
    padding-top: 5px;
    padding-bottom: 20px;
  }
  .hero__right {
    display: none;
  }
  .hero__left-btn,
  .hero__left-link {
    font-size: 16px;
  }
  .hero__left-btn {
    padding: 11px 10px;
  }
  .dynamic {
    height: 100px;
  }
  .dynamic svg {
    height: 100px;
  }
  .text-wave-style {
    font-size: 32px;
  }
  .reviews__inner {
    gap: 20px;
    padding: 15px;
  }
  .consult__img {
    display: none;
  }
  .consult__form-box {
    border-radius: 20px;
    background: #282926;
    padding: 15px;
  }
  .consult__label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-align: center;
  }
  .consult__custom {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 11px;
    text-align: center;
    color: #fff;
  }
  .consult__input {
    height: 46px;
  }
  .consult__btn {
    margin: 0 auto;
    max-width: 284px;
    margin-top: 30px;
    height: 40px;
  }
  .hero__text {
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 10px;
  }
  .hero__inner {
    padding: 15px;
  }
  .hero__title {
    padding: 0;
    margin-bottom: 10px;
  }
  .hero__left-inner {
    padding-left: 0px;
  }
  .hero__left-btn, .hero__left-link {
    font-size: 14px;
  }
  .consult__title {
    font-size: 32px;
    line-height: 93%;
    text-align: center;
    margin-bottom: 15px;
  }
  .consult__text {
    font-size: 16px;
    text-align: center;
  }
  .consult__container {
    gap: 0px;
  }
  .consult {
    padding: 20px 0;
  }
  .reviews {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .reviews__swiper-pagination {
    bottom: -9% !important;
  }
  .footer__social-box {
    margin-bottom: 10px;
  }
  .footer__center-text {
    margin-bottom: 10px;
  }
  .footer__list {
    margin-bottom: 10px;
  }
  .footer__left {
    width: 100%;
  }
  .footer__logo-add {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  .my-consult__custom{
    color: #fff;
  }
}
@media (max-width: 450px) {
  .why__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .why__item-first {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 160px;
  }
  .hero {
    padding: 20px 0;
  }
  .nav {
    top: 58px;
  }
}
@media (max-width: 430px) {
  .btn-container {
    gap: 5px;
  }
  .header__logo-img {
    width: 55px;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__title span {
    font-size: 34px;
  }
}
@media (max-width: 375px) {
  .header__logo-name {
    font-size: 20px;
  }
  .header__logo-text {
    font-size: 10px;
  }
}



.consult__form-box br{
  display: none;
}




.my-consult__checkbox {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

/* скрываем нативный чекбокс, но оставляем для required CF7 */
.my-consult__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* кастомный квадрат */
.my-consult__custom {
  position: relative;
  padding-left: 34px;
}

/* квадрат */
.my-consult__custom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  border: 2px solid #a1be6b;
  border-radius: 6px;
  background: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* галочка */
.my-consult__custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

/* активный кастомный чекбокс */
.my-consult__custom.checked::before {
  background-color: #a1be6b;
  border-color: #a1be6b;
}

.my-consult__custom.checked::after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
}

/* ховер */
.my-consult__checkbox:hover .my-consult__custom::before {
  border-color: #8aaa55;
}
