:root {
  --primary-blue: #15b2f5;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

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

body {
  font-family: "Manrope", sans-serif;
}

body.locked {
  overflow: hidden;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
  border-radius: 18px;
  padding: 24px 80px;
  background: var(--primary-blue);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: Manrope, sans-serif;
}

.btn:hover {
  background: #222;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  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;
  z-index: 2;
  display: none;
}

.modal__wrapper .modal {
  background: white;
  padding: 80px 60px;
  border-radius: 5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__wrapper .modal__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  text-align: center;
  color: #222;
  padding-bottom: 20px;
}

.modal__wrapper .modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.modal__wrapper .modal__descr {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  color: #444;
  max-width: 410px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.modal__wrapper .modal__form {
  padding: 60px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-width: 560px;
}

.modal__wrapper .modal__form input {
  border-radius: 15px;
  width: 48%;
  padding: 15px;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #27313d;
  font-family: Manrope, sans-serif;
  outline: none;
}

.modal__wrapper .modal__btn {
  width: 48%;
  border-radius: 15px;
  padding: 25px 15px;
  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;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: var(--primary-blue);
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  text-align: right;
  color: #fff;
}

.modal__wrapper .modal__disclaimer {
  font-weight: 400;
  font-size: 18px;
  margin: 0 auto;
  line-height: 110%;
  text-align: center;
  color: #444;
  max-width: 370px;
  display: block;
}

.modal__wrapper .modal__disclaimer a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--primary-blue);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal__wrapper .modal__disclaimer a:hover {
  color: #0ea5e9;
}

.review__form__disclaimer a {
  color: var(--primary-blue);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.review__form__disclaimer a:hover {
  color: #0ea5e9;
}
/* Стили для формы отзывов */
.review__modal__wrapper {
  z-index: 10001;
}

.review__modal {
  width: 450px;
  max-height: 90vh;
  overflow-y: auto;
}

.review__form__field {
  margin-bottom: 20px;
}
.modal__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  gap: 5px;
}
.review__form__label {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.review__form {
  padding-top: 20px;
}
.review__form__input,
.review__form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #222;
  border-radius: 8px;
  background: #fff;
  color: #222;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.review__form__input:focus,
.review__form__textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.review__form__input::placeholder,
.review__form__textarea::placeholder {
  color: #9ca3af;
}

.review__form__textarea {
  resize: vertical;
  min-height: 100px;
}

.review__form__counter {
  text-align: right;
  margin-top: 5px;
  font-size: 12px;
  color: #9ca3af;
}

.review__rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}
.brands__button-wrapper {
  display: block;
  margin-top: 30px;
}
.review__rating input[type="radio"] {
  display: none;
}

.review__star {
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.review__star:hover,
.review__star:hover ~ .review__star,
.review__rating input[type="radio"]:checked ~ label {
  color: #ffd700;
}

.review__form__button {
  width: 100%;
  margin: 20px 0 10px 0;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.review__form__disclaimer {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #222;
  line-height: 1.4;
}

/* Анимация для отправки отзыва */
.review__form__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.review__success {
  text-align: center;
  padding: 30px 20px;
}

.review__success__icon {
  width: 60px;
  height: 60px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.review__success h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 10px;
  font-weight: bold;
}

.review__success p {
  color: #d1d5db;
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.4;
}
.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 40px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 22px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__inner {
  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;
  width: 100%;
}

.header__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

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

.header__address__city--text {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #222;
}

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

.header__address__street--text {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.header__contacts__time--text {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

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

.header__contacts__phone--text {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

.burger {
  display: none;
  -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;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 99999;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.burger.burger--active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  -ms-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.burger--active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.burger.burger--active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -4px);
  -ms-transform: rotate(-45deg) translate(5px, -4px);
  transform: rotate(-45deg) translate(5px, -4px);
}

.logo__mobile {
  display: none;
}
.logo {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 80px;
}
/* Для мобильных 100px ширина максимальная */
@media (max-width: 991.98px) {
  .logo {
    max-width: 100px;
  }
}
.logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.logo img {
  width: 100%;
  height: 100%;
}
.menu__item {
  position: relative;
  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;
  gap: 10px;
  border-radius: 18px;
  padding: 10px 16px;
  background: #e9f0f3;
}

.menu__item--request {
  background: var(--primary-blue);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__item--request .menu__item-link {
  gap: 16px;
  color: #fff;
}

.menu__item--request .menu__item-link:hover {
  color: #fff;
}

.menu__item--request:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.menu__item-link {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #444;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__item-link:hover {
  color: var(--primary-blue);
}

.menu__item--dropdown .menu__item-link {
  position: relative;
}

.menu__item--dropdown .menu__item-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu__item--dropdown:hover .menu__item-link::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu .dropdown {
  position: absolute;
  top: 100%;
  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;
  left: 0;
  min-width: 239px;
  background: #e9f0f3;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
  list-style: none;
  margin: 0;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu .menu__item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.menu .dropdown__item {
  margin: 0;
}

.menu .dropdown__link {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #444;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu .dropdown__link:hover {
  color: var(--primary-blue);
}

.header__phone--mobile {
  display: none;
}

.header__address__city--dropdown {
  position: relative;
  cursor: pointer;
}

.city-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--primary-blue);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease;
  max-height: 300px;
  overflow-y: auto;
}

.header__address__city--dropdown:hover .city-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.city-dropdown__item {
  padding: 12px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.city-dropdown__item:hover {
  background-color: #f8f9fa;
}

.city-dropdown__item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #222;
}

/* Фиксированная навигация для мобильных */
@media screen and (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
  }
  
  .navbar .container {
    padding: 0 20px;
  }
  
  .navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), #0ea5e9, #22d3ee);
  }
  
  /* Отступ для body чтобы контент не скрывался под фиксированной навигацией */
  body {
    padding-top: 67px;
  }
}

.hero {
  padding: 40px 0;
}

.hero__wrapper {
  position: relative;
  padding: 50px 100px 53px 100px;
  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;
  height: 640px;
}

.hero__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  color: #fff;
  width: 100%;
}

.hero__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
  padding-bottom: 12px;
}

.hero__subtitle span {
  background: var(--primary-blue);
  width: 40px;
  height: 3px;
  display: block;
  margin-bottom: 10px;
}

.hero__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 160px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero__button-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 19px;
}

.hero__btn {
  font-weight: 500;
  font-size: 26px;
  line-height: 110%;
  color: #fff;
}

.hero__button--disclaimer {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  line-height: 110%;
  color: #fff;
}

.hero__row-first {
  position: absolute;
  left: 80px;
  top: 208px;
  width: 86%;
  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;
}

.hero__row-second {
  position: absolute;
  left: 118px;
  bottom: 233px;
  width: 80%;
  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;
}

.hero__row--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 21px;
  border-radius: 15px;
  padding: 12px 14px;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background: rgba(221, 226, 255, 0.8);
}

