/* ВСЯ СТРАНИЦА */
/* Отступы */
* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
}

/* Цвет страницы */
html,
body {
    background-color: #888888;
}

/* Подключенные шрифты */
@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 .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/fon-cover.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 120px 0 45px 0;
}

.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;
    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;
    background-color: #F0F0F0;
}

.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;
}

/* Блок 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;
    background-size:cover;
    background-image: url(images/fon-block3.png);
    background-repeat: no-repeat;
    background-position: center;
}

.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;
}

.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] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 45px 0;
    background-image: url(images/fon-block9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.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/fon-cover.png);
    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 (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/fon-cover.png);
        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/fon-block3.png);
        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/fon-block9.png);
        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/fon-cover.png);
        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/fon-cover.png);
        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/fon-block3.png);
        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/fon-block9.png);
        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/fon-cover.png);
        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:400px) {
    .text-style-3 {
        font-size:13px;
    }
    .button-tel span {
        width: 20px;
    height: 20px;
    }
    .text-style-5 {
        font-size: 10px;
    }
    .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;
}