:root {
  --gap: 50px;
  --border: 56px;
}

html,
body {
  height: auto;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #262626;
  font-display: swap;
  background: #F5F5F7;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-underline-offset: 2px;
  color: #A50034;
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
  text-decoration: underline;
}
a:hover, a:focus, a:active {
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
a.--line {
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
a.--line:hover, a.--line:focus, a.--line:active {
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
}

br.d-none {
  display: none;
}
br.d-md {
  display: none;
}

.container {
  margin: 0 auto;
  max-width: 1224px;
  padding: 0 12px;
}

.section__title {
  text-align: center;
  margin-bottom: var(--gap);
}
.section__title h1 {
  font-size: 50px;
}
.section__title h2 {
  font-size: 44px;
}
.section__title h1,
.section__title h2 {
  font-weight: 700;
  line-height: 1.2;
}
.section__title h1 span,
.section__title h2 span {
  color: #A50034;
}
.section__title p {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.btn {
  -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
          border-radius: 12px;
  padding: 24px 25px;
  color: #ffffff;
  height: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 300%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-animation: blick 3s linear infinite;
     -moz-animation: blick 3s linear infinite;
       -o-animation: blick 3s linear infinite;
          animation: blick 3s linear infinite;
  -webkit-transform: rotate(45deg) translateY(-50%);
     -moz-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
       -o-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.btn.--main {
  background: #A50034;
  -webkit-box-shadow: inset 0 0 36px 0 rgba(255, 255, 255, 0.25);
     -moz-box-shadow: inset 0 0 36px 0 rgba(255, 255, 255, 0.25);
          box-shadow: inset 0 0 36px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.btn.--main:hover, .btn.--main:active, .btn.--main:focus {
  background: #A50034;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

@-webkit-keyframes blick {
  0% {
    left: -80%;
  }
  100% {
    left: 160%;
  }
}

@-moz-keyframes blick {
  0% {
    left: -80%;
  }
  100% {
    left: 160%;
  }
}

@-o-keyframes blick {
  0% {
    left: -80%;
  }
  100% {
    left: 160%;
  }
}

@keyframes blick {
  0% {
    left: -80%;
  }
  100% {
    left: 160%;
  }
}
.form {
  padding: 48px 32px;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  -webkit-backdrop-filter: blur(236px);
          backdrop-filter: blur(236px);
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 4px 92px 0px rgba(0, 0, 0, 0.07);
     -moz-box-shadow: 0px 4px 92px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 92px 0px rgba(0, 0, 0, 0.07);
  color: #ffffff;
}
.form__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.form__subtitle {
  text-align: center;
  margin-bottom: 24px;
  font-size: var(--text);
}
.form__field {
  margin-bottom: 12px;
}
.form__field input {
  border: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
          border-radius: 12px;
  padding: 24px;
  font-weight: 600;
  color: #1b1b1b;
  display: block;
  width: 100%;
  font-size: 16px;
  height: 68px;
  -webkit-box-shadow: inset 0 2px 4px 0 #e6eaed;
     -moz-box-shadow: inset 0 2px 4px 0 #e6eaed;
          box-shadow: inset 0 2px 4px 0 #e6eaed;
  background: #f3f4f8;
  text-align: center;
}
.form__field input:placeholder {
  color: #1b1b1b;
}
.form .btn {
  width: 100%;
}
.form__policy {
  margin-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #ffffff;
  position: relative;
}
.form__policy a {
  color: #da0549;
}
.form__policy input {
  position: absolute;
  z-index: -1;
  background: transparent;
  width: 1px;
  height: 1px;
  border: none;
  outline: none;
  left: 9px;
  top: 12px;
}
.form__policy div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form__policy:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #A50034;
  background: #ffffff;
  cursor: pointer;
}
.form__policy:has(input:checked):before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="12" viewBox="0 0 17 12" fill="none"><path d="M16.697 1.65891L15.199 0.27907C14.997 0.0930232 14.7446 0 14.4584 0C14.1723 0 13.9198 0.0930232 13.7178 0.27907L6.51386 6.91473L3.29901 3.93798C3.09703 3.75194 2.84455 3.65891 2.55842 3.65891C2.27228 3.65891 2.0198 3.75194 1.81782 3.93798L0.319802 5.31783C0.10099 5.50388 0 5.73643 0 6C0 6.26357 0.10099 6.49612 0.30297 6.68217L4.27525 10.3411L5.77327 11.7209C5.97525 11.907 6.22772 12 6.51386 12C6.8 12 7.05247 11.907 7.25446 11.7209L8.75247 10.3411L16.697 3.02326C16.899 2.83721 17 2.60465 17 2.34109C17 2.07752 16.899 1.84496 16.697 1.65891Z" fill="%23262626"/></svg>');
  background-repeat: no-repeat;
  -webkit-background-size: 12px 12px;
     -moz-background-size: 12px 12px;
       -o-background-size: 12px 12px;
          background-size: 12px 12px;
  background-position: center center;
}

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-decoration: none;
}
.logo img {
  width: 61px;
}
.logo span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #262626;
  text-decoration: none;
}

section {
  margin-bottom: var(--gap);
  scroll-margin-top: 180px;
}
section.--bg {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  background-position: center center;
}
section.--border {
  -webkit-border-radius: 0 0 var(--border) var(--border);
     -moz-border-radius: 0 0 var(--border) var(--border);
          border-radius: 0 0 var(--border) var(--border);
}
section.--mb {
  margin-bottom: 0;
}
section.--mt {
  margin-top: -webkit-calc(var(--gap) * -1);
  margin-top: -moz-calc(var(--gap) * -1);
  margin-top: calc(var(--gap) * -1);
  padding-top: -webkit-calc(var(--gap) * 2);
  padding-top: -moz-calc(var(--gap) * 2);
  padding-top: calc(var(--gap) * 2);
}

.swiper-wrapper, .swiper-item {
  height: auto;
}
.swiper-button-prev, .swiper-button-next {
  width: 76px;
  height: 76px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  -webkit-background-size: 13px 22px;
     -moz-background-size: 13px 22px;
       -o-background-size: 13px 22px;
          background-size: 13px 22px;
  background-position: center center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml,<svg width="13" height="22" viewBox="0 0 13 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4142 1L1.41418 11L11.4142 21" stroke="%23A50034" stroke-width="2" stroke-linecap="round" /></svg>');
  -webkit-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.27);
     -moz-box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.27);
          box-shadow: 0 0 52px 0 rgba(0, 0, 0, 0.27);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}