.hero__row__item--text--title {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: #222;
}

.hero__row__item--text--subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #222;
  padding-top: 7px;
}

.hero__background-mobile {
  display: none;
}

.remont {
  padding: 40px 0;
}

.remont__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 40px;
}

.remont__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.remont__item {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: none;
}

.remont__item.remont__item--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: block;
}

.remont__item:nth-child(-n + 6) {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: block;
}

.remont__item {
  position: relative;
  border-radius: 16px;
  padding: 20px 0 25px 24px;
  width: 100%;
  height: 220px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.remont__item:hover {
  -webkit-box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.67);
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.67);
}

.remont__item--icon {
  position: absolute;
  left: 24px;
  bottom: 25px;
}

.remont__item--title-block {
  border-radius: 8px;
  padding: 9px 20px;
  background: #525b82;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.remont__item--title {
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #fff;
}

.remont__item--img {
  position: absolute;
  right: -52px;
  bottom: 0;
  z-index: 1;
}

.remont__item--img-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.remont__btn {
  margin: 0 auto;
  display: block;
  margin-top: 30px;
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
  color: #fff;
}

.remont__item--img-back-mobile {
  display: none;
}

.brands {
  padding: 40px 0;
}

.brands__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 40px;
}

.brands__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.brands__item--img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 100px;
}
.brands__item {
  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;
  gap: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: #fff;
  width: 100%;
  height: 171px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  display: none;
}

.brands__item:hover {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  box-shadow: 0 4px 4px 0 #17b2f5;
}

.brands__item.brands__item--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.brands__item--name {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 0.08em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--primary-blue);
}

.brands__btn {
  margin: 0 auto;
  display: block;
  margin-top: 30px;
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
  color: #fff;
}

.steps {
  padding: 40px 0;
}

.steps__wrapper {
  background: #212844;
  position: relative;
  padding: 50px 50px 50px 50px;
  border-radius: 16px;
  overflow: hidden;
}

.steps__img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.steps__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #fff;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}

.steps__items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.steps__wrapper-block {
  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;
  position: relative;
  z-index: 2;
  gap: 10px;
}

.steps__item {
  border-radius: 15px;
  background: #1a203a;
  padding: 20px 24px 26px 24px;
  height: 155px;
}

.steps__item--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
}

.steps__item--title {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: #fff;
}

.steps__item--text {
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: #fff;
}

.steps__sale {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 35px 20px 37px 20px;
  border-radius: 15px;
  overflow: hidden;
}

.steps__sale--back-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.steps__sale__percent {
  position: relative;
  z-index: 3;
  border-radius: 39px;
  padding: 3px 18px;
  background: #222;
  margin-bottom: 25px;
}

.steps__sale__percent--text {
  font-weight: 800;
  font-size: 52px;
  line-height: 110%;
  text-align: right;
  color: #fff;
}

.steps__sale--title {
  position: relative;
  z-index: 3;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.steps__sale--description {
  position: relative;
  z-index: 3;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}

.steps__sale__form {
  position: relative;
  z-index: 3;
  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: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.steps__sale__form input {
  border-radius: 15px;
  padding: 25px 88px;
  width: 100%;
  -webkit-box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  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: Manrope, sans-serif;
  outline: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

.steps__sale__form--btn {
  border-radius: 15px;
  padding: 19px 40px;
  width: 100%;
  background: #222;
  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-weight: 800;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.steps__sale__form--btn:hover {
  background: #1a203a;
}



.price__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 40px;
}

.price__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.price__item {
  width: 100%;
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 27px 50px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: none;
}

.price__item.price__item--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.price__item--name {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #444;
}

.price__item--price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price__item--price-block:hover svg {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.price__item--price-block svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price__item--price {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  text-align: right;
  color: var(--primary-blue);
}

.price__btns-block {
  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;
  gap: 20px;
  margin-top: 30px;
}

.price__all-btn {
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
  color: #fff;
}

.price__more-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 24px 80px;
  border-radius: 25px;
  font-size: 22px;
  line-height: 110%;
  font-weight: 500;
  font-family: "Manrope";
  cursor: pointer;
  transition: background 0.3s ease;
}

.info {
  padding: 40px 0;
}

.info__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 40px;
}

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

.info__item {
  border-radius: 16px;
  padding: 30px 30px 50px 30px;
  background: #f0f4ff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.info__item--img-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.info__item--icon {
  width: 40px;
  height: 40px;
}

.info__item--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.info__item--title {
  font-weight: 700;
  font-size: 24px;
  font-family: "Inter Tight", sans-serif;
  line-height: 110%;
  color: #222;
  margin: 0;
}

.info__item--description {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 18px;
  display: block;
  line-height: 110%;
  color: #444;
  position: relative;
  z-index: 2;
}

.info__item--img-top {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}


.guarantee__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 40px;
}

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

.guarantee__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 629px;
}

.guarantee__main {
  position: relative;
  background: #212844;
  border-radius: 15px;
  padding: 48px 31px 38px 196px;
}

.guarantee__main--img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.guarantee__main--title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #fff;
  padding-bottom: 24px;
}

.guarantee__main--description {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #efecec;
}

.guarantee__pay {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #cbe6f2;
  padding: 36px 34px 52px 34px;
}

.guarantee__pay--img-terminal {
  position: absolute;
  right: 0;
  top: 0;
}

.guarantee__pay--img-cards {
  position: absolute;
  right: 34px;
  bottom: 56px;
}

.guarantee__pay--title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #222;
  padding-bottom: 44px;
}

.guarantee__pay--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.guarantee__pay--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.guarantee__pay--item--text {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

.guarantee__right {
  border-radius: 15px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#008ecc),
    to(#4d92b1)
  );
  background: -o-linear-gradient(top, #008ecc 0%, #4d92b1 100%);
  background: linear-gradient(180deg, #008ecc 0%, #4d92b1 100%);
  position: relative;
  overflow: hidden;
  padding: 128px 32px 45px 32px;
  height: 687px;
}

.guarantee__right ul {
  font-weight: 400;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  line-height: 120%;
  color: #efecec;
  padding-left: 20px;
}

.guarantee__right li {
  list-style: disc;
}

.guarantee__right--img {
  position: absolute;
  top: 0;
  width: 100%;
  right: 0;
}

.guarantee__right--title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #fff;
}

.guarantee__right--description {
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 32px;
  padding-top: 23px;
  display: block;
  line-height: 110%;
  color: #efecec;
}

.guarantee__right--link {
  border-radius: 30px;
  padding: 23px 34px;
  background: #222;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 110%;
  color: #fff;
  display: block;
  margin-top: 80px;
  max-width: 368px;
}

.guarantee__main--img-mobile,
.guarantee__pay--img-terminal-mobile {
  display: none;
}

.about {
  padding: 40px 0;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__info--title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 34px;
}

.about__info--description {
  font-weight: 400;
  font-size: 21px;
  line-height: 110%;
  color: #444;
  padding-bottom: 25px;
  display: block;
}

.about__info--description:last-child {
  padding-bottom: 0;
}

.about__items {
  padding-top: 80px;
  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;
}

.about__item--title {
  font-weight: 700;
  font-size: 90px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.about__item--description {
  font-weight: 400;
  font-size: 21px;
  color: #555;
}

.territory {
  padding: 40px 0;
}

.territory__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #222;
  padding-bottom: 40px;
}

.territory__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #444;
  padding-bottom: 40px;
  display: block;
}

.territory__text:last-child {
  padding-bottom: 0;
}

.workers {
  padding: 40px 0;
}

.workers__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #222;
  padding-bottom: 40px;
}

