/* Общие */
/* ------------------------------------------------------------------------------------------------------------------------------- */

    /* Отступы */
        * {
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-box-sizing: border-box;
        }

        .marginleft {
            margin-left: 10px;
        }

    /* Отключение копирования информации с сайта */
        body {
            -ms-user-select: none; 
            -moz-user-select: none; 
            -webkit-user-select: none; 
            user-select: none;
        }

    /* Фон блоков */
        html {
            background-color: #163b3e;
        }
        
        .fon {
            background-attachment: fixed;
            background-image: linear-gradient(to top, rgba(22, 59, 62, 0.8), rgba(22, 59, 62, 0.8)), url(images/fon-cover.avif);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }

    /* Подключенные шрифты */
        @font-face {
            font-family: 'Roboto-Bold';
            src: url(fonts/Roboto-Bold.woff);
            font-display: swap;
        }

        @font-face {
            font-family: 'Roboto-Medium';
            src: url(fonts/Roboto-Medium.woff);
            font-display: swap;
        }

        @font-face {
            font-family: 'FoglihtenNo06_076';
            src: url(fonts/FoglihtenNo06_076.woff);
            font-display: swap;
        }

        @font-face {
            font-family: 'OldStandard-Bold';
            src: url(fonts/OldStandard-Bold.woff);
            font-display: swap;
        }

        @font-face {
            font-family: 'OpenSans-Regular';
            src: url(fonts/OpenSans-Regular.woff);
            font-display: swap;
        }

    /* Ссылки */
        a {
            text-decoration: none;
        }

    /* Стиль текста */
        .styletext-1 {
            text-transform: uppercase;
        }
        
    /* Цвет */
        .text-color-1 {
            color: #FFFFFF;
        }

        .text-color-2 {
            color: #2D2D2D;
        }

        .text-color-3 {
            color: #E8C69B;
        }

        .text-color-4 {
            color: #888888;
        }

    /* Меню */
        .text-style-phone {
            font: 18px Roboto-Bold;
        }

        .text-style-menu {
            font: 18px Roboto-Medium;
        }

    /* Заголовки */
        h1 {
            font-family: FoglihtenNo06_076;
            font-size: clamp(1.875rem, 1.429rem + 1.19vw, 2.5rem);
            text-align: center;
        }

        h2 {
            font-family: Roboto-Medium;
            font-size: clamp(1.25rem, 1.071rem + 0.476vw, 1.5rem);
            text-align: center;
        }

        h3 {
            font-family: OldStandard-Bold;
            font-size: clamp(2.5rem, 1.607rem + 2.381vw, 3.75rem);
            text-align: center;
        }

        h4 {
            font: 20px Roboto-Medium;
        }

        .block-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 50px;
        }

        @media only screen and (max-width: 768px) {
            .block-header {
                margin-bottom: 30px;
            }
        }

    /* Текст */
        .text-style-1 {
            font: 16px/150% OpenSans-Regular;
        }

        .text-style-2 {
            font: 18px/150% Roboto-Medium;
        }

        .text-style-3 {
            font: 12px/150% OpenSans-Regular;
            text-align: center;
        }

        .text-style-4 {
            font: 14px/150% OpenSans-Regular;
        }

        .text-style-5 {
            font: 18px/150% OpenSans-Regular;
        }

    /* Разделительная линия */
        .line-style-1 {
            border: none;
            width: 200px;
            height: 2px;
            background-color: #FFFFFF;
        }

        .line-style-2 {
            border: none;
            width: 100%;
            height: 2px;
            background-color: #2d2d2d;
        }

        .line-style-3 {
            border: none;
            width: 100%;
            height: 2px;
            background-color: #E8C69B;
        }

    /* Кнопки */
        .contacts-form-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: auto;
            margin-top: 30px;
        }

        .button-style-1 {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 300px;
            width: 100%;
            height: 60px;
            border-radius: 10px;
            box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            outline: none;
            border: none;
            cursor: pointer;
            background-color: #E8C69B;
            color: #2D2D2D;
            font: 18px Roboto-Medium;
            transition: 0.3s;

            &:active {
                transform: scale(95%);
            }
        }

        @media only screen and (max-width: 768px) {
            .button-style-1 {
                max-width: 100%;
            }
        }

    /* Неверный ввод (Форма обратной связи) */
        .input-error {
            background-color: #BE5454;
            padding: 10px 20px;
            box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            width: 100%;
            text-align: center;
        }

    /* Успешная отправка */
        .successful-sending {
            background-color: #0E8493;
            width: 80%;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        @media only screen and (max-width: 768px) {
            .successful-sending {
                width: 100%;
            }
        }

    /* Прелоадер */
        .preloader[hidden] {
            position: fixed;
            background-color: #EBEAE3;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 300;
        }

        .loading-indicator {
            width: 4rem;
            height: 4rem;
            border: 4px solid #f0f0f0;
            border-top-color: #0E8493;
            border-radius: 50%;
            animation:  loading-indicator 800ms linear infinite;
        }

        @keyframes loading-indicator {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }   
        }

        .loaded_hiding .preloader {
            transition: 0.3s opacity;
            opacity: 0;
        }

        .loaded .preloader {
            display: none;
        }

    /* Заливка шапки сайта*/
        .header-color {
            background-color: #163b3e;
            transition: background 0.5s ease;
            box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
        }

    /* Выпадающий список меню */
        .header-menu-mob {
            position: fixed;
            top: 0;
            left: 0;
            display: flex;
            align-items: start;
            justify-content: center;
            width: 100%;
            height: 100vh;
            background-color: rgba(22, 59, 62, 0.8);
            backdrop-filter: blur(2px);
            padding-top: 40px;
            transform: scale(0);
            overflow: auto;
            z-index: 200;
        }

        .header-menu-mob.active {
            transform: scale(100%);
        }

        .container-headermenumob {
            display: flex;
            flex-direction: column;
            background-color: #FFFFFF;
            max-width: 400px;
            width: 100%;
            height: auto;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            gap: 15px;
            transform: translateX(-100%);
            transition: 0.3s;
        }

        @media only screen and (max-width: 768px) {
            .container-headermenumob {
                max-width: 320px;
            }
        }

        .container-headermenumob.active {
            transform: translateX(0);
        }

        .container-menuiconclose {
            display: flex;
            align-items: center;
            justify-content: end;
            width: 100%;
            height: auto;
        }

        .container-menuiconclose img {
            &:active {
                transform: scale(95%);
            }
        }

    /* Активный пункт меню */
        .header-link--active2 {
            color: #E8C69B;
        }

    /* Галерея» */
        .popup[hidden] {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            transform: translate(-100%, -100%) scale(0);
            background: rgba(22, 59, 62, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            overflow: hidden;
            backdrop-filter: blur(3px);
        }

        .container-large-image {
            display: flex;
            max-width: 800px;
            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-gallery-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;
        }

        .item-image {
            cursor: pointer;
        }

/* Десктоп */
/* ------------------------------------------------------------------------------------------------------------------------------- */

    @media only screen and (min-width: 1440px) {

        /* Шапка сайта */
            header[hidden] {
                position: fixed;
                top: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 60px;
                z-index: 150;
            }

        /* Область контента */
            .content-area {
                width: 100%;
                max-width: 1140px;
                margin: 0 auto;
            }

            .container-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .header-menu {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .header-menu-mob {
                display: none;
            }

            .header-link {
                display: inline-block;
                line-height: 1.5;
            }
            
            .header-link::after {
                background-color: #E8C69B; /* Цвет линии при наведении на нее курсора мыши */
                display: block;
                content: "";
                height: 2px; /* Высота линии */
                width: 0%;
                -webkit-transition: width .3s ease-in-out;
                -moz--transition: width .3s ease-in-out;
                transition: width .3s ease-in-out;
            }

            .header-link:hover::after,
            .header-link:focus::after {
                width: 100%;
            }

        /* Кнопка моб.меню */
            .header-burger {
                display: none;
            }

        /* Обложка сайта */
            .cover[hidden] {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100vh;
            }

            .container-cover {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .container-cover-tile {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 20px;
                background-color: rgba(22, 59, 62, 0.8);
                backdrop-filter: blur(2px);
                padding: 30px;
                border-radius: 20px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }
            
            .cover-logo {
                width: 100%;
                height: 300px;
                filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
            }

        /* Блок 1 */
            .aboutme[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-aboutme-1 {
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: space-between;
                background-color: #EBEAE3;
                padding: 30px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                border-radius: 20px;
                gap: 30px;
            }

            .container-aboutme-1-1 {
                display: flex;
                align-items: start;
                justify-content: center;
                gap: 30px;
            }

            .container-aboutme-1-2 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
            }

            .aboutme-tile-1 {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30%;
            }

            .aboutme-tile-1 img {
                width: 100%;
                height: auto;
                object-fit: cover;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                border-radius: 10px;
            }

            .aboutme-tile-2 {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
                border: 2px solid #0E8493;
                padding: 30px;
                border-radius: 10px;
            }

            .itc-slider {
                position: relative;
                padding: 10px 30px;
                width: 100%;
            }
    
            .itc-slider-wrapper {
                overflow: hidden;
            }
    
            .itc-slider-items {
                display: flex;
                transition: transform 0.5s ease;
                will-change: transform;
                gap: 20px;
            }
    
            .itc-slider-item {
                flex: 0 0 0;
                max-width: 100%;
                height: auto;
                user-select: none;
                will-change: transform;
            }
    
            .itc-slider-item img {
                width: 325px;
                height: 225px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                cursor: pointer;
            }
    
            .itc-slider-btn {
                position: absolute;
                top: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 60px;
                height: 60px;
                color: #fff;
                text-align: center;
                background: rgb(0 0 0 / 20%);
                border: none;
                border-radius: 50px;
                transform: translateY(-50%);
                cursor: pointer;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                transition: 0.3s;
            }
    
            .itc-slider-btn-prev {
                left: 0;
                margin-left: 5px;
            }
    
            .itc-slider-btn-next {
                right: 0;
                margin-right: 5px;
            }
    
            .itc-slider-btn:hover, .itc-slider-btn:focus {
                color: #fff;
                text-decoration: none;
                background: #E8C69B;
                outline: 0;
            }
    
            .itc-slider-btn::before {
                content: "";
                display: inline-block;
                width: 30px;
                height: 30px;
                background: transparent no-repeat center center;
                background-size: 100% 100%;
            }
    
            .itc-slider-btn-prev::before {
                background-image: url(images/arrow1.svg);
            }
            
            .itc-slider-btn-next::before {
                background-image: url(images/arrow2.svg);
            }

        /* Блок 2 */
            .services[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-services {
                display: grid;
                grid-template-columns: 350px;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .services-tile {
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: center;
                padding: 30px;
                background-image: url(images/icon-services-tile.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 350px;
                height: 350px;
                filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
                gap: 10px;
            }

        /* Блок 3 */
            .articles[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-articles {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 50px;
            }

            .container-articles-filter {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .articles-filter-1 {
                background-color: rgba(235, 234, 227, 0.3);
                padding: 10px 20px;
                border-radius: 10px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                color: #FFFFFF;
                transition: 0.3s;
                cursor: pointer;

                &:active {
                    transform: scale(95%);
                }
            }

            .filter-article--active {
                background-color: #E8C69B;
                color: #2D2D2D;
            }

            .articles-1 {
                display: flex;
                flex-direction: column;
                padding: 30px;
                border-radius: 20px;
                background-color: #EBEAE3;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                width: 100%;
                height: auto;
            }

            .articles-1 p {
                border: 2px solid #0E8493;
                padding: 30px;
                border-radius: 10px;
            }

        /* Блок 4 */
            .contacts[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-contacts {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 50px;
            }

            .container-contacts-messengers {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .icon-vk {
                background-image: url(images/icon-vk.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 80px;
                height: 80px;
                transition: 0.3s;

                &:active {
                    transform: scale(95%);
                }
            }

            .icon-telegram {
                background-image: url(images/icon-telegram.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 80px;
                height: 80px;
                transition: 0.3s;

                &:active {
                    transform: scale(95%);
                }
            }

            .icon-whatsapp {
                background-image: url(images/icon-whatsapp.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 80px;
                height: 80px;
                transition: 0.3s;

                &:active {
                    transform: scale(95%);
                }
            }

            .contacts-form {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 80%;
                height: auto;
                gap: 10px;
            }

            .contacts-form-field1 {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: auto;
                gap: 10px;
            }

            .contacts-form-field1 input {
                outline: none;
                border: none;
                background-color: #FFFFFF;
                padding: 0 20px;
                width: 100%;
                height: 60px;
                border-radius: 10px;
                color: #2D2D2D;
                font: 16px/150% OpenSans-Regular;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }

            .contacts-form-field1 textarea {
                outline: none;
                border: none;
                background-color: #FFFFFF;
                padding: 20px;
                width: 100%;
                border-radius: 10px;
                height: auto;
                color: #2D2D2D;
                font: 16px/150% OpenSans-Regular;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                resize: none;
            }
            
        /* Подвал сайта */
            footer[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
                background-color: #2D2D2D;
            }

            .container-footer {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .container-footer-text {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

    }

/* Планшет */
/* ------------------------------------------------------------------------------------------------------------------------------- */

    @media only screen and (min-width: 768px) and (max-width: 1439px) {

        /* Шапка сайта */
            header[hidden] {
                position: fixed;
                top: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 60px;
                z-index: 150;
            }

        /* Область контента */
            .content-area {
                width: 100%;
                max-width: 720px;
                margin: 0 auto;
            }

            .container-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .header-menu {
                display: none;
            }

            .header-link-mob {
                &:active {
                    color: #E8C69B;
                }
            }

        /* Кнопка моб.меню */
            .header-burger {
                display: block;
                &:active {
                    transform: scale(95%);
                }
            }

        /* Обложка сайта */
            .cover[hidden] {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: auto;
                padding: 100px 0 45px 0;
            }

            .container-cover {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .container-cover-tile {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 20px;
                background-color: rgba(22, 59, 62, 0.8);
                backdrop-filter: blur(2px);
                padding: 30px;
                border-radius: 20px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }
            
            .cover-logo {
                width: 100%;
                height: 300px;
                filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
            }

            
        /* Блок 1 */
            .aboutme[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-aboutme-1 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                background-color: #EBEAE3;
                padding: 30px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                border-radius: 20px;
                gap: 30px;
            }

            .container-aboutme-1-1 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .container-aboutme-1-2 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
            }

            .aboutme-tile-1 {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30%;
            }

            .aboutme-tile-1 img {
                width: 100%;
                height: auto;
                object-fit: cover;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                border-radius: 10px;
            }

            .aboutme-tile-2 {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
                border: 2px solid #0E8493;
                border-radius: 10px;
                padding: 30px;
            }

            .itc-slider {
                position: relative;
                padding: 10px 30px;
                width: 100%;
            }
    
            .itc-slider-wrapper {
                overflow: hidden;
            }
    
            .itc-slider-items {
                display: flex;
                transition: transform 0.5s ease;
                will-change: transform;
                gap: 20px;
            }
    
            .itc-slider-item {
                flex: 0 0 0;
                max-width: 100%;
                height: auto;
                user-select: none;
                will-change: transform;
            }
    
            .itc-slider-item img {
                width: 185px;
                height: 120px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                cursor: pointer;
            }
    
            .itc-slider-btn {
                position: absolute;
                top: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 50px;
                height: 50px;
                color: #fff;
                text-align: center;
                background: rgb(0 0 0 / 20%);
                border: none;
                border-radius: 50px;
                transform: translateY(-50%);
                cursor: pointer;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }
    
            .itc-slider-btn-prev {
                left: 0;
                margin-left: 5px;
            }
    
            .itc-slider-btn-next {
                right: 0;
                margin-right: 5px;
            }
    
            .itc-slider-btn:hover, .itc-slider-btn:focus {
                color: #fff;
                text-decoration: none;
                background: #E8C69B;
                outline: 0;
            }
    
            .itc-slider-btn::before {
                content: "";
                display: inline-block;
                width: 30px;
                height: 30px;
                background: transparent no-repeat center center;
                background-size: 100% 100%;
            }
    
            .itc-slider-btn-prev::before {
                background-image: url(images/arrow1.svg);
            }
            
            .itc-slider-btn-next::before {
                background-image: url(images/arrow2.svg);
            }

        /* Блок 2 */
            .services[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-services {
                display: grid;
                grid-template-columns: 350px;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .services-tile {
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: center;
                padding: 30px;
                background-image: url(images/icon-services-tile.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 350px;
                height: 350px;
                filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
                gap: 10px;
            }

        /* Блок 3 */
            .articles[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-articles {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 50px;
            }

            .container-articles-filter {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .articles-filter-1 {
                background-color: rgba(235, 234, 227, 0.3);
                padding: 10px 20px;
                border-radius: 10px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                color: #FFFFFF;
                transition: 0.3s;
                cursor: pointer;

                &:active {
                    transform: scale(95%);
                }
            }

            .filter-article--active {
                background-color: #E8C69B;
                color: #2D2D2D;
            }

            .articles-1 {
                display: flex;
                flex-direction: column;
                padding: 30px;
                border-radius: 20px;
                background-color: #EBEAE3;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                width: 100%;
                height: auto;
            }

            .articles-1 p {
                border: 2px solid #0E8493;
                padding: 30px;
                border-radius: 10px;
            }

        /* Блок 4 */
            .contacts[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 45px 0;
            }

            .container-contacts {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 50px;
            }

            .container-contacts-messengers {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
            }

            .icon-vk {
                background-image: url(images/icon-vk.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 80px;
                height: 80px;
                transition: 0.5s;

                &:active {
                    transform: scale(95%);
                }
            }

            .icon-telegram {
                background-image: url(images/icon-telegram.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 80px;
                height: 80px;
                transition: 0.5s;

                &:active {
                    transform: scale(95%);
                }
            }

            .icon-whatsapp {
                background-image: url(images/icon-whatsapp.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 80px;
                height: 80px;
                transition: 0.5s;

                &:active {
                    transform: scale(95%);
                }
            }

            .contacts-form {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: auto;
                gap: 10px;
            }

            .contacts-form-field1 {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: auto;
                gap: 10px;
            }

            .contacts-form-field1 input {
                outline: none;
                border: none;
                background-color: #FFFFFF;
                padding: 0 20px;
                width: 100%;
                height: 60px;
                border-radius: 10px;
                color: #2D2D2D;
                font: 16px/150% OpenSans-Regular;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }

            .contacts-form-field1 textarea {
                outline: none;
                border: none;
                background-color: #FFFFFF;
                padding: 20px;
                width: 100%;
                border-radius: 10px;
                height: auto;
                color: #2D2D2D;
                font: 16px/150% OpenSans-Regular;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                resize: none;
            }
            
        /* Подвал сайта */
            footer[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
                background-color: #2D2D2D;
            }

            .container-footer {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .container-footer-text {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

    }

/* Телефон */
/* ------------------------------------------------------------------------------------------------------------------------------- */

    @media only screen and (max-width: 768px) {

        /* Шапка сайта */
            header[hidden] {
                position: fixed;
                top: 0;
                left: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 60px;
                z-index: 150;
            }

        /* Область контента */
            .content-area {
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }

            .container-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .header-menu {
                display: none;
            }

            .header-link-mob {
                &:active {
                    color: #E8C69B;
                }
            }

        /* Кнопка моб.меню */
            .header-burger {
                display: block;
                &:active {
                    transform: scale(95%);
                }
            }

        /* Обложка сайта */
            .cover[hidden] {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                padding: 100px 0 50px 0;
            }

            .container-cover {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .container-cover-tile {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 20px;
                background-color: rgba(22, 59, 62, 0.8);
                backdrop-filter: blur(2px);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }
            
            .cover-logo {
                width: 100%;
                height: 300px;
                filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
            }

        /* Блок 1 */
            .aboutme[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
            }

            .container-aboutme-1 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                background-color: #EBEAE3;
                padding: 10px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                border-radius: 10px;
                gap: 20px;
            }

            .aboutme-tile-1 {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
            }

            .container-aboutme-1-1 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 20px;
            }

            .container-aboutme-1-2 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
            }

            .aboutme-tile-1 img {
                width: 100%;
                height: auto;
                object-fit: contain;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                border-radius: 5px;
            }

            .aboutme-tile-2 {
                display: flex;
                flex-direction: column;
                width: 100%;
                height: auto;
                border: 2px solid #0E8493;
                border-radius: 5px;
                padding: 10px;
            }

            .itc-slider {
                position: relative;
                padding: 0px 20px;
                width: 100%;
            }
    
            .itc-slider-wrapper {
                overflow: hidden;
            }
    
            .itc-slider-items {
                display: flex;
                transition: transform 0.5s ease;
                will-change: transform;
                gap: 20px;
            }
    
            .itc-slider-item {
                flex: 0 0 0;
                max-width: 100%;
                height: auto;
                user-select: none;
                will-change: transform;
            }
    
            .itc-slider-item img {
                width: 255px;
                height: 190px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                cursor: pointer;
            }
    
            .itc-slider-btn {
                position: absolute;
                top: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 50px;
                height: 50px;
                color: #fff;
                text-align: center;
                background: rgb(0 0 0 / 20%);
                border: none;
                border-radius: 50px;
                transform: translateY(-50%);
                cursor: pointer;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }
    
            .itc-slider-btn-prev {
                left: 0;
                margin-left: 5px;
            }
    
            .itc-slider-btn-next {
                right: 0;
                margin-right: 5px;
            }
    
            .itc-slider-btn:hover, .itc-slider-btn:focus {
                color: #fff;
                text-decoration: none;
                background: #E8C69B;
                outline: 0;
            }
    
            .itc-slider-btn::before {
                content: "";
                display: inline-block;
                width: 30px;
                height: 30px;
                background: transparent no-repeat center center;
                background-size: 100% 100%;
            }
    
            .itc-slider-btn-prev::before {
                background-image: url(images/arrow1.svg);
            }
            
            .itc-slider-btn-next::before {
                background-image: url(images/arrow2.svg);
            }

        /* Блок 2 */
            .services[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
            }

            .container-services {
                display: grid;
                grid-template-columns: 320px;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .services-tile {
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: center;
                padding: 30px;
                background-image: url(images/icon-services-tile.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 320px;
                height: 320px;
                filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
                gap: 10px;
            }

        /* Блок 3 */
            .articles[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
            }

            .container-articles {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .container-articles-filter {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .articles-filter-1 {
                background-color: rgba(235, 234, 227, 0.3);
                padding: 10px 20px;
                border-radius: 10px;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                color: #FFFFFF;
                transition: 0.3s;
                cursor: pointer;
                width: 100%;
                text-align: center;

                &:active {
                    transform: scale(95%);
                }
            }

            .filter-article--active {
                background-color: #E8C69B;
                color: #2D2D2D;
            }

            .articles-1 {
                display: flex;
                flex-direction: column;
                padding: 10px;
                border-radius: 10px;
                background-color: #EBEAE3;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                width: 100%;
                height: auto;
            }

            .articles-1 p {
                border: 2px solid #0E8493;
                padding: 10px;
                border-radius: 5px;
            }

        /* Блок 4 */
            .contacts[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
            }

            .container-contacts {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .container-contacts-messengers {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
            }

            .icon-vk {
                background-image: url(images/icon-vk.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 60px;
                height: 60px;
                transition: 0.5s;

                &:active {
                    transform: scale(95%);
                }
            }

            .icon-telegram {
                background-image: url(images/icon-telegram.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 60px;
                height: 60px;
                transition: 0.5s;

                &:active {
                    transform: scale(95%);
                }
            }

            .icon-whatsapp {
                background-image: url(images/icon-whatsapp.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
                width: 60px;
                height: 60px;
                transition: 0.5s;

                &:active {
                    transform: scale(95%);
                }
            }

            .contacts-form {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: auto;
                gap: 10px;
            }

            .contacts-form-field1 {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: auto;
                gap: 10px;
            }

            .contacts-form-field1 input {
                outline: none;
                border: none;
                background-color: #FFFFFF;
                padding: 0 20px;
                width: 100%;
                height: 40px;
                border-radius: 10px;
                color: #2D2D2D;
                font: 16px/150% OpenSans-Regular;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
            }

            .contacts-form-field1 textarea {
                outline: none;
                border: none;
                background-color: #FFFFFF;
                padding: 20px;
                width: 100%;
                border-radius: 10px;
                height: auto;
                color: #2D2D2D;
                font: 16px/150% OpenSans-Regular;
                box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
                resize: none;
            }
                        
        /* Подвал сайта */
            footer[hidden] {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 30px 0;
                background-color: #2D2D2D;
            }

            .container-footer {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 30px;
            }

            .container-footer-text {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
    }