.swiper-button-disabled {
  opacity: 0.75;
  cursor: pointer;
  pointer-events: auto;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
     -moz-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
       -o-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
  background-color: #A50034;
  background-image: url('data:image/svg+xml,<svg width="13" height="22" viewBox="0 0 13 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4142 1L1.41418 11L11.4142 21" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" /></svg>');
  -webkit-box-shadow: 0 0 92px 0 rgba(0, 0, 0, 0.17), inset 0 0 36px 0 rgba(255, 255, 255, 0.25);
     -moz-box-shadow: 0 0 92px 0 rgba(0, 0, 0, 0.17), inset 0 0 36px 0 rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 92px 0 rgba(0, 0, 0, 0.17), inset 0 0 36px 0 rgba(255, 255, 255, 0.25);
}
.swiper-pagination {
  position: relative;
  top: 0 !important;
  left: 0 !important;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
  margin: 32px auto 0 auto;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 92px 0 rgba(0, 0, 0, 0.07), 0 0 92px 0 rgba(0, 0, 0, 0.07), 0 4px 92px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 0 92px 0 rgba(0, 0, 0, 0.07), 0 0 92px 0 rgba(0, 0, 0, 0.07), 0 4px 92px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 92px 0 rgba(0, 0, 0, 0.07), 0 0 92px 0 rgba(0, 0, 0, 0.07), 0 4px 92px 0 rgba(0, 0, 0, 0.1);
  padding: 6.5px 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background-color: #e9e9e9;
  margin: 0 !important;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #A50034;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 92px 0px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0px 4px 92px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 92px 0px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 0 0 var(--gap) var(--gap);
     -moz-border-radius: 0 0 var(--gap) var(--gap);
          border-radius: 0 0 var(--gap) var(--gap);
}
.header.--active .header__wrapper {
  padding: 12px 0;
}
.header.--active .nav {
  padding: 8px 0;
}
.header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 21px 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header .btn__menu {
  display: none;
}
.header__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header__rating div {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #323232;
}
.header__rating div:before {
  content: "";
  display: block;
  width: 86px;
  height: 13px;
  background-image: url(../img/--rating.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
  margin-bottom: 4px;
}
.header__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header__info div {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #323232;
}
.header__worktime {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header__worktime:before {
  content: "";
  width: 6px;
  height: 6px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background-color: #64CF71;
}
.header__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin: 8px 0;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #262626;
  gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.header__phone:active, .header__phone:hover, .header__phone:focus {
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
}
.header__phone:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon__phone.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
}
.header__callback {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  display: block;
  color: #262626;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.nav {
  border-top: 1px solid #e6e6e6;
  padding: 26px 0 22px;
  position: relative;
  z-index: 9;
  -webkit-transition: 0.3s ease-in-out padding;
  -o-transition: 0.3s ease-in-out padding;
  -moz-transition: 0.3s ease-in-out padding;
  transition: 0.3s ease-in-out padding;
}
.nav .--menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav .--menu li a {
  font-size: 14px;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #262626;
  font-weight: 600;
}
.nav .--menu li a:hover, .nav .--menu li a:focus, .nav .--menu li a:active {
  color: #A50034;
}
.nav .--menu li.--dots {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background-color: #A50034;
}

.hero {
  position: relative;
  z-index: 2;
  background-color: #F5F5F7;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  padding: 215px 0 55px 0;
  overflow: hidden;
}
.hero .section__title {
  text-align: left;
}
.hero.--thanks {
  padding: 350px 0 200px;
  margin-bottom: 0;
}
.hero.--thanks + .footer {
  padding-top: -webkit-calc(var(--gap) * 2);
  padding-top: -moz-calc(var(--gap) * 2);
  padding-top: calc(var(--gap) * 2);
  margin-top: -webkit-calc(var(--gap) * -1);
  margin-top: -moz-calc(var(--gap) * -1);
  margin-top: calc(var(--gap) * -1);
}
.hero__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 570px;
}
.hero__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
}
.hero__list li img {
  width: 40px;
}
.hero__bottom {
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  padding: 24px;
  -webkit-backdrop-filter: blur(236px);
          backdrop-filter: blur(236px);
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
  margin-top: 45px;
}
.hero__bottom--title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 18px;
}
.hero__bottom .--line {
  background: #727272;
  width: 1px;
}
.hero__phone p {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.hero__phone p:before {
  content: "";
  width: 6px;
  height: 6px;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  background-color: #64CF71;
}
.hero__phone a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-top: 18px;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #ffffff;
  gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero__phone a:active, .hero__phone a:hover, .hero__phone a:focus {
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
}
.hero__phone a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon__phone.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
}
.hero__messengers a {
  padding: 4px 24px 4px 4px;
  height: 49px;
  -webkit-border-radius: 80px;
     -moz-border-radius: 80px;
          border-radius: 80px;
  width: 223px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2ecf71;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 11px;
}
.hero__messengers a:hover {
  opacity: 0.8;
}
.hero__messengers a:last-child {
  margin-bottom: 0;
  background-color: #26adde;
}
.hero__messengers a span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero .form {
  padding: 0;
  width: 525px;
  background: transparent;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.hero .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px;
}
.hero .form__field {
  width: 295px;
  margin-bottom: 0;
}
.hero .form .btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero .form__policy {
  margin-top: 0;
  font-size: 10px;
  line-height: 1.2;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero .form__title {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.2;
  width: 100%;
}
.hero .form__title span {
  color: #da0549;
}

.services__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 12px 14px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.services__item {
  width: -webkit-calc((100% - 42px) / 4);
  width: -moz-calc((100% - 42px) / 4);
  width: calc((100% - 42px) / 4);
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  text-decoration: none;
}
.services__item--img img {
  -webkit-border-radius: 24px 24px 0 0;
     -moz-border-radius: 24px 24px 0 0;
          border-radius: 24px 24px 0 0;
}
.services__item--title {
  margin-top: -20px;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  padding: 32px 8px;
  background: #ffffff;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: normal;
  color: #262626;
  height: 136px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.service__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
}
.service__item {
  width: -webkit-calc((100% - 64px) / 3);
  width: -moz-calc((100% - 64px) / 3);
  width: calc((100% - 64px) / 3);
  -webkit-box-shadow: 0 16px 92px 0 rgba(0, 0, 0, 0.07);
     -moz-box-shadow: 0 16px 92px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 16px 92px 0 rgba(0, 0, 0, 0.07);
  background: #ffffff;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 16px 20px 16px;
  cursor: pointer;
}
.service__item:last-child ul li::before {
  display: none !important;
}
.service__item--img {
  margin-bottom: 26px;
}
.service__item--img img {
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
}
.service__item--title {
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
}
.service__item--text {
  margin: 10px 0 20px 0;
}
.service__item--text li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.service__item--text li:last-child {
  margin-bottom: 0;
}
.service__item--text li:before {
  content: "";
  min-width: 11px;
  height: 11px;
  background: #A50034;
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
}
.service__item--price {
  margin-top: auto;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
}

.about {
  padding-bottom: var(--gap);
}
.about__block {
  width: 540px;
  margin-left: auto;
}
.about .section__title {
  margin-bottom: 20px;
  text-align: left;
}
.about__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.about__item {
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  padding: 10px;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  line-height: 1.2;
}
.about__item--info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__item--title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.about__item--text {
  font-weight: 500;
}

.reviews {
  overflow: hidden;
}
.reviews .btn {
  margin: 32px auto 0 auto;
}
.reviews__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  max-width: 755px;
  margin: 0 auto;
}
.reviews__item {
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.reviews__item--img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 0;
  min-height: 375px;
}
.reviews__item--img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.reviews__item--info {
  width: 330px;
}
.reviews__item--top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
}
.reviews__item--top img {
  -webkit-border-radius: 100%;
     -moz-border-radius: 100%;
          border-radius: 100%;
  width: 65px;
}
.reviews__item--top__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: normal;
}
.reviews__item--top__info b {
  font-weight: 600;
  font-size: 20px;
}
.reviews__item--top__info p {
  margin: 8px 0;
  font-weight: 500;
}
.reviews__item--top__info .--rating {
  display: block;
  width: 122px;
  height: 22px;
  background-image: url(../img/reviews__rating.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
}
.reviews__item--text {
  font-weight: 500;
}
.reviews .swiper {
  overflow: visible;
  width: 755px;
  margin: 0 auto;
}
.reviews .swiper-wrapper {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.reviews .swiper-slide {
  height: auto;
}
.reviews .swiper-slide .reviews__item {
  height: 100%;
}
.reviews .swiper-button-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.reviews .swiper-button-next {
  right: 0;
  -webkit-transform: translate(50%, -50%) rotate(180deg);
     -moz-transform: translate(50%, -50%) rotate(180deg);
      -ms-transform: translate(50%, -50%) rotate(180deg);
       -o-transform: translate(50%, -50%) rotate(180deg);
          transform: translate(50%, -50%) rotate(180deg);
}

.teams__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  top: 100%;
}
.teams__item {
  width: -webkit-calc((100% - 30px) / 4);
  width: -moz-calc((100% - 30px) / 4);
  width: calc((100% - 30px) / 4);
  background: #e9e9e9;
  padding: 12px;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
}
.teams__item--img img {
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
}
.teams__item--info {
  margin-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  line-height: normal;
}
.teams__item--title {
  font-size: 20px;
  font-weight: 700;
}
.teams__item--job {
  font-weight: 500;
  font-size: 14px;
}
.teams__item--text {
  font-size: 16px;
  font-weight: 600;
}

.guarantee {
  padding: var(--gap) 0;
}
.guarantee h2 {
  text-align: left;
}
.guarantee__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  max-width: 600px;
}
.guarantee__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 12px 18px 12px 32px;
  background: #ffffff;
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  -webkit-box-shadow: 0 24px 92px 0 rgba(0, 0, 0, 0.27);
     -moz-box-shadow: 0 24px 92px 0 rgba(0, 0, 0, 0.27);
          box-shadow: 0 24px 92px 0 rgba(0, 0, 0, 0.27);
  line-height: 1.4;
}
.guarantee__item--num {
  min-width: 72px;
  font-size: 58px;
  font-weight: 700;
  color: #A50034;
}
.guarantee__item--title {
  font-size: 18px;
  font-weight: 500;
}