.splide__arrow--prev {
  left: -4em;
  transform: translateY(-50%) rotate(180deg);
}

.splide__arrow--next {
  right: -4em;
}
.splide__arrow {
  padding: 12px;
  width: 56px;
  height: 56px;
  background: var(--primary-blue);
}
.splide__arrow svg {
  width: 24px;
  height: 24px;
}
.splide__arrow svg {
  fill: none;
}

.workers__slide {
  border: 1px solid #6d94d0;
  border-radius: 15px;
  overflow: hidden;
  border-radius: 21px;
}

.workers__slide img {
  width: 100%;
  transform: scale(-1, 1);
  border-radius: 21px;
}

.workers__slide--text-block {
  padding: 16px 16px 30px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.workers__slide--name {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #222;
}

.workers__slide--grade {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #3e93ba;
}

.workers__btn {
  border-radius: 30px;
  padding: 23px 34px;
  font-weight: 700;
  font-size: 18px;
  font-family: Manrope, sans-serif;
  line-height: 110%;
  color: #fff;
  background: #222;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  width: 368px;
}

.workers__btn:hover {
  background: var(--primary-blue);
}

.reviews {
  padding: 40px 0;
}

.reviews__wrapper {
  border-radius: 16px;
  background: #212844;
  position: relative;
  overflow: hidden;
  padding: 50px 75px 50px 75px;
}

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

.reviews__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #fff;
  padding-bottom: 20px;
  text-align: center;
}

.reviews__slide {
  margin: 0 auto;
  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;
  max-width: 800px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews__slide--text {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}

.reviews__slide--name {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
  padding-bottom: 14px;
}

.reviews__slide--grade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.reviews__btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: #fff;
  max-width: 390px;
}

.faq {
  padding: 40px 0;
}

.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq__info {
  max-width: 530px;
}

.faq__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
}

.faq__info--links {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}

.faq__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: #444;
}

.faq__info--link {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #95bafe;
}

.faq__questions {
  max-width: 630px;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.accordion .accordion__item.accordion__item-active .accordion__item-content {
  display: block;
}

.accordion .accordion__item.accordion__item-active .trigger__img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion .accordion__item.accordion__item-active .trigger__img img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion .accordion__item .trigger__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #222;
}

.accordion .accordion__item .accordion__item-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.accordion .accordion__item .accordion__item-trigger .trigger__img {
  position: relative;
  margin-left: auto;
}

.accordion .accordion__item .accordion__item-content {
  padding-bottom: 20px;
  padding-top: 10px;
  display: none;
  -webkit-animation: fade 0.3s ease;
  animation: fade 0.3s ease;
}

.accordion .accordion__item .accordion__item-content .content__text {
  margin-top: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #242833;
}

.accordion
  .accordion__item
  .accordion__item-content
  .content__text:first-child {
  margin-top: 0;
}

.questions {
  margin: 40px 0;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#6ebee2),
    to(#6e9ce2)
  );
  background: -o-linear-gradient(top, #6ebee2 0%, #6e9ce2 100%);
  background: linear-gradient(180deg, #6ebee2 0%, #6e9ce2 100%);
  overflow: hidden;
}

.questions__wrapper {
  padding: 70px 0;
}

.questions__title {
  font-weight: 800;
  font-size: 52px;
  line-height: 110%;
  color: #fff;
  max-width: 660px;
  padding-bottom: 20px;
}

.questions__subtitle-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  max-width: 570px;
  padding-bottom: 90px;
}

.questions__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #d3f2ff;
}

.questions__btn {
  border-radius: 18px;
  padding: 24px 28px;
  background: #222;
  font-weight: 500;
  font-size: 22px;
  line-height: 110%;
  text-align: right;
  color: #fff;
}

.questions__btn:hover {
  background: #222945;
}

.questions__back {
  position: absolute;
  bottom: 0;
  right: -200px;
}

.problem {
  padding: 40px 0;
}

.problem__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 40px;
}

.problem__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem__item {
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  width: 100%;
  height: 200px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: #fff;
  padding: 30px;
  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;
}

.problem__item--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #444;
}

.problem__item--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.problem__item--link span {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: var(--primary-blue);
}

.problem__item--link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.problem__item--link:hover svg {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



.more__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding-bottom: 20px;
}

.more__description {
  font-weight: 400;
  font-size: 24px;
  display: block;
  line-height: 110%;
  color: #444;
  padding-bottom: 60px;
}

.more__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.more__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.more__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.more__item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #F0F8FF;
  border-radius: 12px;
  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;
}

.more__item-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.more__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #222;
  margin-bottom: 8px;
}

.more__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #444;
}

.garantia {
  padding: 40px 0;
}

.garantia__wrapper {
  position: relative;
  padding: 93px 0 93px 120px;
  overflow: hidden;
  border-radius: 16px;
}

.garantia__title {
  font-weight: 700;
  font-size: 55px;
  line-height: 110%;
  color: #fff;
  position: relative;
  z-index: 2;
}

.garantia__back-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.garantia__center-img {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.garantia__right-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.garantia__bottom-img {
  display: none;
}

.garantia__description {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: #444;
  padding: 80px 0;
  display: block;
}

.garantia__period,
.garantia__condition,
.garantia__steps {
  padding-bottom: 80px;
}

.garantia__period .garantia__description,
.garantia__condition .garantia__description,
.garantia__steps .garantia__description {
  padding: 0;
}

.garantia__condition .garantia__description {
  margin-bottom: 50px;
}

.garantia__condition ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}

.garantia__condition li {
  list-style: numeric;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  color: #444;
}

.garantia__steps {
  padding-bottom: 0;
}

.garantia__steps .garantia__description {
  margin-bottom: 20px;
}

.garantia__subtitle {
  padding-bottom: 20px;
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
}

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

.garantia__steps--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  max-width: 413px;
}

.garantia__steps--item--number {
  font-weight: 800;
  font-size: 250px;
  line-height: 110%;
  color: #caefff;
}

.garantia__steps--item--title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #444;
  padding-bottom: 10px;
}

.garantia__steps__item--text {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: #444;
}

.garantia__mobile {
  display: none;
}

.reviews-all {
  padding: 40px 0;
}

.reviews-all--btn {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: #fff;
  display: block;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
}

