/* ОБЩИЕ */
/* ----------------------------------------------------------------------------------------------------------------------------------------- */

    /* Отступы */
    * {
        margin: 0;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        -webkit-box-sizing: border-box;
        scroll-behavior: smooth;
        box-sizing: border-box;
    }

    /* Подключенные шрифты */
    @font-face {
        font-family: 'helveticaneueltw1g_bd';
        src: url(fonts/helveticaneueltw1g_bd.woff);
        font-display: swap;
    }

    @font-face {
        font-family: 'moscowsansregular';
        src: url(fonts/moscowsansregular.woff);
        font-display: swap;
    }

    /* Цвет */
    html {
        background-color: #F0F0F0;
    }

    .fon-color-1 {
        background-color: #F0F0F0;
    }

    .fon-color-2 {
        background-color: #FFFFFF;
    }

    .fon-color-3 {
        background-color: #F0F0F0;
    }

    .form-block-4 {
        background-color: #262B37;
    }

    .text-color-1 {
        color: #F7BE56;
    }

    .text-color-2 {
        color: #2D2D2D;
    }

    .text-color-3 {
        color: #6CCD5C;
    }

    .text-color-4 {
        color: #FFFFFF;
    }

    .text-color-5 {
        color: #888888;
    }

    /* Заголовки */
    h1 {
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        font-family: helveticaneueltw1g_bd;
        font-size: clamp(1.5rem, 1.34rem + 0.594vw, 1.875rem);
        text-align: center;
        max-width: 800px;
    }

    h2 {
        font: 30px/110% helveticaneueltw1g_bd;
        text-align: center;
    }

    /* Текст */
    .text-1 {
        font: 20px helveticaneueltw1g_bd;
    }

    .text-2 {
        font: 14px moscowsansregular;
    }

    .text-3 {
        font: 24px moscowsansregular;
    }

    .text-4 {
        font: 16px/110% moscowsansregular;
    }

    .text-5 {
        font: 18px/110% moscowsansregular;
    }

    .text-6 {
        font: 16px/110% moscowsansregular;
        font-weight: 800;
    }

    .text-7 {
        font: 20px/110% moscowsansregular;
        font-weight: 800;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    }

    .text-8 {
        font: 18px/110% moscowsansregular;
        font-weight: 800;
        text-align: center;
    }

    .text-9 {
        font: 20px/110% moscowsansregular;
        font-weight: 800;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    /* Оформление текста */
    .style-text-1 {
        text-transform: uppercase;
    }

    .style-text-2 {
        text-decoration: none;
    }
    
    .style-text-3 {
        background-color: #bc1e16;
        padding: 10px;
        border-radius: 10px;
    }

    /* Списки */
    .style-list-1 {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .style-list-1 li {
        margin-left: 30px;
        background: url(images/icon-list-1.svg) no-repeat left center;
        padding: 3px 0px 3px 30px;
        list-style: none;
        margin: 0;
    }

    .container-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 110px;
    }

    /* Позиционирование */
    .flex-align-center {
        align-items: center;
    }

    .flex-align-start {
        align-items: start;
    }

    .flex-align-end {
        align-items: end;
    }

    .flex-justify-center {
        justify-content: center;
    }

    .flex-justify-start {
        justify-content: start;
    }

    .flex-justify-end {
        justify-content: end;
    }

    .flex-justify-spacebetween {
        justify-content: space-between;
    }

    /* Поля форм обратной связи*/
    .input-style-1 {
        border: none;
        outline: none;
        border: 2px solid #f0f0f0;
        width: 100%;
        height: 40px;
        padding: 0px 20px;
        border-radius: 40px;
        text-align: center;
        transition: 0.1s ease-in-out;
    }

    .errormess {
        border: 2px solid #bc1e16;
    }

    select {
        line-height: 1;
        background: url(images/icon-select.png) no-repeat right;
        appearance: none;
        background-position-x: 300px;
        text-align: center;
    }

    /* Кнопки */
    .button-style-1 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        height: 40px;
        color: #FFFFFF;
        font: 16px moscowsansregular;
        border: none;
        border-radius: 40px;
        background: linear-gradient(#FAF139, #E7AD42);
        box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
        text-shadow: 2px 2px 3px rgba(0,0,0,0.3);
        cursor: pointer;
        transition: 0.2s;
        gap: 10px;

        &:active {
            transform: scale(98%);
        }
    }

    .button-style-1 span {
        background-image: url(images/icon-button-1.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 20px;
        height: 20px;
    }

    .button-style-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 60px;
        color: #FFFFFF;
        font: 18px moscowsansregular;
        border: none;
        background: linear-gradient(#AEDBA6, #6CCD5C);
        text-shadow: 2px 2px 3px rgba(0,0,0,0.3);
        border-radius: 0px 0px 15px 15px;
        cursor: pointer;
        transition: 0.2s;
        gap: 10px;

        &:active {
            background: linear-gradient(#AEDBA6, #52f239);
        }
    }

    .button-style-2 span {
        background-image: url(images/icon-button-1.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: 30px;
        height: 30px;
    }

    /* Прелоадер */
    .preloader[hidden] {
        display: flex;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 300;
    }

    .loaded_hiding .preloader {
        transition: 0.3s opacity;
        opacity: 0;
    }
    
    .loaded .preloader {
        display: none;
    }

    /* Слайдер */
    .container-itc-slider {
        display: flex;
    }

    .itc-slider {
        position: relative;
    }
      
    .itc-slider-wrapper {
        overflow: hidden;
        width: 1050px;
    }
      
    .itc-slider-items {
        display: flex;
        transition: transform 0.5s ease;
        will-change: transform;
        padding: 15px;
    }
      
    .itc-slider-transition-none {
        transition: none;
    }
      
    .itc-slider-item {
        flex: 0 0 35.6%;
        max-width: 100%;
        -ms-user-select: none; 
        -moz-user-select: none; 
        -webkit-user-select: none;
        user-select: none;
        will-change: transform;
    }
      
    /* Кнопки влево и вправо */
    .container-itc-slider-btn {
        display: flex;
        width: 100%;
        justify-content: end;
        gap: 10px;
    }
    
    .itc-slider-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        border-radius: 60px;
        color: #fff;
        text-align: center;
        background: rgb(247 190 86 / 20%);
        border: none;
        transform: translateY(-50%);
        cursor: pointer;
    }
      
    .itc-slider-btn-hide {
        display: none;
    }
      
    .itc-slider-btn-prev {
        left: 0;
    }
      
    .itc-slider-btn-next {
        right: 0;
    }
      
    .itc-slider-btn:hover,
    .itc-slider-btn:focus {
        color: #fff;
        text-decoration: none;
        background: rgb(247 190 86 / 100%);
        outline: 0;
    }
      
    .itc-slider-btn::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: transparent no-repeat center center;
        background-size: 100% 100%;
    }
      
    .itc-slider-btn-prev::before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
    }
      
    .itc-slider-btn-next::before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
    }

    /* Галерея */
    .popup[hidden] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: translate(-100%, -100%) scale(0);
        background-color: rgba(38, 43, 55, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        overflow: hidden;
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }

    .container-large-image {
        display: flex;
        width: 100%;
        height: 400px;
    }

    .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 .1s;
        transition-delay: 0.1s;
    }

    .top-bar{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
    }

    .close-btn{
        opacity: 0;
        position: absolute;
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-image: url(images/icon-menu-close.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
    }

    .large-image{
        padding: 30px 0;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .st-size {
        max-height: 600px;
        min-height: 600px;
    }

    .image {
        cursor: zoom-in;
    }

    /* Галерея2 */
    /* Галерея */
    .popup1[hidden] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: translate(-100%, -100%) scale(0);
        background-color: rgba(38, 43, 55, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        overflow: hidden;
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }

    .container-large-image1 {
        display: flex;
        width: 100%;
        height: 700px;
    }

    .popup1.active1{
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    .popup1.active1 .close-btn1,
    .popup1.active1 .image-name1,
    .popup1.active1 .index1,
    .popup1.active1 .large-image1,
    .popup1.active1 .arrow-btn1{
        opacity: 1;
        transition: opacity .1s;
        transition-delay: 0.1s;
    }

    .top-bar1{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
    }

    .close-btn1{
        opacity: 0;
        position: absolute;
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-image: url(images/icon-menu-close.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
    }

    .large-image1{
        padding: 30px 0;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .st-size1 {
        max-height: 600px;
        min-height: 600px;
    }

    .image1 {
        cursor: zoom-in;
    }

    /* Форма обратной связи 2 */
    .form-window {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(38, 43, 55, 0.8);
        display: flex;
        z-index: 1000;
        overflow: hidden;
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
        transform: scale(0);
        padding: 20px;
    }

    .form-window.active-window-form {
        transform: scale(100%);
    }

    .form-window-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        max-width: 400px;
        transform: scale(0);
        transition: 0.3s ease-in-out;
    }

    .form-window-1.active-window-form {
        transform: scale(100%);
    }

    .form-window-1-1 {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px 15px 0px 0px;
    }

    .form-window-1-2 {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }
    
    .form-window-1-2 button {
        max-width: 100%;
    }

    .form-window-1-3 {
        display: flex;
        background-image: url(images/fon-form-window.svg);
        background-position: center;
        background-size: contain;
        padding: 20px;
        border-radius: 0px 0px 15px 15px;
        gap: 10px;
    }

    .button-form-close {
        cursor: pointer;
        transition: 0.1s ease-in-out;

        &:active {
            transform: scale(98%);
        }
    }
      
    /* Область контента */
    .content-area {
        width: 100%;
        margin: 0 auto;
    }

    /* Шапка сайта */
    header[hidden] {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        z-index: 200;
    }

    .container-header {
        display: grid;
        grid-template-columns: 300px 300px 300px;
    }

    .container-header-1 {
        display: flex;
        gap: 15px;
    }

    .container-header-1-1 {
        display: flex;
        flex-direction: column;
    }

    .header-phone {
        border: 2px solid #6CCD5C;
        padding: 10px 30px;
    }

    .header-shadow {
        box-shadow: 2px 0px 3px 0px rgba(0,0,0,0.3);
    }

    /* Блоки */
    .block-1[hidden], .block-2[hidden], .block-3[hidden], .block-4[hidden], .block-5[hidden], .block-6[hidden], .block-7[hidden], .block-9[hidden] {
        display: flex;
        flex-direction: column;
    }

    .container-block-1, .container-block-2, .container-block-3, .container-block-4, .container-block-5, .container-block-6, .container-block-7 {
        display: flex;
        flex-direction: column;
    }

    .container-block-9 {
        display: flex;
    }

    .container-cover-tile, .container-block-1-tile, .container-block-2-tile-1, .container-block-4-tile {
        display: grid;
        gap: 30px;
    }

    .container-block-5-tile {
        display: grid;
        gap: 50px;
    }

    /* Обложка сайта */
    .cover[hidden], .page-thanks[hidden] {
        display: flex;
        width: 100%;
        height: 600px;
        background-image: linear-gradient(to top,rgba(38, 43, 55, 0.9), rgba(38, 43, 55, 0.9)), url(images/fon-cover.avif);
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
    }

    .container-cover {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-top: 150px;
    }

    .container-cover-tile-1 {
        display: flex;
        gap: 10px;
    }

    .container-cover-tile-1 img {
        filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
    }

    .container-cover-tile-1 p {
        text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    }

    /* Форма обратной связи (Обложка) */
    .cover-form {
        position: relative;
        display: flex;
        border-radius: 15px;
        box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.1);
    }

    .cover-form-1 {
        display: flex;
        flex-direction: column;
        padding: 30px;
        gap: 10px;
        width: 100%;
    }

    .cover-form-1-1 {
        display: flex;
        gap: 5px;
    }

    .cover-form-2 {
        display: flex;
        flex-direction: column;
        width: 50%;
        background-image: url(images/icon-form-1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 70%;
        gap: 5px;
    }

    /* Блок 1 */
    .container-block-1-tile-1 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .container-block-1-tile-1-1 {
        display: flex;
        flex-direction: column;
        height: 200px;
        gap: 10px;
    }

    /* Блок 2 */
    .container-block-2-tile {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .container-block-2-tile-1-1 {
        box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.1);
        border-radius: 15px;
        height: 100%;
    }

    .container-block-2-tile-1-1-1 {
        display: flex;
        width: 100%;
        height: 60px;
        background: linear-gradient(to top, #E7AD42, #FAF139);
        border-radius: 15px 15px 0px 0px;
    }
    
    .container-block-2-tile-1-1-2 {
        display: flex;
        flex-direction: column;
        padding: 0px 0px 30px 0px;
        gap: 20px;
    }

    .container-block-2-tile-1-1-2 img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .container-block-2-tile-2 {
        display: flex;
        border: 2px solid #E7AD42;
        padding: 20px;
        border-radius: 15px;
    }

    /* Блок 3,6 */
    .block-3[hidden], .block-6[hidden], .block-9[hidden] {
        background-image: linear-gradient(to top,rgba(38, 43, 55, 0.9), rgba(38, 43, 55, 0.9)), url(images/fon-cover.avif);
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
        width: 100%;
        height: auto;
    }

    .form-block-3, .form-block-6 {
        display: flex;
        flex-direction: column;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.1);
        gap: 20px;
    }

    .form-block-3 p, .form-block-6 p  {
        text-align: center;
    }

    /* Блок 4 */
    .container-block-4-tile-1 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .container-block-4-tile-1 p {
        text-align: center;
    }

    .container-block-5 img {
        filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.1));
    }

    /* Блок 6 */
    .block6-form-1 {
        display: flex;
        gap: 5px;
    }

    /* Блок 7 */
    .block-7-slider-tile {
        display: flex;
        flex-direction: column;
        width: 300px;
        height: auto;
        border-radius: 15px;
        box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.1);
    }

    .block-7-slider-tile-1 {
        background-color: #888888;
        width: 100%;
        height: 300px;
        border-radius: 15px 15px 0px 0px;
    }

    .block-7-slider-tile-1 img {
        width: 300px;
        height: 100%;
        object-fit: cover;
        border-radius: 15px 15px 0px 0px;
    }

    .block-7-slider-tile-2 {
        display: flex;
        padding: 10px 30px 10px 30px;
        border-radius: 0px 0px 15px 15px;
        height: 110px;
    }

    /* Блок 8 */
    .block-8-slider-tile {
        width: 300px;
        height: 150px;
        border-radius: 15px;
        box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.1);
    }

    .block-8-slider-tile img {
        width: 100%;
        height: 150px;
        object-fit: contain;
    }

    /* Блок 9 */
    .form-block-9 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .block9-form-1 {
        display: flex;
        gap: 5px;
    }

    .block9-form-1-1 {
        display: flex;
        border-radius: 15px;
    }

    .block9-form-1-1 img {
        width: 400px;
        height: 300px;
        border-radius: 15px;
        filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
        object-fit: cover;
    }

    /* Подвал сайта */
    footer[hidden] {
        display: flex;
    }

    .page-thanks[hidden] {
        height: 100vh;
        padding: 20px;
    }

    .container-page-thanks {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 15px;
        padding: 30px;
        gap: 20px;
    }

    .container-page-thanks form {
        display: flex;
        width: 100%;
    }

