/* ВСЯ СТРАНИЦА */
/* Отступы */
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
}

/* Цвет страницы */
html,
body {
}

/* Подключенные шрифты */
@font-face {
  font-family: "OpenSans-Bold";
  src: url(fonts/OpenSans-Bold.woff);
  font-display: swap;
}

@font-face {
  font-family: "OpenSans-Regular";
  src: url(fonts/OpenSans-Regular.woff);
  font-display: swap;
}

.textinput-1 {
  padding: 0 50px;
}

/* Позиционирование */
.flex-vertical-center {
  align-items: center;
}

.flex-vertical-start {
  align-items: start;
}

.flex-vertical-end {
  align-items: end;
}

.flex-horizon-center {
  justify-content: center;
}

.flex-horizon-spacebetween {
  justify-content: space-between;
}

.flex-horizon-end {
  justify-content: end;
}

.style-textalign-right {
  text-align: right;
}

.style-textalign-center {
  text-align: center;
}

/* Текст */
.text-style-1 {
  font-family: OpenSans-Bold;
  font-size: clamp(1.25rem, 0.804rem + 1.19vw, 1.875rem);
  text-align: center;
}

.text-style-2 {
  font: 14px/120% OpenSans-Regular;
}

.text-style-3 {
  text-decoration: none;
  font-family: OpenSans-Bold;
  font-size: 40px;
}

.text-style-4 {
  font: 14px/120% OpenSans-Bold;
}

.text-style-5 {
  font-family: OpenSans-Bold;
  font-size: clamp(1.875rem, 1.429rem + 1.19vw, 2.5rem);
  text-align: center;
}

.text-style-6 {
  font: 16px/120% OpenSans-Regular;
}

.text-style-7 {
  font: 18px/120% OpenSans-Bold;
}

.text-style-8 {
  font: 40px/120% OpenSans-Bold;
  background-color: #ff0000;
  padding: 10px;
  border-radius: 10px;
}

.text-style-9 {
  font: 16px/120% OpenSans-Bold;
}

.text-style-10 {
  text-decoration: none;
  font-family: OpenSans-Bold;
  font-size: 18px;
}

.text-style-11 {
  font: 16px/120% OpenSans-Regular;
  text-align: center;
}

.heading-h1 span {
  color: #e7ad42;
}

/* Цвет */
.text-color-1 {
  color: #e7ad42;
}

.text-color-2 {
  color: #262b37;
}

.text-color-3 {
  color: #359b33;
}

.text-color-4 {
  color: #ffffff;
}

.text-color-5 {
  color: #b9beca;
}