.reviews-all__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.reviews-all__item {
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  padding: 40px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: #fff;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 200px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reviews-all__item:nth-child(-n + 4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.reviews-all__item--visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.reviews-all__item--info {
  max-width: 200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.reviews-all__item--name {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: #222;
}

.reviews-all__item--grade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.reviews-all__item--text {
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: #444;
}

.reviews-all--btn-more {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  color: #fff;
}

.about-all {
  padding: 40px 0;
}

.about-all__items {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-all__item {
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  width: 100%;
  padding: 40px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 75px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-all__item:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(21, 178, 245, 0.15);
  box-shadow: 0 8px 25px rgba(21, 178, 245, 0.15);
  border-color: #0ea5e9;
}

.about-all__item:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 4px 15px rgba(21, 178, 245, 0.2);
  box-shadow: 0 4px 15px rgba(21, 178, 245, 0.2);
}

.about-all__item--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-all__item--name {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: #c6cfed;
}

.about-all__item--text {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: #222;
}

.about-all__item-last {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: var(--primary-blue);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 40px;
}

.about-all__item--icon-last {
  width: 76px;
  height: 76px;
}

.about-all__item--text-last {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #fff;
}

.price-all {
  padding: 40px 0;
}

.price-all__info {
  padding-top: 40px;
}

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

.price-all__tab {
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  padding: 12px 20px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price-all__tab:hover {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.price-all__tab-active {
  background: var(--primary-blue);
}

.price-all__tab-active .price-all__tab--name {
  color: #fff;
}

.price-all__tab--name {
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #222;
}

.price-all__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #222;
  padding: 30px 0;
}

.price-all__tab--content {
  display: none;
}

.price-all__tab--content:first-child {
  display: block;
}

.price-all__mobile-select {
  display: none;
  position: relative;
  margin-bottom: 20px;
}

.price-all__mobile-select--trigger {
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  padding: 12px 20px;
  background: #fff;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.price-all__mobile-select--trigger:hover {
  border-color: #0ea5e9;
}

.price-all__mobile-select--text {
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #222;
}

.price-all__mobile-select--arrow {
  width: 24px;
  height: 24px;
  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;
  background: var(--primary-blue);
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.price-all__mobile-select--arrow svg {
  width: 16px;
  height: 16px;
}

.price-all__mobile-select--arrow svg path {
  stroke: #fff;
}

.price-all__mobile-select--options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
  -o-transition: max-height 0.3s ease, opacity 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  margin-top: 4px;
  opacity: 0;
}

.price-all__mobile-select--option {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.price-all__mobile-select--option:hover {
  background: #f8f9fa;
}

.price-all__mobile-select--option:first-child {
  border-radius: 16px 16px 0 0;
}

.price-all__mobile-select--option:last-child {
  border-radius: 0 0 16px 16px;
}

.price-all__mobile-select--option span {
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #222;
}

.price-all__mobile-select--option .price-all__tab--icon {
  width: 20px;
  height: 20px;
}

.price-all__mobile-select.active .price-all__mobile-select--arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.price-all__mobile-select.active .price-all__mobile-select--options {
  max-height: 300px;
  opacity: 1;
  overflow-y: auto;
}

.akcia {
  padding: 40px 0;
}

.akcia__items {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

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

.akcia__item {
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  padding: 40px 37px;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05),
    0 6px 13px 0 rgba(0, 0, 0, 0.05), 0 24px 24px 0 rgba(0, 0, 0, 0.04),
    0 54px 33px 0 rgba(0, 0, 0, 0.03), 0 97px 39px 0 rgba(0, 0, 0, 0.01),
    0 151px 42px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05), 0 6px 13px 0 rgba(0, 0, 0, 0.05),
    0 24px 24px 0 rgba(0, 0, 0, 0.04), 0 54px 33px 0 rgba(0, 0, 0, 0.03),
    0 97px 39px 0 rgba(0, 0, 0, 0.01), 0 151px 42px 0 rgba(0, 0, 0, 0);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 556px;
}

.akcia__item--percent {
  border-radius: 39px;
  padding: 3px 18px;
  background: #222;
  margin-bottom: 100px;
}

.akica__item--percent--text {
  font-weight: 800;
  font-size: 80px;
  line-height: 110%;
  text-align: right;
  color: #fff;
}

.akcia__item--title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  text-align: center;
  color: #222;
  padding-bottom: 20px;
}

.akcia__item--description {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #444;
}

.akcia__bottom--item {
  background: #212844;
  width: 100%;
  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;
  padding: 40px 20px;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.akcia__bottom--item--percent {
  border-radius: 39px;
  padding: 3px 18px;
  background: #6f8dce;
  margin-bottom: 80px;
}

.akcia__bottom--item--percent--text {
  font-size: 80px;
  font-weight: 800;
  line-height: 110%;
  text-align: right;
  color: #fff;
}

.akcia__bottom--item--title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}

.akcia__bottom--item--text {
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #98c3fb;
}

.contacts {
  padding: 40px 0;
  padding-bottom: 0;
  overflow: hidden;
}

.contacts-page .questions {
  margin-top: 0;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 200px;
  border-radius: 16px;
  padding: 16px 0;
  margin: 40px 0;
  overflow: hidden;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contacts__wrapper-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.contacts__item-left,
.contacts__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}

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

.contacts__item--city {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #222;
}

.contacts__item--street {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #222;
}

.contacts__item--time {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #222;
}

.contacts__item a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacts__item a:hover {
  color: var(--primary-blue);
}

.contacts__connect-btn {
  padding: 12px 24px !important;
  font-size: 20px !important;
  font-weight: 500;
  border: none;
  cursor: pointer;
  color: white;
  align-items: center;
  justify-content: center;
  min-width: auto;
  white-space: nowrap;
}

.contacts__connect-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contacts__phone-number {
  font-weight: 700 !important;
  font-size: 21px !important;
  color: var(--primary-blue) !important;
  background: linear-gradient(135deg, rgba(21, 178, 245, 0.1) 0%, rgba(21, 178, 245, 0.05) 100%);
  padding: 8px 16px !important;
  border-radius: 12px;
  border: 2px solid rgba(21, 178, 245, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.contacts__phone-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.contacts__phone-number:hover {
  color: white !important;
  background: var(--primary-blue) !important;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 178, 245, 0.3);
}

.contacts__phone-number:hover::before {
  left: 100%;
}

.contacts__phone-number:active {
  transform: translateY(0);
}

.map {
  width: 100%;
  height: 600px;
  padding: 40px 0;
}

.map #yandex-map {
  height: 600px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.vopros {
  padding: 40px 0;
}

.vopros .faq__wrapper {
  padding-top: 40px;
}

footer {
  display: block;
  padding-bottom: 40px;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 78px;
}

.footer__logo {
  max-width: 300px; /* Увеличиваем максимальную ширину */
  width: 100%;
  height: auto; /* Автоматическая высота для естественных пропорций */
  min-height: 80px; /* Минимальная высота */
}

.footer__logo img {
  width: 100%;
  height: auto; /* Автоматическая высота сохраняет пропорции */
  max-height: 100px; /* Максимальная высота */
  object-fit: contain; /* Сохраняет пропорции логотипа в футере */
}

.footer__about--copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__about--copyright--text {
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: #222;
}

.footer__about--copyright--link {
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: #95bafe;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
  max-width: 650px;
}

.footer__nav--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 160px;
}

.footer__nav--info--address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__nav--info--address--city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer__nav--info--address--city span {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #222;
}

.footer__nav--info--address--street {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer__nav--info--address--street span {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

.footer__nav--info--contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__nav--info--contacts--time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer__nav--info--contacts--time span {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #444;
}

.footer__nav--info--contacts--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer__nav--info--contacts--phone a {
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  text-align: right;
  color: #444;
}

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

.footer__nav--item {
  position: relative;
}

.footer__nav--item--link {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  text-align: right;
  color: #444;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__nav--item--link:hover {
  color: var(--primary-blue);
}

.footer__nav--item--dropdown {
  position: relative;
}

.footer__nav--item--dropdown .footer__nav--item--link {
  position: relative;
}

.footer__nav--item--dropdown .footer__nav--item--link::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #444;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer__nav--item--dropdown:hover .footer__nav--item--link::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.footer__nav--item--dropdown .dropdown {
  position: absolute;
  top: auto;
  bottom: calc(100% - 1px);
  left: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
  background: #e9f0f3;
  border-radius: 15px;
  max-height: 300px;
  overflow-y: auto;
  padding: 20px;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__nav--item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer__nav--item--dropdown .dropdown__item {
  padding: 0;
}

.footer__nav--item--dropdown .dropdown__link {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #444;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer__nav--item--dropdown .dropdown__link:hover {
  color: var(--primary-blue);
}

.footer__copyright {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  color: #444;
  padding-top: 40px;
  margin: 0 auto;
  width: 100%;
  display: block;
  max-width: 830px;
}

.footer__nav--copyright-mobile {
  display: none;
}

.footer__nav--info--address--city--dropdown {
  position: relative;
  cursor: pointer;
}

.footer-city-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--primary-blue);
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  max-height: 300px;
  overflow-y: auto;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    -webkit-transform 0.3s ease;
}

.footer__nav--info--address--city--dropdown:hover .footer-city-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer-city-dropdown__item {
  padding: 12px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #222;
}

.footer-city-dropdown__item:hover {
  background-color: #f8f9fa;
}

.footer-city-dropdown__item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: #222;
}