/* ДЕСКТОП */
/* ----------------------------------------------------------------------------------------------------------------------------------------- */

    @media only screen and (min-width: 1440px) {

        /* Область контента */
        .content-area {
            max-width: 1140px;
        }

        /* Шапка сайта, Подвал сайта */
        header[hidden], footer[hidden] {
            height: 80px;
        }

        /* Блоки */
        .block-1[hidden] {
            padding: 100px 0px 50px 0px;
        }
        
        .block-2[hidden], .block-3[hidden], .block-4[hidden], .block-5[hidden], .block-6[hidden], .block-7[hidden], .block-9[hidden] {
            padding: 50px 0px;
        }

        .container-block-1, .container-block-2, .container-block-3, .container-block-4, .container-block-5, .container-block-6, .container-block-7, .container-block-9 {
            gap: 50px;
        }

        .container-block-1-tile, .container-block-2-tile-1, .container-block-4-tile {
            grid-template-columns: 300px 300px 300px;
        }

        .container-block-5-tile {
            grid-template-columns: 150px 150px 150px 150px;
        }

        .container-cover-tile {
            grid-template-columns: 250px 250px 250px;
        }

        .cover-form {
            top: 60px;
        }
       
        .tileblock-1 p {
            text-align: right;
        }

        .tileblock-2 {
            height: 100%;
        }

        .tileblock-2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
        }

        .tileblock-3 p {
            text-align: left;
        }

        .block6-form-1 {
            width: 1000px;
        }
        
    }