/* Кнопки */
.button-style-1 {
  display: flex;
  width: 100%;
  height: 60px;
  outline: none;
  border: none;
  border-radius: 100px;
  background: linear-gradient(to top left, #ffc700, #ff9900);
  cursor: pointer;
  color: #ffffff;
  font: 16px/120% OpenSans-Bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  gap: 10px;
  text-decoration: none;

  &:hover {
    background: linear-gradient(to top left, #fed131, #feb84f);
  }
}

.button-style-1 span {
  background-image: url(images/icon-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 25px;
}

/* Всплывающее окно */
.dialog-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background-color: rgba(2, 12, 47, 0.8);
  z-index: 100;
}

body.lock {
  overflow: hidden;
}

.dialog-window-main {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  max-width: 600px;
}

.dialog-window-1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #262b37;
  padding: 20px;
  gap: 30px;
}

.dialog-window-1-1 {
  display: flex;
  width: 100%;
  height: auto;
}

.dialog-window-close {
  background-image: url(images/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.form-block2 {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 30px;
  gap: 10px;
}

.cover-icons {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.cover-icons div {
  line-height: 22px;
  width: 100%;
}

.form-block2 input {
  outline: none;
  background-color: #f9fafc;
  border: 2px solid #eceff4;
  width: 100%;
  max-width: 300px;
  height: 60px;
  text-align: center;
  border-radius: 10px;
}

.form-block2 button {
  max-width: 300px;
}

.dialog-window-1-2 {
  display: flex;
  width: 100%;
  height: auto;
  gap: 30px;
}

.input-error {
  border: 3px solid #ff0000 !important;
  color: #ff0000;
}

/* Галерея */
.popup[hidden] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translate(-100%, -100%) scale(0);
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
  transition: 0.3s;
}

.container-large-image {
  display: flex;
  max-width: 400px;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}

.popup.active {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn {
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 1s;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

.close-btn {
  opacity: 0;
  position: absolute;
  top: 15px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url(images/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 50px;
  border: none;
  background: none;
  cursor: pointer;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.large-image {
  padding: 30px 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.st-size {
  max-height: 600px;
  min-height: 600px;
}

.item-image {
  cursor: pointer;
}

/* Тень шапки */
.scroll {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

/* ДЕСКТОП */

/* Область контента */
.content-size {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

/* Шапка */
.header[hidden] {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  background-color: #ffffff;
  width: 100%;
  height: 100px;
  z-index: 150;
}

.header-content {
  display: flex;
}

/* Логотип */
.header-logo {
  display: flex;
  width: 100%;
  height: auto;
  gap: 10px;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
}

.header-text {
  display: flex;
  width: 100%;
  height: auto;
  gap: 10px;
}

/* Телефон */
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  width: 100%;
  height: auto;
  padding: 5px 0;
  gap: 5px;
}

.header-tel .text-style-4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: right;
  color: #262b37;
}

.footer .header-tel .text-style-4 {
  color: #fff;
}

.button-tel {
  display: flex;
  gap: 20px;
}

.button-tel span {
  background-image: url(images/icon-tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
}

/* Обложка */
.cover[hidden] {
  display: flex;
  width: 100%;
  height: auto;
  background-image: url(images/main.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 120px 0 45px 0;
  z-index: 1;
  position: relative;
}


.container-cover-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 180px;
  margin-top: 70px;
  position: relative;
}

/* Плитка */
.container-cover-icons {
  display: grid;
  grid-template-columns: 250px 250px 250px;
  gap: 30px;
}

.cover-icons {
  display: flex;
  gap: 10px;
}

.cover-icons-1 span {
  background-image: url(images/icon-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
}

.cover-icons-2 span {
  background-image: url(images/icon-3.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
}

.cover-icons-3 span {
  background-image: url(images/icon-4.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
}

/* Форма отправки №1 */
.cover-form {
  background-color: #ffffff;
  display: flex;
  position: absolute;
  top: 340px;
  max-width: 850px;
  width: 100%;
  border-radius: 20px;
}

.container-cover-form {
  display: flex;
  gap: 30px;
  max-width: 100%;
  width: 100%;
  min-height: 200px;
}

.container-cover-form-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 75%;
  padding: 10px 30px;
}

.container-cover-form-input {
  display: flex;
  gap: 10px;
}

.cover-form-input {
  outline: none;
  background-color: #f9fafc;
  border: 2px solid #eceff4;
  width: 100%;
  color: #262b37;
  height: 60px;
  text-align: center;
  border-radius: 100px !important;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 1%;
}

.cover-form-input::placeholder {
  color: #262b37;
}

.container-cover-form-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  background-image: url(images/fom-image-1.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  gap: 10px;
  flex: 1 1 32%;
}

/* Блок 1 */
.block-1[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 45px 0;
  padding-top: 120px;
}

.container-block1-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Плитки */
.container-block1-1 {
  display: grid;
  grid-template-columns: 420px 370px 420px;
  gap: 30px;
}

.container-block1-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.container-block1-text-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 220px;
}

.garant-item {
  border: 1px solid #efece3;
  background-color: #fff;
  border-radius: 15px;
  height: 100%;
  position: relative;
}

.garant-cart p {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  height: 90px;
  padding: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffc700 0%, #ff9900 100%);
}

.garant-item img {
  position: absolute;
  top: -40px;
  left: -25px;
}

.garant-cart {
  margin-bottom: auto;
}

.garant-cart span {
  display: block;
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 16px;
  color: #262b37;
  line-height: 22px;
  letter-spacing: 0%;
  padding: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* Изображение */
.container-block1-image {
  background-image: url(images/fon-block1.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background-size: cover;
}

/* Блок 2 */
.block-2[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 45px 0;
  padding-bottom: 120px;
  background-color: #f0f0f0;
}

.container-block2-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Услуги */
.container-block2-services {
  display: grid;
  grid-template-columns: 370px 370px 370px;
  width: 100%;
  height: auto;
  gap: 40px;
}

.block2-service .button-style-1 {
  max-width: 200px;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 18px;
}

.block2-service .text-style-7 {
  padding: 30px 0;
}

.block2-service {
  box-shadow: 0px -5px 59px 0px #0000001a;

  display: flex;
  flex-direction: column;
  border: 1px solid #ced1d6;
  border-radius: 20px;
  padding: 0px;
  height: 100%;
  justify-content: start;
}

.block2-service img {
  width: 100%;
  height: auto;
}

.block-2 .text-style-1 {
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
}

.container-block2-services-2 {
  display: flex;
  width: 100%;
  height: auto;
  border: 1px solid #ff9c01;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 27px 59px 0px #0000001a;

  padding: 45px 0;
}

/* Блок 3 */
.block-3[hidden] {
  display: flex;
  flex-direction: column;
  padding: 45px 0;
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  background-size: cover;
  background-image: url(images/gallery/13.webp);
  background-repeat: no-repeat;
  background-position: center;
}

.block-3[hidden]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Черный цвет с прозрачностью 50%. Можешь менять значение */
  z-index: -1;
  /* Помещаем затемнение под текст/контент, но над фоном */
}

.block-3 .text-style-3 {
  font-size: 33px;
}

.container-block3-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.slider-button-1 {
  position: absolute;
  z-index: 999;
}

.itc-slider-btn-prev {
  left: -80px;
  position: absolute;
  top: 250px;
}

.itc-slider-btn-next {
  right: -80px;
  position: absolute;
  top: 250px;
}

.swiper-container img {
  width: 100%;
}

.swiper-1,
.swiper-2 {
  overflow: hidden;
}

.swiper-button-prev {
  left: -55px;
}

.swiper-button-next {
  right: -55px;
}

.swiper-1 .swiper-button-prev {
  top: 65% !important;
}

.swiper-1 .swiper-button-next {
  top: 65% !important;
}

.container-block8-1,
.container-block8-2 {
  margin-top: 60px;
}

.swiper-pagination {
  bottom: -40px !important;
}

.swiper-pagination-bullet {
  background-image: url(./images/dot-border.svg) !important;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  background: transparent;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background-image: url(./images/dot.svg) !important;
}

.swiper-button-next::after {
  content: "";
  background-image: url("./images/icon-arrow-right.svg");
  width: 25px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-prev::after {
  content: "";
  background-image: url("./images/icon-arrow.svg");
  width: 25px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
}

.container-block8-1 .swiper-slide img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 100%;
  box-shadow: 0px 10px 30px 0px #00000026;
}

.block-3 .text-color-1 {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #359b33;
}

.container-block3-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  height: auto;
  background-color: #ffffff;
  padding: 36px;
  border-radius: 20px;
  gap: 30px;
}

.container-block3-form button {
  max-width: 300px;
}

/* Блок 4 */
.block-4[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 45px 0;
  background-color: #f0f0f0;
}

.container-block4-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.container-block4-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.container-block4-1-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Блок 5 */
.block-5[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 45px 0;
  background-color: #f0f0f0;
}

.container-block5-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.container-block5-1 {
  display: grid;
  grid-template-columns: 350px 350px 350px;
  gap: 30px;
}

.container-block5-1-1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
}

.container-block5-1-1 img {
  border-radius: 200px;
}

.container-block5-1-2 {
  display: flex;
  gap: 10px;
}

/* Блок 6 */
.block-6[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 45px 0;
  background-image: url(images/fon-block6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container-block6-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.container-block6-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  height: auto;
}

.container-block6-form {
  display: flex;
  width: 100%;
  height: auto;
  gap: 10px;
}

.container-block6-form input {
  outline: none;
  background-color: #f9fafc;
  border: 2px solid #eceff4;
  width: 100%;
  height: 60px;
  text-align: center;
  border-radius: 10px;
}

/* Блок 7 */
.block-7[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  padding: 45px 0;
  padding-bottom: 80px;
}

.container-block7-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.container-block7-1 .customers-item img {
  width: 100%;
  height: auto;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.container-block7-1 .customers-item {
  padding: 27px 20px;
  background-color: #fff;
  max-height: 172px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 27px 59px 0px #0000001a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-block7-1 {
  display: grid;
  grid-template-columns: 370px 370px 370px;
  gap: 30px;
}

/* Блок 8 */
.block-8[hidden] {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 45px 0;
  padding-bottom: 40px;
}

.block-8-2 {
  padding-bottom: 120px !important;
}

.container-block8-main {
  display: block;
  position: relative;
  flex-direction: column;
  gap: 10px;
}

.container-block8-1 .swiper-slide {
  max-width: 370px !important;
  height: 370px;
}

.block-9 .text-style-2 {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  font-size: 23px;
  line-height: 104%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.input-container {
}

.block-9 .text-color-1 {
  text-align: center;
}

.block-9 .text-style-9 {
  margin-top: 30px;
  margin-bottom: 40px;
  font-family: "Open Sans";
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
  line-height: 104%;
  letter-spacing: 0%;
  text-align: center;
}

.quest-input::placeholder {
  color: #4c5163;
}

.quest-input {
  padding: 20px;
  text-align: left !important;
  font-family: "Open Sans";
  color: #4c5163;
  font-weight: 300;
  font-size: 25px;
  line-height: 104%;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 0px !important;
}

.quest-input-wrapper .quest-input:nth-child(2) {
  margin: 0 30px;
}

.quest-input-mes {
  width: 100%;
  margin-bottom: 30px;
  padding: 40px 20px;
}

.mail-form-6 .button-style-1 {
  margin: auto;
  margin-top: 30px;
  max-width: 370px;
}

.container-block9-form {
  flex-direction: column;
}

.quest-input-wrapper {
  display: flex;
}

.cover-form-input {
}

.text-style-9 {
}

.text-color-5 {
}

.mask-phone {
}

/* Блок 9 */
.block-9[hidden] {
  position: relative;
  /* Добавь position: relative, чтобы псевдоэлемент позиционировался относительно этого блока */
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 45px 0;
  background-image: url(images/gallery/14.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  /* Убедимся, что содержимое блока выше затемнения */
}

.services-container {
}

.block2-service-custom img {
  height: 200px !important;
  margin-top: 20px;
}

.block2-service-custom .button-style-1 {
  max-width: 100% !important;
}

.block2-service-custom h2 {
  text-align: center;
}

.service-subtitle {
  margin-top: 20px;
  margin-bottom: 30px;
}

.block2-service-custom {
  justify-content: space-between !important;
  padding: 0 20px !important;
}

/* Затемнение через псевдоэлемент */
.block-9[hidden]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Черный цвет с прозрачностью 50%. Можешь менять значение */
  z-index: -1;
  /* Помещаем затемнение под текст/контент, но над фоном */
}

.container-block9-main {
  display: flex;
  gap: 50px;
}

.container-block9-1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 20px;
}

.container-block9-form {
  display: flex;
  gap: 10px;
}

.container-block9-form input {
  outline: none;
  background-color: #f9fafc;
  border: 2px solid #eceff4;
  width: 100%;
  height: 60px;
  text-align: center;
  border-radius: 10px;
}

.container-block9-2 {
  display: flex;
}

.container-block9-2 img {
  width: 400px;
  height: 300px;
  border-radius: 20px;
}

/* Подвал */
.footer[hidden] {
  display: flex;
  flex-direction: column;
  background-color: #12130e;
  padding: 15px 0;
}

/* Успешная отправка */
.page-thanks[hidden] {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-image: url(images/main.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container-page-thanks {
  display: flex;
}

.container-page-thanks-1 {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  width: 100%;
  max-width: 600px;
  height: auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  gap: 20px;
}

.button-style-1 {
  max-width: 300px;
}

.form-field-image-text {
  padding: 10px 10px 10px 50px;
  font-size: 13px;
  display: block;
}

.block-1-1 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.quiz-field_radio {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.quiz-field_radio_text {
  font-size: 22px;
}

.quiz-field_radio input:checked + .form-field-radio-item__check,
.quiz-field_radio input:checked + .form-field-radio-item__check:before {
  opacity: 1;
}

.quiz-field_radio input,
.quiz-field_radio_img input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.form-field-radio-item__check {
  width: 28px;
  height: 28px;
  margin-right: 18px;
  display: block;
  border-radius: 50%;
  border: 2px solid currentColor;
  box-sizing: border-box;
  flex-shrink: 0;
  opacity: 0.5;
  position: relative;
  transition: opacity 0.3s ease;
}

.form-field-radio-item__check:before {
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s ease;
  display: block;
  border-radius: 50%;
  border: 2px solid currentColor;
  box-sizing: border-box;
  margin-right: 10px;
  opacity: 0;
}

.quiz-actions {
  position: relative;
}

.component-button {
  position: relative;
}

.component-button.effect--opacity:after,
.component-button.effect--opacity:before {
  transition: all 0.2s ease;
}

.component-button:after {
  opacity: 1;
  position: absolute;
  top: -60px;
  left: -40px;
  width: 30px;
  height: 300px;
  margin-left: 60px;
  content: "";
  transition: all 0.1s;
  transform: rotate(45deg);
  animation-name: slideme;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.05s;
  animation-iteration-count: infinite;
  background: linear-gradient(
    to bottom,
    rgba(236, 239, 142, 0),
    rgba(255, 255, 255, 0.8) 50%,
    rgba(229, 172, 142, 0)
  );
}

@-webkit-keyframes slideme {
  0% {
    left: -70px;
    margin-left: 0px;
  }

  30% {
    left: 110%;
    margin-left: 80px;
  }

  100% {
    left: 110%;
    margin-left: 80px;
  }
}

.quiz-background {
  background: #f6f6f5;
  box-shadow: 0px 4px 33px 0px #f6f6f5;
  font-family: "Open Sans";
  padding: 40px;
  border-radius: 10px;
  color: #262b37;
  width: 100%;
  max-width: 100%;
}

.quiz-container {
  max-width: 770px;
  margin: auto;
}

.quiz-header h3 {
  font-weight: 600;
  font-style: Medium;
  font-size: 26px !important;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;

  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: left;
}

.quiz-container .options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-container .option {
  border: 1px solid #d9d9d9;
  padding: 30px 20px;
  text-align: left;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  max-width: 350px;
  margin-bottom: 20px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.quiz-container .option input[type="radio"] {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #f6f6f5;
  appearance: none;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  position: relative;
}

.quiz-container .option input[type="checkbox"] {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #f6f6f5;
  appearance: none;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  position: relative;
}

.block-1-1 .container-block1-main {
  display: block;
}

.block-1-1 h2 {
  text-align: center;
}

.bh4 {
  display: block;
  font-family: Open Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 800px;
  margin: auto;

  margin-top: 20px;
  margin-bottom: 60px;
}

.quiz-container .option input[type="radio"]:checked::before {
  content: "";
  width: 26px;
  height: 25px;
  border-radius: 50%;
  background-image: url("images/check.svg");
  position: absolute;
  left: -2px;
  top: -2px;
  background-size: contain;
  background-repeat: no-repeat;
}

.final-benefits li::before {
  content: "";
  margin-right: 6px;
  width: 24px;
  height: 24px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/images/final-check.svg");
}

.final-benefits {
  margin-left: 0;
  padding-left: 0;
}

.final-step p {
  text-align: left;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.final-step h3 {
  font-weight: 600;
  text-align: center;
  font-style: Medium;
  font-size: 26px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.final-step {
  max-width: 400px;

  margin: auto;
  margin-top: 40px;
}

.policy {
  font-weight: 400;
  font-style: Regular;
  font-size: 8px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

#step-7 h3 {
  font-size: 22px;
}

#step-7 p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

#policy {
  margin-right: 5px;
}

.policy a {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 8px;
  leading-trim: NONE;
  line-height: 100%;
  color: #ff9a01;
  letter-spacing: 0%;
}

.final-step .phone-label {
  font-weight: 600;
  margin-bottom: 20px;
  font-style: SemiBold;
  font-size: 22px;
  display: block;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.whatsapp-icon {
  width: 40px;
  height: 32px;
  background-image: url("images/wa.svg");
  background-repeat: no-repeat;
  display: block;
  z-index: 999999;
  position: relative;
  background-size: contain;
  margin: 10px 20px;
}

.quiz-container .option input[type="checkbox"]:checked::before {
  content: "";
  width: 26px;
  height: 25px;
  border-radius: 50%;
  background-image: url("images/check.svg");
  position: absolute;
  left: -2px;
  top: -2px;
  background-size: contain;
  background-repeat: no-repeat;
}

.quiz-container .option img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.quiz-container .option span {
  flex: 1;
  font-weight: 600;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin-left: 15px;
}

.quiz-container .progress {
  height: 10px;
  background: #e2e2e2;
  width: 100%;
  overflow: hidden;
  max-width: 300px;
  margin: 15px 0;
}

.quiz-main-title span {
  font-weight: 400;
  font-style: Regular;
  margin-left: 10px;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.quiz-main-title {
  display: flex;
  align-items: center;
}

.progr-wrapper {
  width: 50%;
  display: flex;
  align-items: center;
}

.quiz-container .progress-bar {
  height: 10px;
  background: #8bd336;
  width: 0;
}

.question-counter {
  font-weight: 600;
  color: #262b37;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  margin-right: 5px;
  letter-spacing: 0%;
}

#step-2 .options {
  display: flex;
  flex-direction: column;
}

#step-2 .option {
  background-color: none;
  border: none;
  padding-left: 0;
  background: none;
}

#step-2 .option input[type="radio"] {
  width: 42px;
  height: 42px;
}

#step-2 .option input[type="radio"]:checked::before {
  width: 42px;
  left: 0px;
  top: 0px;

  height: 42px;
}

.quiz-input {
  border-radius: 5px;
  padding: 25px 25px 25px 25px;
  font-family: Open Sans;
  border: 1px solid #d9d9d9;
  font-weight: 600;
  font-style: Italic;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;

  width: 100%;
}

.quiz-container .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.quiz-progr {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}

.quiz-step {
}

.quiz-container .btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.quiz-container .btn-prev {
  margin-right: 20px;
}

.quiz-container .btn-prev,
.quiz-container .btn-next {
  background: #ff9901;
  border-radius: 10px;
  color: #fff;
}

.quiz-progr {
}

.quiz-container .btn:hover {
  opacity: 0.9;
}

.quiz-container .hidden {
  display: none;
}

.quiz-container input[type="tel"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  height: 100%;
  border: none;
}

.btn-submit {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  border: none;
  width: 100%;
  margin: auto;
  margin-top: 10px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, #ffc700 0%, #ff9900 100%);
  transition: 0.3s all ease-in-out;
  padding: 16px 40px;
  cursor: pointer;
}

.btn-submit:hover {
  background: linear-gradient(180deg, #ecba06 0%, #f19e20 100%);
  transition: 0.3s all ease-in-out;
}

.quiz-container input[type="tel"] {
  border-left: 1px solid #858585;
}

#step-3 .options {
  display: flex;
  flex-direction: column;
}

.step-3 {
  height: auto;
}

.option:has(input:checked) {
  border: 1px solid #65b92c;
}

.step-3 .option {
}

#step-6 .option input[type="radio"] {
  display: block;
  position: absolute;
  z-index: 999;
  bottom: 13px;
  left: 17px;
}

#step-6 h3 {
  text-align: center;
  font-weight: 600;
  display: block;
  width: 100%;
  font-style: Medium;
  font-size: 26px !important;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}

.final-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.phone-input {
  border: 1px solid #858585;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.phone-input {
  margin: 0;
  padding: 0;
  height: 52px;
  max-width: 390px;
  margin: auto;
}

/* ПЛАНШЕТ */
@media only screen and (min-width: 768px) and (max-width: 1439px) {
  /* Область контента */
  .content-size {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  /* Шапка */
  .header[hidden] {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    padding: 10px 0;
    z-index: 150;
  }

  .header-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Логотип */
  .header-logo {
    display: none;
  }

  .header-text {
    display: none;
  }

  /* Телефон */
  .header-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
    height: auto;
    padding: 5px 0;
    gap: 5px;
  }

  .button-tel {
    display: flex;
    gap: 20px;
  }

  .button-tel span {
    background-image: url(images/icon-tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
  }

  /* Обложка */
  .cover[hidden] {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(images/main.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 45px 0;
  }

  .container-cover-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  /* Плитка */
  .container-cover-icons {
    display: grid;
    grid-template-columns: 250px 250px;
    gap: 30px;
  }

  .cover-icons {
    display: flex;
    gap: 10px;
  }

  .cover-icons-1 span {
    background-image: url(images/icon-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px;
    height: 60px;
  }

  .cover-icons-2 span {
    background-image: url(images/icon-3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px;
    height: 60px;
  }

  .cover-icons-3 span {
    background-image: url(images/icon-4.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px;
    height: 60px;
  }

  /* Форма отправки №1 */
  .cover-form {
    background-color: #ffffff;
    display: flex;
    padding: 10px 30px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  }

  .container-cover-form {
    display: flex;
    gap: 30px;
    max-width: 800px;
    min-height: 200px;
  }

  .container-cover-form-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .container-cover-form-input {
    display: flex;
    gap: 10px;
  }

  .cover-form-input {
    outline: none;
    background-color: #f9fafc;
    border: 2px solid #eceff4;
    width: 100%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
  }

  .container-cover-form-2 {
    display: flex;
    flex-direction: column;
    width: 43%;
    height: auto;
    background-image: url(images/fom-image-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    gap: 10px;
  }

  /* Блок 1 */
  .block-1[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block1-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  /* Плитки */
  .container-block1-1 {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 30px;
  }

  .container-block1-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .container-block1-text-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .container-block1-text-1 p {
    text-align: center;
  }

  /* Изображение */
  .container-block1-image {
    display: none;
    background-image: url(images/fon-block1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  /* Блок 2 */
  .block-2[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block2-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .cover-form {
    position: relative;
    top: 0;
  }

  .text-style-3 {
    text-align: center;
  }

  /* Услуги */
  .container-block2-services {
    display: grid;
    grid-template-columns: 50% auto;
    width: 100%;
    height: auto;
    gap: 10px;
  }

  .block2-service {
    display: flex;
    flex-direction: column;
    border: 2px solid #888888;
    border-radius: 20px;
    padding: 20px;
    gap: 30px;
    height: 100%;
    justify-content: start;
  }

  .block2-service img {
    width: 100%;
    height: auto;
  }

  .container-block2-services-2 {
    display: flex;
    width: 100%;
    height: auto;
    border: 2px solid #888888;
    border-radius: 20px;
    padding: 30px 0;
  }

  /* Блок 3 */
  .block-3[hidden] {
    display: flex;
    flex-direction: column;
    padding: 45px 0;
    width: 100%;
    height: auto;
    background-image: url(images/gallery/13.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-block3-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block3-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    height: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
  }

  .container-block3-form button {
    max-width: 300px;
  }

  /* Блок 4 */
  .block-4[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block4-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block4-1 {
    display: grid;
    grid-template-columns: 100%;
    gap: 50px;
  }

  .container-block4-1-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Блок 5 */
  .block-5[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block5-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block5-1 {
    display: grid;
    grid-template-columns: 350px 350px;
    gap: 30px;
  }

  .container-block5-1-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
  }

  .container-block5-1-1 img {
    border-radius: 200px;
  }

  .container-block5-1-2 {
    display: flex;
    gap: 10px;
  }

  /* Блок 6 */
  .block-6[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-image: url(images/fon-block6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-block6-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block6-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    height: auto;
  }

  .container-block6-form {
    display: flex;
    width: 100%;
    height: auto;
    gap: 10px;
  }

  .container-block6-form input {
    outline: none;
    background-color: #f9fafc;
    border: 2px solid #eceff4;
    width: 100%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
  }

  /* Блок 7 */
  .block-7[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    padding: 45px 0;
  }

  .container-block7-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block7-1 {
    display: grid;
    grid-template-columns: 150px 150px 150px;
    width: 100%;
    gap: 30px;
  }

  /* Блок 8 */
  .block-8[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    padding: 45px 0;
  }

  .container-block8-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .container-block8-1 {
    display: flex;
  }

  /* Блок 9 */
  .block-9[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-image: url(images/gallery/14.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .swiper-1,
  .swiper-2 {
  }

  .block-8[hidden] {
    padding-bottom: 90px;
    padding-top: 80px;
  }

  .container-block8-2 {
    width: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 55%;
  }

  .swiper-container img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
  }

  .container-block9-main {
    display: flex;
    gap: 50px;
  }

  .container-block7-1 .customers-item img {
    width: 100%;
  }

  .container-block8-1 {
    width: 100%;
  }

  .container-block9-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .container-block9-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .container-block9-form input {
    outline: none;
    background-color: #f9fafc;
    border: 2px solid #eceff4;
    width: 100%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
  }

  .container-block9-2 {
    display: flex;
  }

  .container-block9-2 img {
    width: 400px;
    height: 300px;
    border-radius: 20px;
  }

  /* Подвал */
  .footer[hidden] {
    display: flex;
    flex-direction: column;

    padding: 30px 0;
  }

  /* Успешная отправка */
  .page-thanks[hidden] {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-image: url(images/main.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-page-thanks {
    display: flex;
  }

  .container-page-thanks-1 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
    gap: 20px;
  }

  .button-style-1 {
    max-width: 300px;
  }
}

/* МОБ.ВЕРСИЯ */
@media only screen and (max-width: 768px) {
  /* Область контента */
  .content-size {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Шапка */
  .header[hidden] {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    background-color: #ffffff;
    width: 100%;
    height: 100px;
    z-index: 150;
  }

  .header-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .container-block8-1 {
    width: 100%;
  }

  .container-block7-1 .customers-item img {
    width: 100%;
  }

  .header-tel .text-style-4 {
    /* display: none; */
    color: #359b33;
    font-weight: 600;
  }

  .block-9 .text-style-9 {
    font-size: 25px;
    padding: 0 !important;
  }

  .button-tel {
    font-size: 22px;
  }

  .swiper-pagination {
    bottom: -27px !important;
  }

  .header-tel {
    border: 3px solid #6ccd5c;
  }

  .text-style-3 {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
  }

  .block2-service .text-style-7 {
    padding: 0;
  }

  .block2-service .button-style-1 {
    max-width: 100%;
  }

  .block-2 .text-style-1 {
    font-size: 15px;
  }

  .block-3 .text-style-3 {
    text-align: center;
  }

  /* Логотип */
  .header-logo {
    display: none;
  }

  .header-text {
    display: none;
  }

  /* Телефон */
  .header-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
    height: auto;
    padding: 5px 0;
    gap: 5px;
  }

  .button-tel {
    display: flex;
    gap: 20px;
  }

  .button-tel span {
    background-image: url(images/icon-tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
  }

  /* Обложка */
  .cover[hidden] {
    display: flex;
    width: 100%;
    height: auto;
    background-image: url(images/main.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 45px 0;
  }

  .container-cover-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  /* Плитка */
  .container-cover-icons {
    display: grid;
    grid-template-columns: 250px;
    gap: 30px;
  }

  .cover-icons {
    display: flex;
    gap: 10px;
  }

  .cover-icons-1 span {
    background-image: url(images/icon-2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px;
    height: 60px;
  }

  .cover-icons-2 span {
    background-image: url(images/icon-3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px;
    height: 60px;
  }

  .cover-icons-3 span {
    background-image: url(images/icon-4.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 60px;
    height: 60px;
  }

  /* Форма отправки №1 */
  .cover-form {
    background-color: #ffffff;
    display: flex;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  }

  .container-cover-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: auto;
  }

  .container-cover-form-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .container-cover-form-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cover-form-input {
    outline: none;
    background-color: #f9fafc;
    border: 2px solid #eceff4;
    width: 100%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
  }

  .container-cover-form-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-image: url(images/fom-image-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    gap: 10px;
  }

  /* Блок 1 */
  .block-1[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block1-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block1-main h2 {
    text-align: center;
  }

  /* Плитки */
  .container-block1-1 {
    display: grid;
    grid-template-columns: 300px;
    gap: 30px;
  }

  .container-block1-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .container-block1-text-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .container-block1-text-1 p {
    text-align: center;
    padding: 0 !important;
  }

  .block-3 .text-color-1 {
    font-size: 17px;
  }

  .container-block1-text-1 h3 {
    text-align: center;
  }

  .container-block8-1,
  .container-block8-2 {
    margin-top: 30px;
  }

  /* Изображение */
  .container-block1-image {
    display: none;
    background-image: url(images/fon-block1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  /* Блок 2 */
  .block-2[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block2-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  /* Услуги */
  .container-block2-services {
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    height: auto;
    gap: 10px;
  }

  .block2-service {
    display: flex;
    flex-direction: column;
    border: 2px solid #888888;
    border-radius: 20px;
    padding: 20px;
    gap: 30px;
    height: 100%;
    justify-content: start;
  }

  .block2-service img {
    width: 100%;
    height: auto;
  }

  .container-block2-services-2 {
    display: flex;
    width: 100%;
    height: auto;
    border: 2px solid #888888;
    border-radius: 20px;
    padding: 30px 0;
  }

  /* Блок 3 */
  .block-3[hidden] {
    display: flex;
    flex-direction: column;
    padding: 45px 0;
    width: 100%;
    height: auto;
    background-image: url(images/gallery/13.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-block3-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block3-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    height: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
  }

  .container-block3-form button {
    max-width: 300px;
  }

  /* Блок 4 */
  .block-4[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block4-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block4-1 {
    display: grid;
    grid-template-columns: 300px;
    gap: 50px;
  }

  .container-block4-1-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Блок 5 */
  .block-5[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-color: #f0f0f0;
  }

  .container-block5-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block5-1 {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
  }

  .container-block5-1-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
  }

  .container-block5-1-1 img {
    border-radius: 200px;
  }

  .container-block5-1-2 {
    display: flex;
    gap: 10px;
  }

  /* Блок 6 */
  .block-6[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-image: url(images/fon-block6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-block6-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block6-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    height: auto;
  }

  .container-block6-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 10px;
  }

  .container-block6-form input {
    outline: none;
    background-color: #f9fafc;
    border: 2px solid #eceff4;
    width: 100%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
  }

  /* Блок 7 */
  .block-7[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    padding: 45px 0;
  }

  .container-block7-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-block7-1 {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    gap: 30px;
  }

  .text-style-10 span {
    display: block;
  }

  .container-block8-1,
  .container-block8-2 {
    width: 100%;
  }

  .garant-cart span {
    font-size: 15px;
  }

  .swiper-pagination-bullet {
    background-size: cover;
    width: 16px;
    height: 16px;
  }

  .swiper-button-next {
    right: 0;
    width: 15px;
    top: 65%;
  }

  .swiper-button-prev {
    left: 0;
    width: 15px;
    top: 65%;
  }

  .container-block3-form {
    text-align: center;
  }

  .swiper-container img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
  }

  .container-block8-1 .swiper-slide {
    height: 250px;
  }

  .container-block9-form input {
    height: auto !important;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
  }

  .quest-input-wrapper .quest-input {
    margin-bottom: 20px !important;
    font-size: 16px;
  }

  .quest-input-wrapper .quest-input:nth-child(2) {
    margin: 0;
  }

  .container-cover-form {
    text-align: center;
  }

  .cover[hidden] {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .header[hidden] {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    background-color: #ffffff;
    width: 100%;
    height: auto !important;
    z-index: 150;
    padding: 10px;
  }

  .quest-input-wrapper {
    flex-direction: column;
  }

  /* Блок 8 */
  .block-8[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    padding: 45px 0;
  }

  .container-block8-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .container-block8-1 {
    display: flex;
  }

  /* Блок 9 */
  .block-9[hidden] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-image: url(images/gallery/14.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-block9-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .container-block9-1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .container-block9-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .container-block9-form input {
    outline: none;
    background-color: #f9fafc;
    border: 2px solid #eceff4;
    width: 100%;
    height: 60px;
    text-align: center;
    border-radius: 10px;
  }

  .container-block9-2 {
    display: flex;
  }

  .container-block9-2 img {
    width: 100%;
    height: 200px;
    border-radius: 20px;
  }

  /* Подвал */
  .footer[hidden] {
    display: flex;
    flex-direction: column;

    padding: 30px 0;
  }

  /* Успешная отправка */
  .page-thanks[hidden] {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-image: url(images/main.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .container-page-thanks {
    display: flex;
  }

  .container-page-thanks-1 {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
    gap: 20px;
  }

  .button-size {
    max-width: 300px;
  }

  .container-block1-text-1 {
    height: auto;
  }
}

@media (max-width: 550px) {
  .text-style-3 {
    font-size: 25px;
  }
  .button-tel span {
    width: 20px;
    height: 20px;
  }
  .quiz-background {
    padding: 40px 20px;
  }
  .quiz-container .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btn-submit {
    font-size: 15px;
    margin-top: 20px;
  }
  .bh4 {
    font-size: 20px;
  }
  .progr-wrapper {
    width: 100%;
  }
  .quiz-progr {
    display: flex;
    flex-direction: column;
  }
  .text-style-5 {
    font-size: 23px;
  }
  .container-cover-main {
    padding-bottom: 70px;
  }
  .cover-form {
    position: relative;
    top: 0;
    max-width: 850px;
  }

  .header-tel .text-style-4 {
    font-size: 12px;
  }

  .page-scroller {
    width: 35px;
    height: 35px;
  }

  .cover-icons-2 span,
  .cover-icons-1 span,
  .cover-icons-3 span {
    width: 35px;
    height: 35px;
  }
}

.page-scroller {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(to top left, #977700, #a16101);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.page-scroller svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: transform 0.3s ease;
}

.page-scroller:hover {
  background-color: rgba(250, 184, 0, 0.9);
}

.page-scroller:active {
  background-color: rgba(250, 184, 0, 1);
}

/* Когда кнопка должна быть видна */
.page-scroller.visible {
  opacity: 1;
  visibility: visible;
}