@media screen and (min-width: 769px) {
  /* Респонсивные стили для формы отзывов */
  .review__modal {
    width: 350px;
    max-width: 90vw;
  }

  .review__form__label {
    font-size: 13px;
  }

  .review__form__input,
  .review__form__textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .review__star {
    font-size: 24px;
  }

  .review__form__disclaimer {
    font-size: 11px;
  }
  .brands__item:nth-child(-n + 15) {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .price__item:nth-child(-n + 6) {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1449.98px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 970px;
  }

  .header__address,
  .header__contacts {
    display: none;
  }

  .header__phone--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    color: #444;
  }

  .logo {
    width: 100%;
    height: 80px; /* Значительно увеличиваем высоту */
  }

  .logo img {
    /* max-width: 80px; */
    width: 100%;
    height: 100%;
    object-fit: contain; /* Сохраняет пропорции изображения */
  }

  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#008ecc),
      to(#4d92b1)
    );
    background: -o-linear-gradient(top, #008ecc 0%, #4d92b1 100%);
    background: linear-gradient(180deg, #008ecc 0%, #4d92b1 100%);
    padding: 10px 7px;
    width: 34px;
    height: 34px;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 435px;
    background: #fff;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: baseline;
    -ms-flex-pack: baseline;
    justify-content: baseline;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 136px 24px 20px 24px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1000;
    gap: 12px;
    -webkit-box-shadow: 0 250px 500px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 250px 500px 0 rgba(0, 0, 0, 0.03);
    border-radius: 9px;
  }

  .menu.menu--active {
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
  }

  .logo__mobile {
    display: block;
    position: absolute;
    top: 40px;
    left: 24px;
  }

  .menu__item {
    background: transparent;
    border-radius: 0;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .menu__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    display: flex;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.03em;
    color: #222;
  }

  .menu__item--request {
    margin: 0 auto;
    margin-top: 40px;
    background: var(--primary-blue);
    padding: 7px 19px;
    border-radius: 13px;
    gap: 11px;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
  }

  .menu__item--request svg {
    width: 17px;
    height: 17px;
  }

  .menu .dropdown__link {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #444;
  }

  .menu .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    max-width: fit-content;
    min-width: 130px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mobile-call-button {
    border-radius: 20px 20px 0 0;
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue, #1e90ff) 0%, rgba(30, 144, 255, 0.8) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10001;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), 0 -2px 10px rgba(30, 144, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-call-button:hover {
    background: linear-gradient(135deg, var(--primary-blue, #1e90ff) 0%, var(--primary-blue, #1e90ff) 100%);
    transform: translateY(-2px);
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.2), 0 -3px 15px rgba(30, 144, 255, 0.3);
    color: #fff;
    text-decoration: none;
  }

  .mobile-call-button:active {
    transform: translateY(0);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1), 0 -1px 5px rgba(30, 144, 255, 0.2);
  }

  .mobile-call-button svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    animation: pulse-icon 2s infinite ease-in-out;
    color: currentColor;
  }

  .mobile-call-button span {
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  @keyframes pulse-icon {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }

  /* Адаптивные стили для разных экранов */
  @media (max-width: 479.98px) {
    .mobile-call-button {
      padding: 16px 15px;
      font-size: 15px;
      border-radius: 18px 18px 0 0;
    }
    
    .mobile-call-button svg {
      width: 16px;
      height: 16px;
      margin-right: 8px;
    }
    
    .mobile-call-button span {
      font-size: 15px;
    }
  }

  @media (max-width: 320px) {
    .mobile-call-button {
      padding: 14px 12px;
      font-size: 14px;
    }
    
    .mobile-call-button span {
      font-size: 14px;
      letter-spacing: 0.2px;
    }
  }

  /* Дополнительные стили для темной темы */
  @media (prefers-color-scheme: dark) {
    .mobile-call-button {
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3), 0 -2px 10px rgba(30, 144, 255, 0.3);
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
  }

  .menu .dropdown.dropdown--active {
    opacity: 1;
    visibility: visible;
    max-height: 182px;
    overflow-y: auto;
  }

  .menu__item:nth-child(3) .dropdown {
    position: absolute;
    right: -165px;
    left: unset;
    top: -30px;
  }

  .menu__item:nth-child(4) .dropdown {
    position: absolute;
    right: -210px;
    left: unset;
    top: -65px;
  }

  .navbar {
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    padding: 14px 80px;
  }

  .modal__wrapper .modal {
    padding: 50px 20px;
    width: 100%;
  }
  .review__modal__wrapper .modal__title {
    padding-bottom: 20px !important;
    padding-top: 0 !important;
  }
  .modal__wrapper .modal__title {
    font-weight: 700;
    font-size: 28px;
    padding-top: 30px;
    line-height: 110%;
    text-align: center;
    color: #222;
    padding-bottom: 0;
  }

  .modal__wrapper .modal__descr {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: #444;
    padding-top: 10px;
  }

  .modal__wrapper .modal__form {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .modal__wrapper .modal__form input {
    width: 100%;
    padding: 30px 0;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-align: center;
    color: #27313d;
  }

  .modal__wrapper .modal__form .modal__btn {
    width: 100%;
    padding: 24px 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    text-align: right;
    color: #fff;
  }

  .modal__wrapper .modal__disclaimer {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: #444;
  }

  .modal__wrapper .modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .modal__wrapper .modal__close img {
    width: 100%;
    height: 100%;
  }

  .header__address__city--dropdown {
    position: relative;
  }

  .city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
      -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease,
      -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
      -webkit-transform 0.3s ease;
  }

  .header__address__city--dropdown.active .city-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .city-dropdown__item {
    padding: 10px 16px;
  }

  .city-dropdown__item span {
    font-size: 14px;
  }

  .hero {
    padding-top: 0px;
  }

  .hero .container {
    padding: 0;
  }

  .hero__wrapper {
    padding: 40px 20px 40px 20px;
    border-radius: 15px;
  }

  .hero__background {
    display: none;
  }

  .hero__background-mobile {
    display: block;
    border-radius: 15px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }

  .hero__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    color: #fff;
  }

  .hero__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #fff;
  }

  .hero__img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    top: 221px;
    object-fit: contain;
  }

  .hero__btn {
    padding: 20px 80px;
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    color: #fff;
    width: 100%;
    text-align: center;
    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;
  }

  .hero__button--disclaimer {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    color: #fff;
  }

  .hero__row--item {
    border-radius: 15px;
    padding: 6px 8px;
    gap: 10px;
  }

  .hero__row--item svg {
    width: 18px;
    height: 21px;
  }

  .hero__row__item--text--title {
    font-weight: 700;
    font-size: 13px;
    line-height: 110%;
    color: #222;
  }

  .hero__row__item--text--subtitle {
    font-weight: 400;
    font-size: 9px;
    line-height: 110%;
    color: #000;
    padding-top: 0px;
  }
  .hero__row--item--text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .hero__row-first {
    left: 18px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 186px;
    gap: 92px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero__row-second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 112px;
    max-width: 186px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    left: unset;
    right: 16px;
    bottom: 179px;
  }

  .hero__wrapper {
    height: 600px;
  }

  .remont__items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .remont__item {
    padding: 10px 14px 0 14px;
    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: 10px;
    height: 180px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    display: none;
  }

  .remont__item:nth-child(-n + 4) {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .remont__item--title-block {
    border-radius: 8px;
    padding: 4px 8px;
  }

  .remont__item--title {
    font-weight: 700;
    font-size: 10px;
    line-height: 110%;
    text-align: center;
    color: #fff;
  }

  .remont__item--img {
    width: 125px;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .remont__item--icon {
    z-index: 3;
    width: 20px;
    height: 20px;
    position: static;
  }

  .remont__item--img-back-mobile {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .remont__item--img-back {
    display: none;
  }

  .remont__btn {
    font-size: 18px;
  }

  .remont__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .brands__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brands__item {
    gap: 10px;
    height: 98px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    display: none;
  }

  .brands__item img {
    width: 80px;
    height: 50px;
  }

  .brands__item:nth-child(-n + 8) {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .brands__btn {
    font-size: 18px;
  }

  .brands__item--name {
    font-weight: 600;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 0.08em;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-align: center;
    color: var(--primary-blue);
  }

  .brands__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .steps .container {
    padding: 0;
  }

  .steps__wrapper {
    border-radius: 15px;
    padding: 30px 20px;
  }

  .steps__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #fff;
    padding-bottom: 20px;
  }

  .steps__wrapper-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .steps__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .steps__item {
    border-radius: 15px;
    padding: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .steps__item--icon {
    width: 18px;
    height: 18px;
  }

  .steps__item--title {
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    color: #fff;
  }

  .steps__item--text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #fff;
  }

  .steps__sale {
    padding: 34px 20px 54px 20px;
  }

  .steps__sale__percent {
    padding: 2px 13px;
    margin-bottom: 20px;
  }

  .steps__sale__percent--text {
    font-weight: 800;
    font-size: 35px;
    line-height: 110%;
    text-align: right;
    color: #fff;
  }

  .steps__sale--title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
  }

  .steps__sale--description {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    color: #fff;
  }

  .steps__sale__form input {
    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;
    text-align: center;
    border-radius: 15px;
    padding: 25px 67px;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #444;
  }

  .steps__sale__form--btn {
    border-radius: 15px;
    padding: 19px 77px;
    font-weight: 800;
    font-size: 16px;
    line-height: 110%;
    text-align: right;
    color: #fff;
  }

  .price__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .price__item {
    padding: 15px 10px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    display: none;
  }

  .price__item:nth-child(-n + 6) {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .price__item--name {
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    color: #444;
  }

  .price__item--price {
    font-weight: 700;
    font-size: 14px;
    line-height: 110%;
    text-align: right;
    color: var(--primary-blue);
  }

  .price__item--price-block {
    gap: 10px;
  }

  .price__more-btn,
  .price__all-btn {
    width: 100%;
  }
  .price__more-btn-wrapper {
    width: 100%;
  }
  .price__more-btn {
    width: 100%;
    padding: 15px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .more__img {
    width: 100%;
    height: 100%;
    display: none;
  }
  .price__item {
    border-radius: 6px;
  }
  .price__all-btn {
    width: 100%;
    text-align: center;
    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;
  }

  .price__item--price-block svg {
    width: 16px;
    height: 16px;
  }

  .price__btns-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .price__all-btn,
  .price__more-btn {
    font-size: 18px;
  }

  .info__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .info__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .info__item {
    width: 100%;
    max-width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 40px 20px;
    gap: 20px;
  }

  .info__item--header {
    gap: 12px;
  }

  .info__item--title {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #222;
    margin: 0;
  }

  .info__item--description {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #444;
  }

  .guarantee__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .guarantee__main {
    padding: 40px 25px 175px 20px;
  }

  .guarantee__main--title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: #fff;
    padding-bottom: 9px;
  }

  .guarantee__main--description {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #efecec;
  }

  .guarantee__main--img-mobile {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    display: block;
  }

  .guarantee__main--img {
    display: none;
  }

  .guarantee__pay {
    padding: 40px 20px;
  }

  .guarantee__pay--title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: #222;
    padding-bottom: 23px;
  }

  .guarantee__pay--items {
    gap: 16px;
  }

  .guarantee__pay--item {
    gap: 10px;
  }

  .guarantee__pay--item img {
    width: 24px;
    height: 24px;
  }

  .guarantee__pay--item--text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #444;
  }

  .guarantee__pay--img-cards {
    position: static;
    padding-top: 75px;
  }

  .guarantee__pay--img-terminal {
    display: none;
  }

  .guarantee__pay--img-terminal-mobile {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
  }

  .guarantee__right {
    padding: 40px 20px;
    height: 590px;
  }

  .guarantee__right--img {
    right: -189px;
  }

  .guarantee__right--title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: #fff;
  }

  .guarantee__right--description {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #efecec;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .guarantee__right ul {
    font-size: 16px;
  }

  .guarantee__right--link {
    padding: 26px 34px;
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    margin-top: 40px;
    line-height: 110%;
    color: #fff;
  }

  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .about__img {
    width: 100%;
  }

  .about__info--title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
    padding-bottom: 20px;
  }

  .about__info--description {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #444;
  }

  .about__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }

  .about__item--title {
    font-weight: 700;
    font-size: 70px;
    line-height: 110%;
    text-transform: uppercase;
  }

  .about__item--description {
    font-weight: 400;
    font-size: 16px;
    color: #909090;
  }

  .territory__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .territory__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #444;
    padding-bottom: 20px;
  }

  .workers__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #222;
  }

  .workers__wrapper {
    width: 80%;
    margin: 0 auto;
  }

  .splide__arrow--prev {
    width: 48px;
    height: 48px;
    left: -3em;
  }

  .splide__arrow--prev img {
    width: 100%;
    height: 100%;
  }

  .splide__arrow--next {
    width: 48px;
    height: 48px;
    right: -3em;
  }

  .splide__arrow--next img {
    width: 100%;
    height: 100%;
  }

  .workers__slide--name {
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #222;
  }

  .workers__slide--name br {
    display: none;
  }

  .workers__slide--grade {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #3e93ba;
  }

  .workers__btn {
    width: 100%;
  }

  .reviews__wrapper {
    padding: 40px 50px 40px 50px;
  }

  .reviews__img {
    z-index: 1;
  }

  .reviews__title {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #fff;
    padding-bottom: 20px;
  }

  #slider2 {
    position: relative;
    z-index: 2;
  }

  .reviews__slide--text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
  }

  .reviews__slide--name {
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: #fff;
  }

  .reviews__slide--grade img {
    width: 15px;
    height: 14px;
  }

  .reviews__btn {
    position: relative;
    z-index: 2;
    padding: 14px 29px;
    font-size: 16px;
  }

  .faq__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .faq__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .faq__info--links {
    padding-top: 10px;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .faq__description {
    font-size: 18px;
  }

  .faq__info--link {
    font-size: 18px;
  }

  .accordion .accordion__item .trigger__text {
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: #222;
  }

  .accordion .accordion__item .accordion__item-content .content__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #444;
  }

  .accordion {
    gap: 20px;
  }

  .questions__wrapper {
    padding: 40px 0 260px 0;
  }

  .questions__title {
    font-weight: 800;
    font-size: 28px;
    line-height: 110%;
    color: #fff;
  }

  .questions__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    color: #d3f2ff;
  }

  .questions__back {
    width: 502px;
    right: -83px;
  }

  .questions__subtitle-block {
    padding-bottom: 45px;
  }

  .questions__btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    text-align: right;
    color: #fff;
  }

  .questions__btn svg {
    width: 16px;
    height: 16px;
  }

  .problem__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .problem__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .problem__item {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 24px;
    gap: 20px;
  }

  .problem__item--title {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #222;
  }

  .problem__item--link span {
    font-weight: 700;
    font-size: 14px;
    line-height: 110%;
    color: var(--primary-blue);
  }

  .problem__item--link svg {
    width: 14px;
    height: 14px;
  }

  .more__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .more__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #444;
    padding-bottom: 40px;
  }

  .more__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .more__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .more__item {
    width: 100%;
  }

  .more__item-icon {
    width: 40px;
    height: 40px;
  }

  .more__item-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .more__item-text {
    font-size: 18px;
    line-height: 140%;
  }

  .garantia__back-img,
  .garantia__right-img,
  .garantia__center-img {
    display: none;
  }

  .garantia__wrapper {
    background: #222945;
  }

  .garantia__bottom-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: block;
  }

  .garantia__wrapper {
    padding: 80px 20px;
  }

  .garantia__title {
    font-weight: 700;
    font-size: 34px;
    line-height: 110%;
    color: #fff;
  }

  .garantia__mobile {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .garantia__mobile .garantia__description {
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #fff;
  }

  .garantia__mobile-line {
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
  }

  .garantia__description-mobile {
    display: none;
  }

  .garantia__period {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .garantia__subtitle {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
  }

  .garantia__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #444;
  }

  .garantia__condition {
    padding-bottom: 40px;
  }

  .garantia__condition ul {
    padding-left: 15px;
  }

  .garantia__condition li {
    font-size: 14px;
    line-height: 110%;
    color: #444;
  }

  .garantia__steps--items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .garantia__steps--item--number {
    font-weight: 800;
    font-size: 180px;
    line-height: 110%;
    color: #caefff;
  }

  .garantia__steps--item--title {
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    color: #444;
  }

  .garantia__steps__item--text {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #444;
  }

  .garantia__description {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .reviews-all--btn {
    margin-top: 40px;
    width: 100%;
    margin-bottom: 40px;
  }

  .reviews-all__item {
    padding: 35px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .reviews-all__item--info {
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .reviews-all__item--text {
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
    text-align: center;
    color: #444;
  }

  .reviews-all__item--name {
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: #222;
  }

  .reviews-all__item--grade img {
    width: 20px;
    height: 20px;
  }

  .about-all__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-all__item {
    padding: 31px 24px;
    gap: 60px;
  }

  .about-all__item--name {
    font-weight: 700;
    font-size: 14px;
    line-height: 110%;
    color: #c6cfed;
  }

  .about-all__item--icon {
    width: 28px;
    height: 28px;
  }

  .about-all__item--text {
    font-weight: 700;
    font-size: 14px;
    line-height: 110%;
    color: #222;
  }

  .about-all__item-last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }

  .about-all__item--icon-last {
    width: 30px;
    height: 30px;
  }

  .about-all__item--text-last {
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: #fff;
  }

  .price-all__tabs {
    display: none;
  }

  .price-all__mobile-select {
    display: block;
  }

  .price-all__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    color: #222;
    padding-top: 0px;
  }

  .akcia__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .akcia__items--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .akcia__item {
    border: 0.56px solid var(--primary-blue);
    border-radius: 9px;
    padding: 22px 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .akcia__item--percent {
    border-radius: 22px;
    padding: 1px 10px;
    margin-bottom: 55px;
  }

  .akica__item--percent--text {
    font-weight: 800;
    font-size: 44px;
    line-height: 110%;
    text-align: right;
    color: #fff;
  }

  .akcia__item--title {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    color: #222;
  }

  .akcia__item--description {
    font-weight: 400;
    font-size: 13px;
    line-height: 110%;
    text-align: center;
    color: #444;
  }

  .akcia__bottom--item {
    border: 0.56px solid var(--primary-blue);
    border-radius: 9px;
    padding: 22px 20px;
  }

  .akcia__bottom--item--percent {
    border-radius: 22px;
    padding: 1px 10px;
    margin-bottom: 55px;
  }

  .akcia__bottom--item--percent--text {
    font-weight: 800;
    font-size: 44px;
    line-height: 110%;
    text-align: right;
  }

  .akcia__bottom--item--title {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    color: #fff;
  }

  .akcia__bottom--item--text {
    font-weight: 400;
    font-size: 13px;
    line-height: 110%;
    text-align: center;
  }

  .contacts__wrapper-img {
    display: none;
  }

  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .contacts__item-left,
  .contacts__item-right {
    gap: 20px;
  }

  .contacts__item--city,
  .contacts__item--street,
  .contacts__item--time,
  .contacts__item a {
    font-size: 16px;
  }

  .contacts__connect-btn {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .contacts__connect-btn svg {
    width: 16px;
    height: 16px;
  }

  .contacts__phone-number {
    font-size: 18px !important;
    padding: 6px 12px !important;
    border-radius: 8px;
    border-width: 1px;
  }

  .map {
    height: 400px;
    padding: 20px 0;
  }

  .map #yandex-map {
    height: 400px;
  }

  footer {
    overflow: hidden;
  }

  .footer__about--copyright-pc {
    display: none;
  }

  .footer__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__logo {
    max-width: 200px; /* Увеличиваем ширину для мобильных */
    width: 100%;
    height: auto; /* Автоматическая высота */
    min-height: 60px; /* Минимальная высота */
    padding-bottom: 20px;
  }

  .footer__logo img {
    width: 100%;
    height: auto; /* Автоматическая высота */
    max-height: 80px; /* Максимальная высота для мобильных */
    object-fit: contain; /* Сохраняет пропорции логотипа в футере на мобильных */
  }

  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__nav--info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .footer__nav--info svg {
    width: 16px;
    height: 16px;
  }

  .footer__nav--info--address,
  .footer__nav--info--contacts {
    gap: 10px;
  }

  .footer__nav--info--address--city span {
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
    color: #222;
  }

  .footer__nav--info--address--street span,
  .footer__nav--info--contacts--time span,
  .footer__nav--info--contacts--phone a {
    font-weight: 500;
    font-size: 12px;
    line-height: 110%;
    color: #444;
  }

  .footer__nav {
    gap: 40px;
  }

  .footer__nav--items {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__nav--item--link {
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    color: #444;
  }

  .footer__nav--item--dropdown .footer__nav--item--link::after {
    right: -12px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #444;
  }

  .footer__nav--item--dropdown .dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    background: #e9f0f3;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35);
    padding: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .footer__nav--item--dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .footer__nav--item--dropdown .dropdown__link {
    font-size: 14px;
    font-weight: 500;
    line-height: 110%;
    color: #444;
    padding: 0;
  }

  .footer__nav--item--dropdown .dropdown__link:hover {
    color: var(--primary-blue);
  }

  .footer__copyright {
    font-weight: 400;
    font-size: 10px;
    line-height: 110%;
    text-align: center;
    color: #444;
  }

  .footer__nav--copyright-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .footer__about--copyright--text {
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
    color: #222;
  }

  .footer__about--copyright--link {
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
    color: #95bafe;
  }

  .footer__nav--info--address--city--dropdown {
    position: relative;
  }

  .footer-city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--primary-blue);
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 1000;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
      -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease,
      -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
      -webkit-transform 0.3s ease;
  }

  .footer__nav--info--address--city--dropdown.active .footer-city-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .footer-city-dropdown__item {
    padding: 10px 16px;
  }

  .footer-city-dropdown__item span {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 740px;
  }
}

/* Privacy Policy Styles */
.privacy-policy {
  padding: 60px 0;
}

.privacy-policy__content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.privacy-policy__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 120%;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-blue);
}