/* ПЛАНШЕТ */
/* ----------------------------------------------------------------------------------------------------------------------------------------- */

    @media only screen and (min-width: 768px) and (max-width: 1439px) {
        
        /* Область контента */
        .content-area {
            max-width: 720px;
        }
        
        /* Шапка сайта */
        header[hidden], footer[hidden] {
            height: 80px;
        }
        
        .container-header {
            grid-template-columns: 100%;
        }

        .heder-logo-1, .heder-logo-2 {
            display: none;
        }

        /* Блоки */
        .block-1[hidden] {
            padding: 100px 0px 45px 0px;
        }

        .block-2[hidden], .block-3[hidden], .block-4[hidden], .block-5[hidden], .block-6[hidden], .block-7[hidden], .block-9[hidden] {
            padding: 45px 0px;
        }

        .container-block-1, .container-block-2, .container-block-3, .container-block-4, .container-block-5, .container-block-6, .container-block-7, .container-block-9 {
            gap: 50px;
        }

        .container-cover-tile {
            grid-template-columns: 250px 250px;
        }

        .container-block-1-tile {
            grid-template-columns: 180px 300px 180px;
        }

        .container-block-2-tile-1, .container-block-4-tile {
            grid-template-columns: 300px 300px;
        }

        .container-block-5-tile {
            grid-template-columns: 150px 150px 150px;
        }

        .cover-form {
            top: 20px;
        }
        
        .tileblock-1 p {
            text-align: right;
        }

        .tileblock-2 {
            height: 100%;
        }

        .tileblock-2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
        }

        .tileblock-3 p {
            text-align: left;
        }

        .block6-form-1 {
            width: 600px;
        }

        select {
            background-position-x: 170px;
        }

        .block9-form-1 {
            flex-direction: column;
        }

        /* Слайдер */
        .itc-slider-wrapper {
            width: 700px;
        }

        .itc-slider-item {
            flex: 0 0 53%;
        }

        .container-block-1-tile-1-1 {
            height: 230px;
        }

    }