.promo {
  padding: 64px 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.promo__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.promo .section__title {
  text-align: left;
  margin-bottom: 0;
}
.promo .section__title h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
}
.promo .section__title h2 span {
  font-weight: 700;
  color: #da0549;
}
.promo__timer p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
}
.promo__timer .--timer {
  font-weight: 700;
  font-size: 68px;
  line-height: 1.2;
  width: 260px;
}
.promo .form {
  width: 264px;
  padding: 0;
  background: transparent;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.promo .form__policy {
  font-size: 12px;
}

.call {
  padding: 43px 0 72px 0;
}
.call .section__title {
  color: #ffffff;
}
.call .form {
  padding: 0;
  background: transparent;
  max-width: 800px;
  margin: 0 auto;
}
.call .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px;
}
.call .form__field {
  width: 344px;
  margin: 0;
}
.call .form .btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.call .form__policy {
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.faq__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 34px 50px;
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.faq__item {
  background-color: #ffffff;
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  width: -webkit-calc(50% - 25px);
  width: -moz-calc(50% - 25px);
  width: calc(50% - 25px);
}
.faq__item--title {
  padding: 28px 26px 28px 32px;
  line-height: 1.45;
  font-size: 18px;
  font-weight: 700;
  gap: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  position: relative;
  min-height: 108px;
}
.faq__item--title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: -webkit-calc(100% - 80px);
  height: -moz-calc(100% - 80px);
  height: calc(100% - 80px);
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #A50034;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq__item--title:after {
  content: "";
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><g clip-path="url(%23clip0_148_1079)"><path d="M21.8906 9.89062H14.1094V2.10938C14.1094 0.944391 13.165 0 12 0C10.835 0 9.89062 0.944391 9.89062 2.10938V9.89062H2.10938C0.944391 9.89062 0 10.835 0 12C0 13.165 0.944391 14.1094 2.10938 14.1094H9.89062V21.8906C9.89062 23.0556 10.835 24 12 24C13.165 24 14.1094 23.0556 14.1094 21.8906V14.1094H21.8906C23.0556 14.1094 24 13.165 24 12C24 10.835 23.0556 9.89062 21.8906 9.89062Z" fill="%23A50034"/></g><defs><clipPath id="clip0_148_1079"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq__item--title.--active:before {
  opacity: 1;
}
.faq__item--title.--active:after {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__item--text {
  margin-top: -14px;
  display: none;
  padding: 0 26px 36px 32px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.faq__item--text a {
  font-weight: 700;
  display: inline-block;
}
.faq__item--text p {
  margin-bottom: 1rem;
}
.faq__item--text p:last-child {
  margin-bottom: 0;
}

.contacts__block {
  padding: 120px 64px 160px 64px;
  position: relative;
}
.contacts__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.contacts__map img {
  -webkit-border-radius: var(--border);
     -moz-border-radius: var(--border);
          border-radius: var(--border);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts__map img:nth-child(1) {
  display: block;
}
.contacts__map img:nth-child(2) {
  display: none;
}
.contacts__info {
  margin-left: auto;
  width: 330px;
  background: #ffffff;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  padding: 24px;
}
.contacts__info .btn {
  width: 100%;
  margin: 16px 0;
}
.contacts__info small {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.contacts .section__title {
  margin-bottom: 16px;
  text-align: left;
}
.contacts .section__title h2 {
  font-size: 24px;
  line-height: normal;
}
.contacts .section__title p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.contacts__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.contacts__phone--info p {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}
.contacts__phone--info a {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #262626;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.contacts__phone--info a:hover, .contacts__phone--info a:focus, .contacts__phone--info a:active {
  -webkit-text-decoration-color: #262626;
     -moz-text-decoration-color: #262626;
          text-decoration-color: #262626;
}

.footer {
  padding: var(--gap) 0;
  font-size: 14px;
  background: #e9e9e9;
}
.footer img {
  width: 71px;
}
.footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.footer__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__bottom a {
  color: #A50034;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 18px;
}
.footer__bottom a:last-child {
  margin-bottom: 0;
}
.footer__menu {
  width: 500px;
}
.footer__menu--title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px 32px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footer__menu ul li {
  width: -webkit-calc(50% - 16px);
  width: -moz-calc(50% - 16px);
  width: calc(50% - 16px);
}
.footer__menu ul li a {
  line-height: normal;
  color: #262626;
  font-weight: 500;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.footer__menu ul li a:active, .footer__menu ul li a:hover, .footer__menu ul li a:focus {
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
}
.footer__link {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #262626;
  line-height: normal;
}
.footer__link:active, .footer__link:hover, .footer__link:focus {
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
}
.footer__messenger {
  color: #262626;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #262626;
  line-height: normal;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 11px;
}
.footer__messenger:active, .footer__messenger:hover, .footer__messenger:focus {
  -webkit-text-decoration-color: inherit;
     -moz-text-decoration-color: inherit;
          text-decoration-color: inherit;
}
.footer__callback {
  margin-top: 16px;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}
.footer__callback:hover {
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.modal {
  display: none;
  padding: 0;
  background: 0;
  width: 100%;
  max-width: 480px;
}
.modal .f-button.is-close-btn {
  top: 20px;
  right: 12px;
  background: 0 0 !important;
}

.cookie {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 40px;
  max-width: 830px;
  width: -webkit-calc(100% - 80px);
  width: -moz-calc(100% - 80px);
  width: calc(100% - 80px);
  z-index: 9;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 16px;
  -webkit-box-shadow: 0px 16px 92px 0px rgba(0, 0, 0, 0.07);
     -moz-box-shadow: 0px 16px 92px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 16px 92px 0px rgba(0, 0, 0, 0.07);
}
.cookie__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
.cookie__info a {
  font-weight: 600;
}
.cookie__title {
  font-weight: 700;
}
.cookie .btn {
  width: 80px;
  height: 47px;
}

@media (max-width: 1399px) {
  :root {
    --gap: 42px;
    --border: 48px;
  }
  .container {
    max-width: 994px;
  }
  .section__title h1 {
    font-size: 40px;
  }
  .section__title h2 {
    font-size: 36px;
  }
  .section__title p {
    font-size: 22px;
  }
  .header__wrapper {
    padding: 18px 0;
  }
  .header__location {
    display: none;
  }
  .nav {
    padding: 12px 0;
  }
  .nav .--menu > li > a {
    font-size: 12px;
  }
  .hero.--thanks {
    padding: 300px 0 200px;
  }
  .hero__messengers {
    margin-top: -100px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 303px;
    margin-right: 46px;
  }
  .hero__messengers a {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__bottom {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .hero__bottom .--line:nth-child(4) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-right: auto;
  }
  .hero .form__field,
  .hero .form .btn {
    width: 100%;
  }
  .footer__menu {
    width: 445px;
  }
  .footer__menu ul {
    gap: 16px;
  }
  .footer__menu ul li {
    width: 51%;
  }
  .footer__menu ul li:nth-child(2n) {
    width: -webkit-calc(49% - 16px);
    width: -moz-calc(49% - 16px);
    width: calc(49% - 16px);
  }
  .call {
    padding: var(--gap) 0;
  }
  .service__list {
    gap: 24px;
  }
  .service__item {
    width: -webkit-calc((100% - 48px) / 3);
    width: -moz-calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
  }
  .promo {
    padding: var(--gap) 0;
  }
  .promo__wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .promo .form {
    width: 100%;
  }
  .promo .form form {
    max-width: 800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 12px;
  }
  .promo .form__field {
    width: 344px;
    margin: 0;
  }
  .promo .form .btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .promo .form__policy {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 992px) {
  .services__item,
  .service__item,
  .teams__item,
  .faq__item {
    -webkit-transition: 0.3s ease-in-out transform;
    -o-transition: 0.3s ease-in-out transform;
    -moz-transition: 0.3s ease-in-out transform;
    transition: 0.3s ease-in-out transform;
  }
  .services__item:hover,
  .service__item:hover,
  .teams__item:hover,
  .faq__item:hover {
    -webkit-transform: scale(1.03);
       -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
         -o-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@media (max-width: 991px) {
  :root {
    --gap: 36px;
    --border: 40px;
  }
  section {
    scroll-margin-top: 120px;
  }
  .container {
    max-width: 734px;
  }
  .section__title h1 {
    font-size: 30px;
  }
  .section__title h2 {
    font-size: 28px;
  }
  .section__title p {
    font-size: 20px;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 56px;
    height: 56px;
  }
  .swiper-pagination {
    margin-top: 24px !important;
  }
  .header {
    z-index: 201;
  }
  .header.--active .nav {
    padding: 0;
  }
  .header.--menuOpen {
    width: 100%;
    height: 100vh;
    background: #F5F5F7;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    border-bottom: 0;
  }
  .header.--menuOpen .nav {
    display: block;
  }
  .header__wrapper {
    gap: 24px;
    padding: 12px 0;
  }
  .header__worktime {
    font-size: 12px;
  }
  .header__phone {
    margin: 2px 0;
    font-size: 18px;
  }
  .header__callback {
    font-size: 14px;
  }
  .header__rating, .header__info {
    display: none;
  }
  .header__right {
    margin-left: auto;
  }
  .header .btn__menu {
    width: 27px;
    height: 23px;
    position: relative;
    display: block;
  }
  .header .btn__menu span {
    -webkit-border-radius: 16px;
       -moz-border-radius: 16px;
            border-radius: 16px;
    background: #262626;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header .btn__menu span:nth-child(1) {
    top: 0;
  }
  .header .btn__menu span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header .btn__menu span:nth-child(3) {
    bottom: 0;
  }
  .header .btn__menu.--active span {
    top: 50%;
    left: 50%;
  }
  .header .btn__menu.--active span:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
         -o-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .btn__menu.--active span:nth-child(2) {
    display: none;
  }
  .header .btn__menu.--active span:nth-child(3) {
    bottom: auto;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -moz-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
         -o-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .nav {
    display: none;
    padding: 0;
  }
  .nav .--menu {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    padding: 0;
    display: block;
    position: relative;
  }
  .nav .--menu > li.--dots {
    width: 100vw;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 1px;
    background: #e6e6e6;
  }
  .nav .--menu > li > a {
    font-size: 18px;
    text-transform: none;
    padding: 16px 0;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-transform: uppercase;
  }
  .nav.--active {
    display: block;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: var(--gap);
  }
  .hero.--thanks {
    padding: 250px 0 150px;
  }
  .hero__bottom {
    margin-top: 32px;
    gap: 0 24px;
  }
  .hero__bottom--title {
    font-size: 24px;
  }
  .hero__messengers {
    margin-right: 0;
    width: 271px;
    margin-top: -110px;
  }
  .hero__phone p {
    font-size: 16px;
  }
  .hero__phone a {
    font-size: 24px;
  }
  .hero .form {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .hero .form__title {
    font-size: 22px;
  }
  .hero__list li {
    font-size: 18px;
  }
  .services__item {
    width: -webkit-calc((100% - 28px) / 3);
    width: -moz-calc((100% - 28px) / 3);
    width: calc((100% - 28px) / 3);
  }
  .services__item--title {
    font-size: 20px;
    height: 112px;
  }
  .service__list {
    gap: 32px;
  }
  .service__item {
    width: -webkit-calc((100% - 32px) / 2);
    width: -moz-calc((100% - 32px) / 2);
    width: calc((100% - 32px) / 2);
  }
  .about__list {
    gap: 24px;
  }
  .contacts__block {
    padding: 32px 32px 168px 32px;
  }
  .faq__list {
    gap: 24px;
  }
  .faq__item {
    width: 100%;
    -webkit-border-radius: 16px;
       -moz-border-radius: 16px;
            border-radius: 16px;
  }
  .faq__item--title {
    padding: 24px 32px;
    min-height: auto;
    line-height: 1.2;
  }
  .faq__item--title:before {
    height: -webkit-calc(100% - 64px);
    height: -moz-calc(100% - 64px);
    height: calc(100% - 64px);
  }
  .faq__item--text {
    margin-top: -12px;
  }
  .footer__wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
  }
  .footer .logo {
    margin: 0 auto;
  }
  .footer__bottom {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-right: 8px;
  }
  .footer__bottom a {
    margin: 0;
  }
  .reviews__list {
    gap: 24px;
  }
  .reviews .swiper {
    width: 100%;
  }
  .reviews .btn {
    margin-top: 24px;
  }
  .guarantee__list {
    gap: 24px;
    width: 575px;
  }
  .guarantee__item {
    gap: 24px;
  }
  .guarantee__item--num {
    min-width: 60px;
    font-size: 52px;
  }
  .teams__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .teams__item {
    width: -webkit-calc(50% - 5px);
    width: -moz-calc(50% - 5px);
    width: calc(50% - 5px);
  }
  .teams__item--img {
    height: 160px;
  }
  .teams__item--img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center -10px;
       object-position: center -10px;
  }
  .teams__item--text {
    font-size: 14px;
  }
  .promo .section__title {
    text-align: center;
  }
  .promo .section__title h2 {
    font-size: 32px;
  }
  .promo__timer {
    padding-top: 6px;
    width: 240px;
  }
  .promo__timer .--timer {
    font-size: 60px;
    width: 100%;
  }
  .promo__timer p {
    margin-bottom: 18px;
  }
}
@media (max-width: 767px) {
  :root {
    --gap: 32px;
    --border: 32px;
  }
  body {
    font-size: 14px;
  }
  section {
    scroll-margin-top: 80px;
  }
  br.d-md {
    display: block;
  }
  br.d-md-none {
    display: none;
  }
  .container {
    max-width: 373px;
    padding: 0 10px;
  }
  .btn {
    padding: 10px 20px;
    height: 50px;
    font-size: 14px;
  }
  .form {
    padding: 20px 16px;
  }
  .form__title {
    margin-bottom: 0;
    font-size: 22px;
  }
  .form__subtitle {
    margin: 0 0 12px 0;
  }
  .form__field {
    margin-bottom: 12px;
  }
  .form__field input {
    padding: 18px;
    height: 68px;
  }
  .form__policy {
    margin-left: 0;
    margin-right: 0;
    margin-top: 12px;
    gap: 9px;
    font-size: 12px;
  }
  .form__policy:before {
    width: 18px;
    height: 18px;
  }
  .form .btn {
    height: 68px;
  }
  .modal .is-compact .fancybox__content > .f-button.is-close-btn,
  .modal .f-button.is-close-btn {
    top: 10px;
    right: 8px;
  }
  .modal .is-compact .fancybox__content > .f-button.is-close-btn svg,
  .modal .f-button.is-close-btn svg {
    fill: #262626;
    stroke: #262626;
  }
  .section__title {
    margin-bottom: 24px;
  }
  .section__title h1 {
    font-size: 26px;
  }
  .section__title h2 {
    font-size: 24px;
  }
  .section__title p {
    margin-top: 16px;
    font-size: 16px;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 76px;
    height: 76px;
  }
  .header {
    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .header__wrapper {
    gap: 12px;
  }
  .header .logo {
    gap: 4px;
  }
  .header .logo img {
    width: 31px;
  }
  .header .logo span {
    font-size: 8px;
    line-height: 1.2;
  }
  .header__right {
    margin-left: 0;
  }
  .header__worktime {
    font-size: 8px;
    gap: 4px;
  }
  .header__worktime:before {
    width: 6px;
    height: 6px;
  }
  .header__phone {
    font-size: 16px;
    margin-top: 3px;
    margin-bottom: 0;
  }
  .header__phone:before {
    display: none;
  }
  .header__callback {
    display: none;
  }
  .hero {
    padding-top: 90px;
    -webkit-background-size: auto 900px !important;
       -moz-background-size: auto 900px !important;
         -o-background-size: auto 900px !important;
            background-size: auto 900px !important;
    background-position: center top !important;
    padding-bottom: 0;
  }
  .hero.--thanks {
    padding: 100px 0 300px;
    background-position: center -120px !important;
  }
  .hero.--thanks .section__title {
    text-align: center;
  }
  .hero.--thanks .btn {
    margin: 0 auto;
  }
  .hero__list {
    width: 100%;
  }
  .hero__list li {
    font-size: 14px;
  }
  .hero__list li b {
    display: block;
  }
  .hero__bottom {
    margin-top: 305px;
    -webkit-box-shadow: 0 4px 92px 0 rgba(0, 0, 0, 0.07);
       -moz-box-shadow: 0 4px 92px 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 4px 92px 0 rgba(0, 0, 0, 0.07);
    background: #212022;
    gap: 16px;
  }
  .hero__bottom > * {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
       -moz-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .hero__bottom--title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .hero__bottom .--line {
    width: 100%;
    height: 1px;
  }
  .hero__phone {
    width: 100%;
  }
  .hero__phone p {
    margin-bottom: 8px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__phone a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .hero__messengers {
    margin-top: 0;
    width: 100%;
  }
  .hero__messengers a {
    width: 100%;
    padding-right: 44px;
  }
  .hero .form {
    width: 100%;
  }
  .hero .form__title {
    margin-bottom: 4px;
    font-size: 20px;
  }
  .services__list {
    gap: 9px;
  }
  .services__item {
    width: -webkit-calc(50% - 4.5px);
    width: -moz-calc(50% - 4.5px);
    width: calc(50% - 4.5px);
  }
  .services__item--title {
    height: 70px;
    font-size: 16px;
    padding: 12px;
  }
  .service .section__title h2 {
    max-width: 280px;
    margin: 0 auto;
  }
  .service__list {
    gap: 11px;
  }
  .service__item {
    width: -webkit-calc(50% - 5.5px);
    width: -moz-calc(50% - 5.5px);
    width: calc(50% - 5.5px);
    padding: 8px 8px 12px 8px;
  }
  .service__item--img {
    height: 112px;
    margin-bottom: 12px;
  }
  .service__item--img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .service__item--title {
    font-size: 16px;
  }
  .service__item--text {
    margin: 12px 0;
  }
  .service__item--text li {
    font-size: 11px;
  }
  .service__item--price {
    font-size: 16px;
  }
  .about {
    -webkit-background-size: auto 482px !important;
       -moz-background-size: auto 482px !important;
         -o-background-size: auto 482px !important;
            background-size: auto 482px !important;
    background-position: -150px 41px !important;
  }
  .about .section__title {
    text-align: center;
    margin-bottom: 400px;
  }
  .about__block {
    width: 100%;
    margin-left: 0;
  }
  .about__list {
    gap: 8px;
  }
  .about__item {
    padding: 10px;
  }
  .about__item img {
    width: 44px;
  }
  .about__item--title {
    font-size: 16px;
  }
  .about__item--text {
    font-size: 14px;
  }
  .faq__list {
    gap: 16px;
  }
  .faq__item--title {
    padding: 8px 16px;
  }
  .faq__item--title:before {
    height: -webkit-calc(100% - 32px);
    height: -moz-calc(100% - 32px);
    height: calc(100% - 32px);
    width: 4px;
  }
  .faq__item--text {
    margin-top: 0;
    padding: 0 16px 8px 16px;
  }
  .contacts {
    overflow: hidden;
  }
  .contacts__map {
    height: 440px;
    overflow: hidden;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    position: relative;
  }
  .contacts__map img {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
  }
  .contacts__map img:nth-child(1) {
    display: none;
  }
  .contacts__map img:nth-child(2) {
    display: block;
  }
  .contacts__block {
    padding: 0;
  }
  .contacts__info {
    margin-top: -45px;
    width: 100%;
  }
  .contacts__info .btn {
    height: 68px;
  }
  .footer__wrapper {
    gap: 24px;
  }
  .footer__menu--title {
    margin-bottom: 16px;
    text-align: center;
  }
  .footer__menu ul {
    width: 100%;
    gap: 16px;
  }
  .footer__menu ul li {
    width: 100% !important;
    text-align: center;
  }
  .footer__right {
    width: 100%;
    text-align: center;
  }
  .footer__right a {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__callback {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__bottom {
    margin-top: 8px;
    display: block;
    text-align: center;
  }
  .footer__bottom a {
    margin: 0 auto;
  }
  .footer__bottom p {
    margin-top: 18px;
  }
  .cookie {
    bottom: 10px;
    right: 10px;
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    -webkit-border-radius: 8px;
       -moz-border-radius: 8px;
            border-radius: 8px;
    gap: 8px;
    padding: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cookie__info {
    text-align: center;
    font-size: 12px;
  }
  .cookie .btn {
    width: 80px;
    height: 40px;
  }
  .reviews__list {
    gap: 18px;
  }
  .reviews .btn {
    margin-top: 18px;
  }
  .reviews .--btns {
    margin-top: 18px;
    gap: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reviews .swiper-pagination {
    display: none;
  }
  .reviews .swiper-button-prev {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }
  .reviews .swiper-button-next {
    position: relative;
    top: 0;
    right: 0;
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .reviews__item {
    padding: 12px 12px 20px 12px;
    display: block;
  }
  .reviews__item--img {
    margin-bottom: 16px;
    min-height: 350px;
  }
  .reviews__item--info {
    width: 100%;
  }
  .reviews__item--top img {
    width: 95px;
  }
  .guarantee {
    background-image: url(../img/guarantee__bg--mob.webp) !important;
  }
  .guarantee .section__title {
    margin-bottom: 415px;
  }
  .guarantee .section__title h2 {
    text-align: center;
  }
  .guarantee__list {
    width: 100%;
    gap: 8px;
  }
  .guarantee__item {
    padding: 12px;
    -webkit-border-radius: 24px;
       -moz-border-radius: 24px;
            border-radius: 24px;
    gap: 12px;
  }
  .guarantee__item--num {
    min-width: 49px;
    font-size: 42px;
  }
  .guarantee__item--title {
    font-size: 14px;
    line-height: 1.2;
  }
  .guarantee__item--title b {
    display: block;
  }
  .teams__list {
    gap: 8px;
  }
  .teams__item {
    padding: 4px;
    width: -webkit-calc(50% - 4px);
    width: -moz-calc(50% - 4px);
    width: calc(50% - 4px);
  }
  .teams__item--info {
    margin-top: 8px;
    padding: 16px 8px;
  }
  .call .form form {
    gap: 12px;
  }
  .call .form__field {
    width: 100%;
  }
  .call .form .btn {
    width: 100%;
  }
  .promo .section__title {
    text-align: center;
  }
  .promo .section__title h2 {
    font-size: 24px;
  }
  .promo__timer {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .promo__timer p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .promo__timer .--timer {
    text-align: center;
    width: 100%;
    font-size: 68px;
  }
  .promo .form__field {
    width: 100%;
  }
}
@media (max-width: 374px) {
  .header .logo span {
    display: none;
  }
  .hero {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 22px;
  }
  .hero .form__title {
    font-size: 16px;
  }
  .form__policy {
    font-size: 12px;
  }
}