.privacy-policy__section {
  margin-bottom: 40px;
}

.privacy-policy__section:last-child {
  margin-bottom: 0;
}

.privacy-policy__section-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #222;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--primary-blue), #0ea5e9);
  color: #fff;
  border-radius: 10px;
  position: relative;
}

.privacy-policy__section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #fff;
  border-radius: 0 2px 2px 0;
}

.privacy-policy__subsection-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #444;
  margin-bottom: 15px;
  margin-top: 25px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-blue);
}

.privacy-policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.privacy-policy__text:last-child {
  margin-bottom: 0;
}

.privacy-policy__list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.privacy-policy__list-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.privacy-policy__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 18px;
}

.privacy-policy__table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}

.privacy-policy__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.privacy-policy__table-header {
  background: linear-gradient(135deg, var(--primary-blue), #0ea5e9);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid #fff;
}

.privacy-policy__table-cell {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #555;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.privacy-policy__table tr:last-child .privacy-policy__table-cell {
  border-bottom: none;
}

.privacy-policy__table tr:hover {
  background: #f8f9fa;
}

.privacy-policy__contact {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
  border-radius: 15px;
  border: 2px solid var(--primary-blue);
  text-align: center;
}

.privacy-policy__contact-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #333;
  margin: 0;
}

.privacy-policy__contact-link {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.privacy-policy__contact-link:hover {
  border-bottom-color: var(--primary-blue);
  color: #0ea5e9;
}

/* Responsive styles for Privacy Policy */
@media (max-width: 768px) {
  .privacy-policy__content {
    padding: 40px 20px;
    margin: 0 20px;
  }
  
  .privacy-policy__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .privacy-policy__section-title {
    font-size: 20px;
    padding: 12px 15px;
  }
  
  .privacy-policy__subsection-title {
    font-size: 18px;
  }
  
  .privacy-policy__text,
  .privacy-policy__list-item {
    font-size: 14px;
  }
  
  .privacy-policy__table-header,
  .privacy-policy__table-cell {
    padding: 15px 10px;
    font-size: 14px;
  }
  
  .privacy-policy__contact {
    padding: 20px 15px;
  }
  
  .privacy-policy__contact-text {
    font-size: 16px;
  }
}

@media (max-width: 479.98px) {
  .container {
    max-width: none;
  }
  
  .privacy-policy__content {
    margin: 0 10px;
    padding: 30px 15px;
  }
  
  .privacy-policy__title {
    font-size: 24px;
  }
  
  .privacy-policy__section-title {
    font-size: 18px;
    padding: 10px 12px;
  }
  
  .privacy-policy__subsection-title {
    font-size: 16px;
  }
}