/* ТЕЛЕФОН */
/* ----------------------------------------------------------------------------------------------------------------------------------------- */

    @media only screen and (max-width: 767px) {

        /* Область контента */
        .content-area {
            max-width: 320px;
        }

        /* Шапка сайта */
        header[hidden], footer[hidden] {
            height: 60px;
        }

        .container-header {
            grid-template-columns: 100%;
        }

        .heder-logo-1, .heder-logo-2 {
            display: none;
        }

        /* Обложка сайта */
        .container-cover {
            margin-top: 450px;
            gap: 30px;
        }

        .container-cover-tile {
            grid-template-columns: 250px;
        }

        /* Блоки */
        .block-1[hidden] {
            padding: 400px 0px 30px 0px;
        }

        .block-2[hidden], .block-3[hidden], .block-3[hidden], .block-4[hidden], .block-5[hidden], .block-6[hidden], .block-7[hidden], .block-9[hidden] {
            padding: 30px 0px;
        }

        .container-block-1, .container-block-2, .container-block-3, .container-block-4, .container-block-5, .container-block-6, .container-block-7, .container-block-9 {
            gap: 30px;
        }

        .container-block-2-tile-1, .container-block-4-tile {
            grid-template-columns: 100%;
        }

        .container-block-5-tile {
            grid-template-columns: 150px;
            gap: 30px;
        } 

        .cover-form {
            top: -10px;
            flex-direction: column;
        }

        .cover-form-1 {
            text-align: center;
            padding: 20px 10px 0px 10px;
        }

        .cover-form-1-1 {
            flex-direction: column;
        }

        .cover-form-2 {
            width: 100%;
            height: 210px;
        }

        .container-block-1-tile {
            grid-template-columns: 100%;
            gap: 10px;
        }
        
        .tileblock-1, .tileblock-3 {
            align-items: center;
            text-align: center;
        }

        .tileblock-2 {
            height: 100%;
        }

        .tileblock-2 img {
            display: none;
        }

        .block6-form-1 {
            width: 100%;
            flex-direction: column;
        }

        select {
            background-position-x: 220px;
        }

        .block9-form-1 {
            flex-direction: column;
        }

        .container-block-9 {
            flex-direction: column;
        }

        .button-style-1 {
            max-width: 100%;
        }

        .block9-form-1-1 img {
            width: 300px;
            height: 200px;
        }

        /* Слайдер */
        .itc-slider-wrapper {
            width: 340px;
        }

        .itc-slider-item {
            flex: 0 0 100%;
        }

        .container-itc-slider-btn {
            justify-content: center;
            margin-top: 30px;
        }

        .container-block-1-tile-1 {
            gap: 30px;
        }

        .container-block-1-tile-1-1 {
            align-items: center;
            height: auto;
        }

    }