/* ВСЯ СТРАНИЦА */
/* Отступы */
* {
    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;
}

/* Позиционирование */
.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: clamp(1.25rem, 0.804rem + 1.19vw, 1.875rem);
}

.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: #6CCD5C;
}

.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: 10px;
    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: 20px;
    height: 20px;
}

/* Всплывающее окно */
.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;
}

.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;
    background: rgba(231, 173, 66, 0.5);;
}

.left-arrow{
    left: 10px;
}

.right-arrow{
    right: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.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);
}

/* ДЕСКТОП */
@media only screen and (min-width: 1440px) {

    /* Область контента */
    .content-size {
        width: 100%;
        max-width: 1140px;
        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 img {
		display: block;
		object-fit: contain;
		object-position: center;
	}

    .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: center;
        width: 100%;
        height: auto;
        padding: 5px 0;
        gap: 5px;
        border: 3px solid #6CCD5C;
    }

    .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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-cover.avif);
        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 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: 50%;
        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: 420px 250px 420px;
        gap: 30px;
    }

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

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

    /* Изображение */
    .container-block1-image {
        background-image: url(images/fon-block1.avif);
        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: 270px 270px 270px 270px;
        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: 97%;
        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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block3.avif);
        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 300px 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: 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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block6.avif);
        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 150px;
        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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block9.avif);
        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: #262B37;
        padding: 30px 0;
    }

    /* Успешная отправка */
    .page-thanks[hidden] {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-image: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-cover.avif);
        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;
        border: 3px solid #6CCD5C;
    }

    .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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-cover.avif);
        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: 50%;
        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: 450px;
        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.avif);
        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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block3.avif);
        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: 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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block6.avif);
        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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block9.avif);
        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;
        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;
        background-color: #262B37;
        padding: 30px 0;
    }

    /* Успешная отправка */
    .page-thanks[hidden] {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-image: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-cover.avif);
        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;
    }

    /* Логотип */
    .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;
        border: 3px solid #6CCD5C;
    }

    .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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-cover.avif);
        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;
    }

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

    /* Изображение */
    .container-block1-image {
        display: none;
        background-image: url(images/fon-block1.avif);
        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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block3.avif);
        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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block6.avif);
        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: 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: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-block9.avif);
        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;
        background-color: #262B37;
        padding: 30px 0;
    }

    /* Успешная отправка */
    .page-thanks[hidden] {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-image: linear-gradient(to top, rgba(2, 12, 47, 0.7), rgba(2, 12, 47, 0.7)), url(images/fon-cover.avif);
        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;
    }
    
}