 /* Базовые сбросы */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Barlow Condensed', sans-serif; color: #64615A; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* Верхняя панель (Top bar) */
        .top-bar {
            background-color: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 40px;
            position: relative;
            z-index: 10;
        }
        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
        }
        .top-bar-left { gap: 30px; }
        
        /* Градиент под телефоном и email */
        .top-bar-right {
            position: relative;
            gap: 25px;
            padding-left: 20px;
        }
        .top-bar-right::before {
            content: '';
            position: absolute;
            right: -40px; /* Уводим за край экрана, компенсируя padding top-bar */
            top: 50%;
            transform: translateY(-50%);
            width: 613px;
            height: 30px;
            opacity: 0.15;
            background: linear-gradient(90deg, #C4C4C4 77.9%, #FFF 100%), #C4C4C4;
            z-index: -1;
            pointer-events: none;
        }

        /* Переключатель языков */
        .lang-switch { display: flex; gap: 5px; }
        .lang-switch a { 
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 18px;
            font-weight: 500;
            color: #FFF;
        }
        .lang-pl { background: #64615A; }
        .lang-en { background: #d0d0d0; } /* Добавил светло-серый фон для EN, чтобы белый текст читался */

        .social-icons { display: flex; gap: 15px; }
        .social-icons a { 
            color: #64615A;
            font-family: "FontAwesome";
            font-size: 18px;
            font-weight: 400;
        }
        
        /* Тексты в top-bar */
        .top-bar-item { 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .top-bar-text {
            color: #64615A;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 18px;
            font-weight: 500;
            text-align: right;
        }
        .text-phone {
            letter-spacing: 2.34px;
            /* Компенсация letter-spacing для выравнивания */
            margin-right: -2.34px; 
        }

        /* Главная навигация */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 40px;
            background: #fff;
            position: relative;
            z-index: 10;
        }
        .nav-menu {
            display: flex;
            gap: 40px;
        }
        .nav-menu a {
            color: #64615A;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 1.1px;
            padding: 10px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
            transition: color 0.3s;
        }
        .nav-menu a:hover { color: #000; }
        
        /* Логотип */
        .logo-container {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .logo-mark {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            color: #b5a999;
            line-height: 1;
            margin-bottom: 5px;
        }
        .logo-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 20px;
            font-weight: 500;
            letter-spacing: 5px;
            color: #64615A;
        }
        .logo-subtext {
            font-size: 11px;
            letter-spacing: 3px;
            color: #888;
            text-transform: uppercase;
        }

        /* Hero секция */
        .hero {
            position: relative;
            width: 100%; /* В макете 1799px, делаем адаптивным */
            max-width: 1799px;
            margin: 0 auto;
            height: 742px; /* Фиксированная высота из макета */
            background: url('baner.png') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center; /* Центрируем заголовок по макету */
        }

        /* Блок WOLNE/ZAJĘTE */
        .availability-wrapper {
            position: absolute;
            top: 0;
            right: 8%; /* Позиция плашки */
            width: 252px;
            display: flex;
            flex-direction: column;
        }
        .availability-box {
            width: 252px;
            height: 149px;
            background: rgba(100, 97, 90, 0.75);
            backdrop-filter: blur(9.3px);
            -webkit-backdrop-filter: blur(9.3px); /* Для Safari */
            display: flex;
        }
        .stat-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        /* Разделительная линия */
        .stat-item.left::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            border-right: 1px dashed rgba(255,255,255,0.3);
        }
        .stat-label {
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 17px;
            font-weight: 500;
            letter-spacing: 0.85px;
            margin-bottom: -5px;
        }
        .label-green { color: #BAD9AF; margin-right: -0.85px; }
        .label-white { color: #FFF; margin-right: -0.85px; }
        
        .stat-number {
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 68px;
            font-weight: 500;
            letter-spacing: 17px;
            margin-right: -17px; /* Компенсация letter-spacing для центрирования */
            line-height: 1.2;
        }
        .number-green { color: #BAD9AF; }
        .number-grey { color: #CCC7BF; }
        
        .cta-btn {
            width: 252px;
            height: 45px;
            background: #64615A;
            color: #FFF;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 4px;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
        .cta-btn:hover { background: #4a4842; }

        /* Заголовок на баннере */
        .hero-title-container {
            text-align: center;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 150px; /* Сдвиг вниз, если нужно по макету */
        }
        .hero-subtitle {
            color: #FFF;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 29px;
            font-weight: 300;
            letter-spacing: 7.25px;
            margin-right: -7.25px;
            text-transform: uppercase;
        }
        .hero-title {
            color: #FFF;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 93px;
            font-weight: 300; /* В CSS нет 275, 300 - максимально близкий стандартный */
            letter-spacing: 23.25px;
            margin-right: -23.25px; /* Важно для правильного центрирования текста с letter-spacing */
            line-height: 1;
            margin-top: -10px;
        }

        /* Водяной знак слева внизу */
        .watermark {
            position: absolute;
            bottom: -30px;
            left: -20px;
            font-family: 'Playfair Display', serif;
            font-size: 380px;
            color: rgba(255, 255, 255, 0.2);
            line-height: 1;
            pointer-events: none;
            z-index: 1;
        }

        /* Адаптивность для мобильных */
        
        
        
        .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0px;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 1799px;
    margin: auto;
}
.top-bar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    position: relative;
    z-index: 10;
    max-width: 1799px;
    margin: auto;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0px;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 1799px;
    margin: auto;
    height: 148px;
}

.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.1px;
    padding: 14px 19px;
    border-top: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
    transition: color 0.3s;
    margin-top: 0vw;
}
.logo 
{
 width: 181px;
    height: 168px;
    aspect-ratio: 181 / 168;
    margin-top: -40px;   
}

.top-bar-left 
{
  opacity: 1;
    background: linear-gradient(90deg, #ededed 77.9%, #FFF 100%), #c4c4c4;
    width: 613px;
    height: 30px;  
}

.availability-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 252px;
    display: flex;
    flex-direction: column;
}
.stat-item.left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0px;
    height: 100%;
    border-right: 2px dashed rgba(255, 255, 255, 0.3);
}

.hero-title-container {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 27vw;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1799px;
    margin: 0 auto;
    height: 742px;
    background: url(baner.png) center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10vw;
}

.watermark {
    position: absolute;
    bottom: -30px;
    left: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 380px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    bottom: -93px;
}

/* Секция списка апартаментов */
    .apartments-section {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 1792px; /* 4 карточки по 448px */
        margin: 0 auto;
        background-color: #fff;
    }

    .apartment-card {
        position: relative;
        width: 448px;
        height: 742px;
        overflow: hidden;
        cursor: pointer;
    }

    /* Фоновое изображение карточки */
    .apartment-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Эффект зума картинки при наведении */
    .apartment-card:hover .apartment-bg {
        transform: scale(1.05);
    }

    /* Нижний блок с подписью (всегда поверх) */
    .apartment-bottom-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 448px;
        height: 113px;
        /* Используем такой же цвет и блюр, как у плашки на банере */
        background: rgba(100, 97, 90, 0.75);
        backdrop-filter: blur(9.3px);
        -webkit-backdrop-filter: blur(9.3px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 3; /* Держим поверх всего */
    }

    .apartment-subtitle {
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 5.5px;
        margin-right: -5.5px; /* Компенсация letter-spacing для ровного центра */
    }

    .apartment-title {
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 29px;
        font-weight: 600;
        letter-spacing: 7.25px;
        margin-right: -7.25px;
        margin-top: 2px;
    }

    /* Белый блок, который появляется по ховеру */
    .apartment-hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.95); /* Полупрозрачный белый, как на макете */
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 2; /* Находится под нижним блоком, но над картинкой */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 130px; /* Оставляем место для нижнего блока */
    }

    .apartment-card:hover .apartment-hover-overlay {
        opacity: 1;
    }

    .hover-logo {
        width: 58px;
        height: 73px;
        margin-bottom: 25px;
    }

    .hover-desc {
        color: #64615A;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 23px;
        font-weight: 400;
        max-width: 320px;
        line-height: 1.2;
    }

    /* Декоративная стрелочка (имитация того, что на макете) */
    .hover-arrow {
        color: #A7A197;
        font-size: 14px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .hover-wolne {
        color: #64615A;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 0.85px;
        text-transform: uppercase;
        margin-bottom: -15px; /* Приближаем к цифре */
    }

    .hover-number {
        color: #64615A;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 98px;
        font-weight: 500;
        letter-spacing: 24.5px;
        margin-right: -24.5px;
        line-height: 1;
    }

    .hover-btn {
        display: flex;
        width: 139px;
        height: 45px;
        justify-content: center;
        align-items: center;
        background: #A7A197;
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 4px;
        margin-right: -4px; /* Компенсация пробела внутри кнопки */
        border: none;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: auto; /* Прижимает кнопку вниз (к началу padding-bottom) */
    }

    .hover-btn:hover {
        background: #8e887e;
    }

    /* Адаптивность для карточек */
    
    

    .hero {
    margin-bottom: 0.1vw;
}

.apartment-card {
    position: relative;
    width: 450px;
    height: 742px;
    overflow: hidden;
    cursor: pointer;
}
.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1799px;
    margin: 0 auto;
    background-color: #fff;
}
.apartment-bg {
    width: 99.5%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.apartment-bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 447px;
}

.apartment-subtitle {
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 5.5px;
    margin-right: 2.5px;
    width: 78%;
}

.apartment-title {
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: 7.25px;
    margin-right: -7.25px;
    margin-top: 2px;
    width: 100%;
    text-align: right;
    margin-right: 5.2vw;
}

.hover-number {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 98px;
    font-weight: 500;
    letter-spacing: 24.5px;
    margin-right: -24.5px;
    line-height: 1;
    margin-top: 2vw;
}

/* Базовые стили секции */
    .about-section {
        position: relative;
        width: 100%;
        max-width: 1792px;
        margin: 0 auto;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        overflow: hidden; /* Скрываем края водяного знака */
    }

    /* Фоновое изображение правой части */
    .about-bg-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 55%; /* Занимает правую часть */
        height: 100%;
        z-index: 1;
    }

    .about-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Имитация интерьера из макета */
        background: url('about.png') center/cover no-repeat;
    }

    /* Градиент для плавного растворения картинки слева */
    .about-bg-fade {
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    }

    /* Водяной знак RB */
    .about-watermark {
        position: absolute;
        top: 10%;
        left: 45%;
        transform: translateX(-50%);
        font-family: 'Playfair Display', serif;
        font-size: 650px;
        line-height: 0.8;
        color: #EBEAE8; /* Очень светлый бежево-серый */
        z-index: 2;
        pointer-events: none;
    }

    /* Контейнеры контента */
    .about-content-wrapper {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 5%; /* Боковые отступы */
    }

    /* Верняя часть: Текст и Кнопки */
    .about-top-row {
        display: flex;
        width: 100%;
        margin-bottom: 80px;
    }

    .about-text-col {
        width: 45%; /* Ширина левой текстовой колонки */
        padding-right: 40px;
    }

    .about-subtitle {
        color: #A7A197;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 6px;
        text-transform: uppercase;
    }

    .about-title {
        color: #64615A;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 64px;
        font-weight: 300;
        letter-spacing: 16px;
        line-height: 1;
        margin-bottom: 30px;
        margin-top: 5px;
    }

    .about-description {
        color: #666;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 40px;
    }

    .about-description strong {
        font-weight: 500;
        color: #444;
    }

    /* Кнопки */
    .about-buttons {
        display: flex;
        gap: 20px;
    }

    .btn-light, .btn-dark {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 45px;
        padding: 0 35px;
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 4px;
        border: none;
        cursor: pointer;
        transition: opacity 0.3s;
    }
    .btn-light { background: #A7A197; }
    .btn-dark { background: #64615A; }
    .btn-light:hover, .btn-dark:hover { opacity: 0.8; }

    /* Нижняя часть (Статистика и Преимущества) */
    .about-bottom-row {
        display: flex;
        width: 100%;
        margin-bottom: 50px;
    }

    /* Левый блок (Статистика + Аренда) */
    .bottom-left-panel {
        display: flex;
        width: 45%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02); /* Легкая тень для выделения */
    }

    /* Вертикальные цифры */
    .stats-vertical {
        width: 90px;
        display: flex;
        flex-direction: column;
    }
    .stat-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px 0;
    }
    .stat-box.dark { background: #64615A; }
    .stat-box.light { background: #A7A197; }
    
    .s-label {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: -5px;
    }
    .dark .s-label { color: #A7A197; }
    .light .s-label { color: #E0E0E0; }
    
    .s-number {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 42px;
        font-weight: 500;
        line-height: 1;
    }
    .dark .s-number { color: #BAD9AF; } /* Зеленый */
    .light .s-number { color: #FFF; }

    /* Текст "Wynajmij" */
    .rent-info {
        flex: 1;
        background: rgba(250, 250, 248, 0.95);
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .rent-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .rent-titles { display: flex; flex-direction: column; }
    .rent-sub {
        color: #A7A197;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 15px;
        letter-spacing: 2px;
    }
    .rent-main {
        color: #64615A;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 4px;
        margin-top: -2px;
    }

    .rent-link {
        color: #888;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s;
    }
    .rent-link:hover { color: #333; }
    .rent-desc {
        color: #777;
        font-family: 'Roboto', sans-serif;
        font-size: 13px;
        line-height: 1.6;
    }

    /* Правый блок (4 иконки с градиентной прозрачностью) */
    .bottom-features {
        display: flex;
        width: 55%;
    }

    .feature-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 15px;
        text-align: center;
        /* Создаем эффект ступенчатого затемнения как на макете */
    }
    .feature-box:nth-child(1) { background: rgba(245, 245, 242, 0.95); }
    .feature-box:nth-child(2) { background: rgba(245, 245, 242, 0.80); }
    .feature-box:nth-child(3) { background: rgba(245, 245, 242, 0.65); }
    .feature-box:nth-child(4) { background: rgba(245, 245, 242, 0.50); }

    .feature-icon {
        height: 50px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-bottom: 15px;
        color: #64615A;
    }
    .feature-icon svg { width: 45px; height: 45px; fill: none; stroke: #64615A; stroke-width: 1.5; }
    
    /* Для цифры 12 */
    .feature-number {
        font-family: 'Playfair Display', serif;
        font-size: 56px;
        color: #64615A;
        line-height: 0.8;
    }

    .feature-text {
        color: #555;
        font-family: 'Roboto', sans-serif;
        font-size: 13px;
        line-height: 1.4;
    }

    /* Адаптивность */
    
    

    .about-subtitle {
    color: #A7A197;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #B8B1A4;
    font-family: "Barlow Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.5px;
}

.about-title {
    color: #64615A;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 16px;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: 5px;
    color: #64615A;
    font-family: "Barlow Condensed";
    font-size: 49px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 12.25px;
}

.about-description {
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}

.btn-light, .btn-dark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    padding: 0 35px;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    width: 199px;
    height: 45px;
    padding: 14px 32px 13px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
}

.about-section {
    position: relative;
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    overflow: hidden;
    height: 742px;
}

.about-top-row {
    display: flex;
    width: 100%;
    margin-bottom: 41px;
    margin-top: -5.3vw;
}

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    text-align: center;
    width: 225px;
    height: 225px;
}

.about-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0% 0 3.5%;
}

.about-bottom-row {
    display: flex;
    width: 100%;
    margin-bottom: 0;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 63px;
    margin-bottom: 12px;
}

.about-description {
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    width: 33vw;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 63px;
    margin-bottom: 18px;
}

.about-bottom-row {
    display: flex;
    width: 100.1%;
    margin-bottom: 0;
    margin-top: 15px;
}

.about-bg-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #ffffff00;
}

.about-bg-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.bottom-left-panel {
    display: flex;
    width: 43.4vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bottom-features {
    display: flex;
    width: 46.7vw;
}

.about-section {
    position: relative;
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    overflow: hidden;
    height: 742px;
    margin-top: 2.4vw;
}

.about-subtitle {
    color: #A7A197;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #B8B1A4;
    font-family: "Barlow Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.5px;
    margin-top: 0.6vw;
}

/* =========================================
       СЕКЦИЯ КАРТЫ
       ========================================= */
    .map-section {
        position: relative;
        width: 100%;
        max-width: 1792px;
        margin: 0 auto;
        height: 450px;
        /* Плейсхолдер для карты. Можно заменить на iframe Google Maps */
        background: url('mapka.jpg') center/cover no-repeat;
        /* Делаем карту серой (как на макете) */
        filter: grayscale(100%) contrast(1.1) brightness(1.2);
    }

    /* Кастомный маркер по центру */
    .map-marker {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 65px;
        height: 65px;
        background-color: rgba(70, 70, 70, 0.95);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 2;
        cursor: pointer;
        /* Убираем черно-белый фильтр с маркера, чтобы он был четким */
        filter: none; 
    }
    /* Маленький треугольник под маркером */
    .map-marker::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 8px 6px 0 6px;
        border-style: solid;
        border-color: rgba(70, 70, 70, 0.95) transparent transparent transparent;
    }
    
    .marker-logo {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        color: #fff;
        line-height: 1;
        margin-top: -2px;
    }

    /* Кнопка "Вызначить трасу" */
    .route-btn {
        position: absolute;
        bottom: 40px;
        right: 8%;
        background: rgba(100, 97, 90, 0.95);
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 4px;
        padding: 15px 35px;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
        z-index: 2;
    }
    .route-btn:hover { background: #4a4842; }


    /* =========================================
       ФУТЕР (ПОДВАЛ)
       ========================================= */
    .main-footer {
        position: relative;
        width: 100%;
        max-width: 1792px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        /* Убираем фильтр, чтобы футер не стал черно-белым из-за наследования */
        filter: none;
    }

    /* Основной блок контактов */
    .footer-contacts {
        position: relative;
        width: 100%;
        padding: 45px 0;
        /* Фоновое фото (кухня) */
        background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Темный оверлей поверх фото */
    .footer-contacts::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(100, 97, 90, 0.90);
        z-index: 1;
    }

    .fc-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
    }

    /* Колонки */
    .fc-col {
        flex: 1;
        display: flex;
    }
    
    .fc-left {
        justify-content: flex-end;
        text-align: right;
        padding-right: 50px;
        border-right: 1px solid rgba(255,255,255,0.2);
        gap: 15px;
    }
    
    .fc-center {
        flex: 0.5;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .fc-right {
        justify-content: flex-start;
        text-align: left;
        padding-left: 50px;
        gap: 15px;
    }

    /* Тексты в футере */
    .fc-label {
        color: #d0caca;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    .fc-main {
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: 1px;
    }
    .fc-sub {
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 18px;
        font-weight: 400;
        margin-top: 2px;
    }

    /* Иконки в футере */
    .fc-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }
    .fc-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: #d0caca;
        stroke-width: 1.5;
    }

    /* Логотип в центре */
    .footer-logo-mark {
        font-family: 'Playfair Display', serif;
        font-size: 46px;
        color: #fff;
        line-height: 1;
        margin-bottom: 5px;
    }
    .footer-logo-text {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 5px;
        color: #fff;
    }
    .footer-logo-subtext {
        font-size: 9px;
        letter-spacing: 3px;
        color: #d0caca;
        text-transform: uppercase;
    }

    /* =========================================
       САМЫЙ НИЗ (КОПИРАЙТ И КНОПКИ)
       ========================================= */
    .footer-bottom {
        position: relative;
        background: #fff;
        padding: 15px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Roboto', sans-serif;
        font-size: 12px;
        color: #888;
    }

    .fb-left a {
        color: #888;
        text-decoration: none;
        transition: color 0.3s;
    }
    .fb-left a:hover { color: #333; }

    .fb-center {
        text-align: center;
    }
    .fb-center a {
        color: #64615A;
        font-weight: 500;
        text-decoration: none;
    }

    /* Темная плашка 1/8 */
    .slider-pill {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%); /* Идеально центрируем на границе */
        background: #2a2a2a;
        color: #FFF;
        border-radius: 20px;
        display: flex;
        align-items: center;
        padding: 6px 18px;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 14px;
        gap: 15px;
        z-index: 10;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .slider-arrow {
        color: #888;
        cursor: pointer;
        font-size: 12px;
        transition: color 0.3s;
    }
    .slider-arrow:hover { color: #fff; }

    /* Кнопка Restart */
    .restart-btn {
        background: #2a2a2a;
        color: #FFF;
        border-radius: 20px;
        padding: 6px 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Roboto', sans-serif;
        font-size: 11px;
        cursor: pointer;
        transition: background 0.3s;
        border: none;
    }
    .restart-btn:hover { background: #000; }
    .restart-btn svg {
        width: 12px;
        height: 12px;
        fill: #fff;
    }

    /* Адаптивность футера */
    

    .map-section {
    position: relative;
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    height: 450px;
    background: url(mapka.jpg) center / cover no-repeat;
    filter: none;
    width: 1799px;
    height: 501px;
    margin-top: 2.3vw;
}

.top-bar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    position: relative;
    z-index: 10;
    max-width: 1786px;
    margin: auto;
    margin: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 1vw;
    margin-right: 1vw;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-right: 0.8vw;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 0.8vw;
}
.logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0vw;
    margin-top: -0.2vw;
}

.nav-menu {
    display: flex;
    gap: 39px;
    margin-left: 0.3vw;
}

.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.1px;
    padding: 14px 19px;
    border-top: 1px solid #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
    transition: color 0.3s;
    margin-top: -0.6vw;
    width: 8.6vw;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1787px;
    margin: 0 auto;
    height: 742px;
    background: url(baner.png) center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 10vw;
    margin-top: -12px;
    z-index: 99;
}

.nav-menu-right 
{
    margin-right:0.3vw;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1787px;
    margin: 0 auto;
    height: 738px;
    background: url(baner.png) center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0.1vw;
    margin-top: -12px;
    z-index: 99;
}

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1789px;
    margin: 0 auto;
    background-color: #fff;
}

.hero-title-container {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28vw;
}

.watermark {
    position: absolute;
    bottom: -30px;
    left: -12px;
    font-family: 'Playfair Display', serif;
    font-size: 380px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    bottom: -96px;
}

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1788px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 0vw;
}

.apartment-card {
    position: relative;
    width: 450px;
    height: 735px;
    overflow: hidden;
    cursor: pointer;
}

.apartment-subtitle {
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 5.5px;
    margin-right: -2.5px;
    width: 78%;
    margin-top: 11px;
}

.apartment-title {
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: 7.25px;
    margin-right: -7.25px;
    margin-top: -3px;
    width: 100%;
    text-align: right;
    margin-right: 4.5vw;
}

.about-section {
    position: relative;
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    overflow: hidden;
    height: 742px;
    margin-top: 2.4vw;
}

.about-title {
    margin-top: -5px;
    color: #64615A;
    font-family: "Barlow Condensed";
    font-size: 49px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 11.25px;
    margin-bottom: 2vw;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 18px;
}

.about-buttons {
    display: flex;
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 18px;
}

.stats-vertical {
    width: 103px;
    display: flex;
    flex-direction: column;
    margin-top: -6px;
}

.rent-sub {
    color: #A7A197;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
}

.rent-main {
    color: #64615A;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: 0px;
    margin-left: 0px;
    letter-spacing: 8.9px;
}

.rent-link {
    color: #888;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    font-weight: 600;
    margin-right: 3.3vw;
    letter-spacing: 0.3px;
    gap: 35px;
    height: 32px;
}

.stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 19px 0;
    align-content: center;
}

.s-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: -2px;
}

.s-number {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1;
    margin-top: 7px;
}

.s-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: -2px;
}

.rent-info {
    flex: 1;
    background: rgba(250, 250, 248, 0.95);
    padding: 21px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0px;
    margin-top: 3.1vw;
}

.rent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-top: -2vw;
    margin-left: 2.7vw;
}

.rent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
    border-bottom: 0px solid #ddd;
    padding-bottom: 0px;
    margin-top: -2vw;
    margin-left: 2.7vw;
}

.rent-desc {
    color: #777;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 2.8vw;
    margin-top: 1vw;
    width: 84%;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}

.rent-info {
    flex: 1;
    background: rgba(250, 250, 248, 0.95);
    padding: 21px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4vw;
    margin-top: 0vw;
}
.about-bg-image {
    width: 100%;
    height: 99.65%;
    object-fit: cover;
    background: url(about.png) center / cover no-repeat;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #64615A;
    line-height: 0.8;
    color: #64615A;
    text-align: center;
    font-family: Tobias;
    font-size: 83px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 4.15px;
}
.feature-text {
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #2F2C27;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 14px;
    text-align: center;
    width: 225px;
    height: 225px;
    align-content: center;
    padding-top: 4vw;
}

.feature-icon svg {
    width: 100px;
    height: 77px;
    fill: none;
    stroke: #64615A;
    stroke-width: 1.5;
}

.rent-info {
    flex: 1;
    background: rgba(250, 250, 248, 0.95);
    padding: 21px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 3vw;
    margin-top: 0vw;
}

.stats-vertical {
    width: 103px;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
}

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 14px;
    text-align: center;
    width: 225px;
    height: 230px;
    align-content: center;
    padding-top: 4vw;
}

.feature-icon svg {
    width: 100px;
    height: 77px;
    fill: none;
    stroke: #64615A;
    stroke-width: 0px;
    opacity: 0.9;
}

.fc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    gap: 18vw;
    margin: auto;
    align-content: center;
    margin-left: -1.9vw;
}

.fc-label {
    color: #d0caca;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.fc-main {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fc-sub {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 2px;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.route-btn {
    position: absolute;
    bottom: 45px;
    right: 3.6%;
    background: rgba(100, 97, 90, 0.95);
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 13px 29px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

.fc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    gap: 17.15vw;
    margin: auto;
    align-content: center;
    margin-left: -1.9vw;
}
.fc-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #d0caca;
    stroke-width: 1.5;
}

.footer-contacts {
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.fc-left {
    justify-content: flex-end;
    text-align: right;
    padding-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    gap: 0;
    width: 100%;
}
.fc-right {
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
    gap: 0;
    width: 100%;
}


.fc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    margin: auto;
    align-content: center;
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
}

.fc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    margin: auto;
    align-content: center;
    margin-left: 0;
    display: grid;
    grid-template-columns: 25.6vw 1fr 25.6vw;
}




.left_foot .fc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    margin-right: 26px;
}

.left_foot .fc-label {
    color: #d0caca;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: -9px;
}

.adrs_ss1 
{
     margin-right: 1.5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    align-content: center;
    gap: 1px;   
}
.fc-right {
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
    gap: 0;
    width: 100%;
    border-left: 1px solid #ffffff26;
    text-align: left;
}

.right_foot .fc-icon
{
    margin-left: 1.4vw;
}

.right_foot .fc-label {
    color: #d0caca;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    margin-left: 1.5vw;
}

.right_foot .fc-main {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #FFF;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 1.5vw;
}

.right_foot .fc-sub {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-top: 2px;
    color: #FFF;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 1.5vw;
}

.footer-bottom {
    position: relative;
    background: #fff;
    padding: 14px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #888;
    color: #767676;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: grid;
    grid-template-columns: 33vw 1fr;
}

.fb-left 
{
    margin-top: -0.5vw;    
}

.fb-center {
    text-align: center;
    text-align: left;
    padding-left: 3vw;
    margin-top: -0.3vw;
}

.fb-left {
    margin-top: -0.3vw;
}

.top-bar-right::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 613px;
    height: 30px;
    opacity: 0.15;
    background: linear-gradient(270deg, #C4C4C4 77.9%, #FFF 100%), #C4C4C4;
    z-index: -1;
    pointer-events: none;
}


.about-title {
    margin-left: -0.1vw;
}

.about-subtitle {
    margin-left: 0.07vw;
}

.hover-logo {
    width: 58px;
    height: 73px;
    margin-bottom: 25px;
    width: 58px;
    height: 73px;
}

.siat 
{
   margin-top: 4vw;
    margin-bottom: 1.8vw; 
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    aspect-ratio: 1 / 1;
    width: 224px;
    height: 225px;
}



/* Изолированные стили секции */
.rezydencja-section {
    font-family: "Barlow Condensed", sans-serif;
    background-color: #fff;
    display: flex;
    align-items: stretch;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.rezydencja-section *,
.rezydencja-section *::before,
.rezydencja-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Блок с изображением */
.rezydencja-section .image-block {
    width: 899px;
    height: 742px;
    flex-shrink: 0;
}

.rezydencja-section .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Блок с контентом */
.rezydencja-section .content-block {
    flex-grow: 1;
    padding: 40px 0 40px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}



.rezydencja-section .content-block>* {
    position: relative;
    z-index: 1;
}

/* Стили заголовков */
.rezydencja-section .subtitle {
    color: #B8B1A4;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.rezydencja-section .title {
    color: #64615A;
    font-size: 49px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 12.25px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

/* Стили текстового блока */
.rezydencja-section .text-container {
    color: #676767;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    max-width: 580px;
    margin-bottom: 45px;
}

.rezydencja-section .text-container p {
    margin-bottom: 24px;
}

.rezydencja-section .text-container p:last-child {
    margin-bottom: 0;
}

.rezydencja-section .text-container strong {
    font-weight: 600;
    color: #555555;
}

/* Стили кнопки */
.rezydencja-section .btn-apartamenty {
    display: flex;
    width: 199px;
    height: 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #64615A;
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rezydencja-section .btn-apartamenty:hover {
    background: #4e4b46;
}

/* Адаптивность для экранов меньше 1400px */


.rezydencja-section .text-container {
    color: #676767;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    max-width: 38vw;
    margin-bottom: 45px;
    text-align: justify;
}

.symbolis {
    position: absolute;
    right: -1vw;
    margin-top: -7vw;
    z-index: -1;
}

.rezydencja-section {
    font-family: "Barlow Condensed", sans-serif;
    background-color: #fff;
    display: flex;
    align-items: stretch;
    max-width: 1775px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.lang-switch {
    display: flex;
    gap: 0px;
}

.lang-switch a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    padding-bottom: 5px;
}

.rezydencja-section .content-block {
    flex-grow: 1;
    padding: 40px 0 40px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.rezydencja-section {
    font-family: "Barlow Condensed", sans-serif;
    background-color: #fff;
    display: flex;
    align-items: stretch;
    max-width: 1789px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Изолированные стили для секции */
.rezydencja-features-banner {
    display: flex;
    align-items: stretch;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.rezydencja-features-banner *,
.rezydencja-features-banner *::before,
.rezydencja-features-banner *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Колонки */
.rf-col-img-left {
    flex: 1;
    /* Занимает 1 часть (25%) */
    display: flex;
}

.rf-col-grid {
    flex: 1;
    /* Занимает 1 часть (25%) */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.rf-col-img-right {
    flex: 2;
    /* Занимает 2 части (50%) */
    display: flex;
}

/* Изображения */
.rezydencja-features-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Элементы сетки (иконки и текст) */
.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    aspect-ratio: 1 / 1;
    /* Делает ячейки квадратными, что задает высоту всей секции */
}

/* Цвета фона ячеек для эффекта шахматной доски / легкого контраста */
.rf-bg-white {
    background-color: #ffffff;
}

.rf-bg-light {
    background-color: #f7f6f4;
}

.rf-bg-darker {
    background-color: #f1efec;
}

/* Оформление числа */
.rf-number {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 400;
    color: #5d5b55;
    line-height: 1;
    margin-bottom: 15px;
}

/* Оформление иконок */
.rf-icon {
    height: 48px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-icon svg {
    width: 45px;
    height: 45px;
    stroke: #5d5b55;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Оформление текста */
.rf-text {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.2;
    font-weight: 400;
}

/* Адаптивность */




.rezydencja-features-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 450px;
    height: 450px;
}

.rezydencja-features-banner {
    display: flex;
    align-items: stretch;
    max-width: 1791px;
    width: 100%;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    aspect-ratio: 1 / 1;
    width: 224px;
    height: 225px;
}

.rf-col-img-right img {
    width: 901px;
    height: 450px;
}

/* Изолированные стили секции галереи */
.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    /* Тонкая белая линия между фотографиями */
    width: 100%;
    max-width: 1600px;
    /* Ограничитель ширины, можно убрать для full-width */
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
}

.rezydencja-gallery-section *,
.rezydencja-gallery-section *::before,
.rezydencja-gallery-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Контейнер для каждого фото */
.rezydencja-gallery-section .rg-item {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Делает все ячейки строго квадратными */
    overflow: hidden;
    position: relative;
}

/* Стили самого изображения */
.rezydencja-gallery-section .rg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Заполняет квадрат без сплющивания */
    display: block;
    transition: transform 0.4s ease;
}

/* Эффект легкого зума при наведении */
.rezydencja-gallery-section .rg-item:hover img {
    transform: scale(1.05);
}

/* Адаптивность */








.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    width: 100%;
    max-width: 1791px;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.map-marker::after {
    content: '';
    position: absolute;
    bottom: -7px;
    display:none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background-color: #64615A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    cursor: pointer;
    filter: none;
}

/* Контейнер секции */
.bryn-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    background-color: #FFFFFF;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

/* Левая колонка с текстом */
.bryn-text-col {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.bryn-text {
    color: #676767;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin-top: 0;
    margin-bottom: 30px;
}

.bryn-text strong {
    font-weight: 700;
    color: #676767;
}

.bryn-btn-wrap {
    text-align: right;
    margin-top: 20px;
}

.bryn-btn {
    display: inline-block;
    background-color: #64615A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.bryn-btn:hover {
    background-color: #4a4843;
}

/* Центральная колонка с иконками */
.bryn-features-col {
    display: flex;
    flex-direction: column;
    width: 224px;
    flex-shrink: 0;
}

.bryn-feature {
    width: 224px;
    height: 225px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
}

/* Реализация фона и прозрачности (opacity: 0.59) как было в задаче */
.bryn-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FAFAFA;
    opacity: 0.59;
    z-index: 0;
}

/* Визуальное разделение оттенков блоков как на макете */
.bryn-feature:nth-child(1) {
    background-color: #FFFFFF;
}

.bryn-feature:nth-child(2) {
    background-color: #F4F4F4;
}

.bryn-feature:nth-child(3) {
    background-color: #EAEAEA;
}

.bryn-feature-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bryn-icon {
    width: 71px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.bryn-icon svg {
    max-width: 100%;
    max-height: 100%;
}

.bryn-title {
    color: #2F2C27;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Правая колонка с изображением */
.bryn-image-col {
    width: 899px;
    height: 675px;
    flex-shrink: 0;
    position: relative;
}

.bryn-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Базовая адаптивность (опционально) */




.bryn-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1790px;
    margin: 0 auto;
    background-color: #FFFFFF;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

.rezydencja-section .image-block {
    width: 891px;
    height: 742px;
    flex-shrink: 0;
}

.bryn-text {
    color: #676767;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: justify;
}

.qas1 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 225px;
    height: 225px;
}

.bryn-feature {
    width: 232px;
    height: 225px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
}

.bryn-features-col {
    display: flex;
    flex-direction: column;
    width: 232px;
    flex-shrink: 0;
}

  /* Контейнер секции */
  .bry-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    background-color: #FFFFFF;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
  }

  /* Левая колонка с изображением */
  .bry-image-col {
    width: 899px;
    height: 600px;
    flex-shrink: 0;
  }

  .bry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Правая колонка с контентом */
  .bry-content-col {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Заголовки */
  .bry-header {
    margin-bottom: 50px;
  }

  .bry-subtitle {
    color: #B8B1A4;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.5px;
    text-transform: uppercase;
  }

  .bry-title {
    color: #64615A;
    font-size: 49px;
    font-style: normal;
    font-weight: 300; /* В вебе 275 обычно рендерится как 300 */
    line-height: normal;
    letter-spacing: 12.25px;
    text-transform: uppercase;
    margin: 0;
  }

  /* Обертка для контактов и формы */
  .bry-details-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }

  /* Левая часть: Контакты */
  .bry-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 30px;
  }

  /* Декоративная линия слева от контактов, как на макете */
  .bry-info-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #EAEAEA;
  }

  .bry-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .bry-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .bry-info-text {
    display: flex;
    flex-direction: column;
  }

  .bry-info-label {
    color: #676767;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    margin: 0;
  }

  .bry-info-value {
    color: #676767;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin: 0;
  }

  .bry-socials {
    display: flex;
    gap: 15px;
    padding-left: 48px; /* Выравнивание по тексту */
    margin-top: -10px;
  }

  .bry-socials a {
    color: #64615A;
    font-family: "FontAwesome", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .bry-socials a:hover {
    opacity: 0.7;
  }

  /* Правая часть: Форма */
  .bry-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .bry-form-title {
    color: #676767;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    margin: 0 0 25px 0;
  }

  .bry-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 5px;
  }

  .bry-form-label {
    color: #767676;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    margin-bottom: 5px;
  }

  .bry-form-input {
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 0;
  }

  .bry-checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .bry-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    margin-top: 2px;
  }

  .bry-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 16px;
    color: #64615A;
  }

  .bry-checkbox-text {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    margin: 0;
  }

  .bry-checkbox-text a {
    color: #000;
    text-decoration: underline;
  }

  .bry-submit-btn {
    display: flex;
    width: 233px;
    padding: 9.5px 81.5px 12.5px 80.5px;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 4.75px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    align-self: flex-end; /* Выравнивание по правому краю формы */
    transition: background-color 0.3s ease;
  }

  .bry-submit-btn:hover {
    background: #8e887d;
  }

  /* Адаптивность (базовая) */
  
  

.bry-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1790px;
    margin: 0 auto;
    background-color: #FFFFFF;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

.symbolis1 {
    position: absolute;
    right: 9vw;
    margin-top: -7vw;
    z-index: 0;
}

.bry-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -7.2vw;
}


.bry-content-col {
    flex: 1;
    padding: 60px 0px 2vw 6.4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.bry-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -7.2vw;
    position: relative;
    z-index: 9;
}

.bry-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -7.2vw;
    position: relative;
    z-index: 9;
    margin-left: 1.4vw;
}

.bry-submit-btn {
    display: flex;
    width: 233px;
    padding: 9.5px 81.5px 12.5px 80.5px;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 4.75px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    align-self: flex-end;
    transition: background-color 0.3s ease;
    align-content: center;
    margin: auto;
    margin-top: 1vw;
}

.bry-info-col::before {
    content: "";
    position: absolute;
    left: 5px;
    top: -24px;
    bottom: 10px;
    width: 1px;
    background-color: #EAEAEA;
    height: 14vw;
}

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1791px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 0vw;
    margin-bottom: 2vw;
}

        /* Головний контейнер для двох блоків */
        .apartments-container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
            gap: 20px; /* Зазор між двома апартаментами */
            width: 100%;
            font-family: "Barlow Condensed", sans-serif;
            background-color: transparent; /* Щоб не перекривати фон сторінки */
        }

        /* ЦЕЛИЙ БЛОК (для одного апартаменту) */
        .apartments-container .apt-card {
            width: 898px;
            height: 540px;
            background: #FFF;
            box-sizing: border-box;
            overflow: hidden;
            position: relative;
        }

        /* Обертка для зображення та абсолютних плашок */
        .apartments-container .apt-image-wrapper {
            width: 898px;
            height: 412px;
            position: relative;
            overflow: hidden;
        }

        /* ЗОБРАЖЕННЯ */
        .apartments-container .apt-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* БЛОК СТАТУС (WOLNY) */
        .apartments-container .status-overlay {
            width: 163px;
            height: 96px;
            background: rgba(100, 97, 90, 0.75);
            backdrop-filter: blur(7.86px);
            /* Розміщення у правому верхньому куті */
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .apartments-container .status-label {
            color: #FFF;
            text-align: center;
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.75px;
            margin-bottom: 5px;
        }

        .apartments-container .status-value {
            color: #BAD9AF;
            text-align: center;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 6px;
        }

        /* БЛОК АПАРТАМЕНТ № */
        .apartments-container .info-overlay {
            width: 350px;
            height: 83px;
            opacity: 0.9;
            background: #A1998D;
            backdrop-filter: blur(2px);
            /* Розміщення у нижньому правому куті зображення */
            position: absolute;
            bottom: 0;
            right: 0;
            display: flex;
            justify-content: flex-end; /* Вирівнювання тексту по правому краю */
            align-items: center;
            padding-right: 20px; /* Відступ від правого краю блоку */
            box-sizing: border-box;
        }

        .apartments-container .apartament-label {
            color: #FFF;
            text-align: right;
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: 7.5px;
            margin-right: 15px; /* Відступ перед цифрою */
        }

        .apartments-container .apartament-number {
            color: #FFF;
            text-align: right;
            font-size: 30px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            letter-spacing: 7.5px;
        }

        /* НИЖНЯ ТЕКСТОВА ЧАСТЬ */
        .apartments-container .apt-details {
            width: 100%;
            height: 128px; /* Залишок висоти (540 - 412) */
            display: flex;
            justify-content: space-between; /* Опис зліва, посилання справа */
            align-items: flex-start; /* Вирівнювання по верхньому краю */
            padding: 20px 30px;
            box-sizing: border-box;
        }

        /* Блок опису */
        .apartments-container .apt-description {
            max-width: 650px;
            display: flex;
            flex-direction: column;
            gap: 5px; /* Відступ між рядками тексту */
        }

        .apartments-container .apt-description p {
            margin: 0;
        }

        /* Перший рядок (заголовок) */
        .apartments-container .desc-title {
            color: #676767;
            font-size: 20px;
            font-style: normal;
            font-weight: 600; /* Жирний, як на макеті */
            line-height: 27px;
        }

        /* Звичайний текст усередині заголовка */
        .apartments-container .weight-400 {
            font-weight: 400;
        }

        /* Другий рядок (опис) */
        .apartments-container .desc-text {
            color: #676767;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 27px;
        }

        /* ПОСИЛАННЯ ZOBACZ */
        .apartments-container .zobacz-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            margin-top: 5px;
            gap: 10px; /* Зазор між текстом та стрілкою */
        }

        .apartments-container .zobacz-link span {
            color: #676767;
            text-align: justify;
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: 31px;
        }

        /* СТРІЛКА (SVG) */
        .apartments-container .arrow-svg {
            width: 21.788px;
            height: 10.039px;
            display: block;
        }

        .apartments-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    font-family: "Barlow Condensed", sans-serif;
    background-color: transparent;
}

.apartments-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    font-family: "Barlow Condensed", sans-serif;
    background-color: transparent;
    flex-wrap: wrap;
    row-gap: 38px;
    margin-bottom: 42px;
}

.apartments-container .apt-details {
    width: 100%;
    height: 128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 17px;
    box-sizing: border-box;
    padding-left: 63px;
}

/* Головний контейнер секції */
.apt-hero-section {
    width: 100%;
    max-width: 1799px;
    height: 460px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

/* Фонове зображення */
.apt-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Панель у правому верхньому куті (Статус + Кнопка) */
.apt-hero-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 252px;
}

/* Блок STATUS */
.apt-hero-status {
    width: 252px;
    height: 113px;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(9.3px);
    -webkit-backdrop-filter: blur(9.3px);
    /* Для підтримки Safari */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.apt-hero-status-label {
    color: #FFF;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.85px;
    margin-bottom: 5px;
}

.apt-hero-status-value {
    color: #BAD9AF;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 8.75px;
}

/* Кнопка UMÓW SPOTKANIE */
.apt-hero-btn {
    width: 252px;
    height: 45px;
    background: #64615A;
    display: flex;
    justify-content: center;
    /* Центрування по горизонталі */
    align-items: center;
    /* Центрування по вертикалі */
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.apt-hero-btn:hover {
    background: #4a4843;
}

/* Блок із назвою внизу по центру */
.apt-hero-title-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 534px;
    height: 125px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    /* Зміщення тексту трохи вниз через градієнт */
    box-sizing: border-box;
}

.apt-hero-subtitle {
    color: #B8B1A4;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.5px;
    margin-bottom: 5px;
}

.apt-hero-title {
    color: #64615A;
    text-align: center;
    font-size: 49px;
    font-style: normal;
    /* У веб-шрифтах найближче до 275 - це 300 (Light) */
    font-weight: 300;
    line-height: normal;
    letter-spacing: 12.25px;
    margin: 0;
}

.apt-hero-section {
    width: 100%;
    max-width: 1793px;
    height: 460px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

.apt-hero-title-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 534px;
    height: 125px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgb(255 255 255 / 81%) 0%, #FFF 100%);
}


/* Головний контейнер секції */
.apt-det-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1750px;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    padding: 40px 20px;
}

/* ЛІВА ЧАСТИНА (Зображення) */
.apt-det-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* Мінімальний зазор між головним фото і галереєю */
    width: 900px;
    flex-shrink: 0;
}

.apt-det-main-img {
    width: 900px;
    height: 658px;
    object-fit: cover;
    display: block;
}

.apt-det-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 900px;
}

.apt-det-gal-img {
    width: 299px;
    height: 218px;
    object-fit: cover;
    display: block;
}

/* ПРАВА ЧАСТИНА (Інформація) */
.apt-det-right {
    display: flex;
    flex-direction: column;
    width: 780px;
    /* 4 блоки по 195px */
    flex-shrink: 0;
}

/* Ряд з 4-ма блоками статистики */
.apt-det-stats-row {
    display: flex;
    flex-direction: row;
    width: 780px;
    margin-bottom: 40px;
}

.apt-det-stat-block {
    width: 195px;
    height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Кольори блоків (використано rgba для фону, щоб текст залишався непрозорим) */
.apt-det-bg-1 {
    background-color: rgba(217, 217, 217, 0.72);
}

.apt-det-bg-2 {
    background-color: rgba(217, 217, 217, 0.52);
}

.apt-det-bg-3 {
    background-color: rgba(217, 217, 217, 0.35);
}

.apt-det-bg-4 {
    background-color: rgba(217, 217, 217, 0.18);
}

.apt-det-stat-title {
    color: #838383;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.apt-det-stat-val {
    color: #767676;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    /* 275 у веб-шрифтах зазвичай зводиться до 300 */
    line-height: normal;
    text-transform: lowercase;
}

/* Текстовий контент */
.apt-det-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.apt-det-text-content p,
.apt-det-text-content ul {
    margin: 0;
    color: #676767;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    text-align: justify;
}

.apt-det-text-content ul {
    padding-left: 20px;
    margin-top: -10px;
    /* Візуальне наближення списку до заголовка */
}

.apt-det-text-content li {
    margin-bottom: 5px;
}

/* Жирні заголовки у тексті */
.apt-det-heading {
    color: #676767;
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    /* 155% */
    margin: 0;
}

/* Кнопка UMÓW SPOTKANIE */
.apt-det-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 252px;
    height: 45px;
    background: #64615A;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.apt-det-btn:hover {
    background: #4a4843;
}

/* Адаптивність (опціонально для менших екранів) */


.apt-det-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
    max-width: 1796px;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    padding: 39px 0px;
}
.apt-det-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 900px;
    flex-wrap: wrap;
    row-gap: 2px;
}

.apartments-section--mod .apartment-card {
    position: relative;
    width: 450px;
    height: 411px;
    overflow: hidden;
    cursor: pointer;
}

.apartment-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.apartment-bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1791px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 0vw;
    margin-bottom: 2vw;
    gap: 2px;
}


  /* Główne tło i kontener popupa */
  .popuap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    display: none; /* Domyślnie ukryty */
    justify-content: center;
    align-items: center;
    font-family: "Barlow Condensed", sans-serif;
  }

  /* Klasa aktywująca popup */
  .popuap.is-active {
    display: flex;
  }

  /* Wewnętrzny kontener */
  .popuap-inner {
    display: flex;
    flex-direction: row;
    background: #FFFFFF;
    width: 100%;
    max-width: 1560px; /* Szerokość obrazka (960) + obszar formularza (~600) */
    max-height: 946px;
    height: 95vh;
    position: relative;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
  }

  /* Przycisk zamknięcia */
  .popuap-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
  }

  .popuap-close-btn:hover {
    background: #8e887d;
  }

  .popuap-close-icon {
    width: 16.002px;
    height: 18.007px;
    flex-shrink: 0;
  }

  /* Lewa kolumna (Zdjęcie) */
  .popuap-left {
    width: 960px;
    height: 100%; /* Dopasowuje się do 946px max-height */
    flex-shrink: 0;
  }

  .popuap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Prawa kolumna (Treść i formularz) */
  .popuap-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
    overflow-y: auto; /* W razie mniejszych ekranów */
    position: relative;
  }

  /* Nagłówki i tekst powitalny */
  .popuap-subtitle {
    color: #B8B1A4;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 6px;
    margin-bottom: 5px;
  }

  .popuap-title {
    color: #64615A;
    font-size: 29px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 7.25px;
    margin: 0 0 30px 0;
    text-transform: uppercase;
  }

  .popuap-desc {
    color: #676767;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin: 0 0 40px 0;
  }

  /* Formularz */
  .popuap-form {
    display: flex;
    flex-direction: column;
  }

  .popuap-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 8px;
    position: relative;
  }

  .popuap-label {
    color: #767676;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
  }

  .popuap-input,
  .popuap-select {
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 0;
    appearance: none; /* Ukrywa domyślną strzałkę w select */
  }

  /* Customowa strzałka do selecta, podobna do widocznej na screenie */
  .popuap-select-wrapper::after {
    content: "v";
    position: absolute;
    right: 5px;
    bottom: 8px;
    color: #767676;
    font-size: 14px;
    pointer-events: none;
    transform: scaleX(1.5) scaleY(0.8);
  }

  /* Checkbox */
  .popuap-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .popuap-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    top: 2px;
  }

  .popuap-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 16px;
    color: #64615A;
  }

  .popuap-check-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
  }

  .popuap-check-label a {
    color: #000;
    text-decoration: underline;
  }

  /* Przycisk wysyłania (ZAPYTAJ O WYNAJEM) */
  .popuap-submit-btn {
    display: flex;
    width: 252px;
    padding: 14px 0;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .popuap-submit-btn:hover {
    background: #8e887d;
  }

  /* Podstawowa responsywność */
  
  


.popuap-inner {
    display: flex;
    flex-direction: row;
    background: #FFFFFF;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100vh;
    position: relative;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

.popuap-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 80px;
    box-sizing: border-box;
    overflow-y: auto;
    position: relative;
    padding-left: 121px;
    padding-top: 114px;
    padding-right: 11vw;
}

.popuap-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-top: 7px;
    margin-bottom: 4vw;
}


/* Оверлей (затемнение) */
.sp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sp-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* Выезжающая панель */
.sp-panel {
    position: fixed;
    top: 0;
    right: -480px; /* Спрятана за правым краем */
    width: 449px;
    height: 100vh; /* Занимает всю высоту экрана, как на макете */
    max-height: 100%;
    background: #FFF;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    font-family: "Barlow Condensed", sans-serif;
    overflow-y: auto;
}

.sp-panel.is-open {
    right: 0;
}

/* Кнопка закрытия (стрелочка) */
.sp-close-btn {
    display: flex;
    width: 45px;
    height: 45px;
    padding: 14px 41px 13px 40px; /* По вашим стилям */
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #A7A197;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease;
}

.sp-close-btn:hover {
    background: #8e887d;
}

.sp-close-icon {
    width: 21.788px;
    height: 10.039px;
    flex-shrink: 0;
}

/* Контент панели */
.sp-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

.sp-subtitle {
    color: #B8B1A4;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 6px;
    margin-bottom: 5px;
}

.sp-title {
    color: #64615A;
    font-size: 29px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 7.25px;
    margin: 0 0 50px 0;
}

/* Форма */
.sp-form {
    display: flex;
    flex-direction: column;
}

.sp-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(118, 118, 118, 0.3);
    padding-bottom: 5px;
    position: relative;
}

.sp-label {
    color: rgba(118, 118, 118, 0.5); /* #767676 с opacity 0.5 */
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}

.sp-input,
.sp-select {
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 0;
    appearance: none;
}

/* Стрелочка для селекта */
.sp-select-wrap::after {
    content: "∨";
    position: absolute;
    right: 0;
    bottom: 8px;
    color: #767676;
    font-size: 14px;
    pointer-events: none;
    transform: scaleX(1.5) scaleY(0.7);
}

/* Чекбокс */
.sp-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.sp-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    top: 2px;
}

.sp-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 16px;
    color: #64615A;
}

.sp-check-label {
    color: rgba(0, 0, 0, 0.5); /* opacity 0.5 */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.sp-check-label a {
    color: inherit;
    text-decoration: underline;
}

/* Кнопка отправки WYŚLIJ */
.sp-submit-btn {
    display: flex;
    width: 233px;
    padding: 9.5px 0 12.5px 0;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 4.75px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.sp-submit-btn:hover {
    background: #8e887d;
}

/* Адаптив панели для мобильных экранов */



.sp-close-btn {
    display: flex;
    width: 45px;
    height: 45px;
    padding: 14px 22px 13px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #A7A197;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease;
}

.bry-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1790px;
    margin: 0 auto;
    background-color: #FFFFFF;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    margin-top: -0.5vw;
    position: relative;
    z-index: 99;
}

.bry-image-col {
    width: 46.6vw;
    height: 31vw;
    flex-shrink: 0;
}
.bry-header {
    margin-bottom: 2vw;
}

.bry-content-col {
    flex: 1;
    padding: 60px 0px 2vw 6.4vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    margin-top: 0.3vw;
}

.bry-subtitle {
    color: #B8B1A4;
    font-size: 1.14vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    margin-bottom: 0.2vw;
}

.bry-title {
    color: #64615A;
    font-size: 2.46vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.65vw;
    text-transform: uppercase;
    margin: 0;
    margin-top: -0.4vw;
    margin-left: -0.1vw;
}
.bry-info-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    position: relative;
    padding-left: 1.66vw;
    justify-content: flex-start;
    margin-top: 0.7vw;
    margin-left: -0.2vw;
}
.bry-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.3vw;
}

.bry-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2vw;
    flex-shrink: 0;
    margin-top: 0.4vw;
    margin-left: -0.2vw;
}

.bry-info-text {
    display: flex;
    flex-direction: column;
    margin-top: -0.6vw;
    margin-bottom: 1.4vw;
}
.bry-socials {
    display: flex;
    gap: 0.9vw;
    padding-left: 3.1vw;
    margin-top: 0vw;
}

.bry-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -6vw;
    position: relative;
    z-index: 9;
    margin-left: 1.8vw;
}

.bry-form-title {
    color: #676767;
    text-align: left;
    font-size: 1.03vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.9;
    margin: 0 0 1.5vw 0;
    margin-top: -0.2vw;
}

.bry-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1vw;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 0.4vw;
}

.bry-form-input {
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.03vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 0;
}

.bry-checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.8vw;
    margin-top: 1.2vw;
    margin-bottom: 1.8vw;
}

.map-section {
    position: relative;
    max-width: 93.33vw;
    margin: 0 auto;
    background: url(mapka.jpg) center / cover no-repeat;
    filter: none;
    width: 93.7vw;
    height: 26.09vw;
    margin-top: 0.8vw;
}

.symbolis1 {
    position: absolute;
    right: 3vw;
    margin-top: -3vw;
    z-index: 0;
    width: 22vw;
}

.rezydencja-section {
    font-family: "Barlow Condensed", sans-serif;
    background-color: #fff;
    display: flex;
    align-items: stretch;
    max-width: 93vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: -0.5vw;
    position: relative;
    z-index: 99;
}

.rezydencja-section .image-block {
    width: 46.5vw;
    height: 38.3vw;
    flex-shrink: 0;
}

.rezydencja-section .content-block {
    flex-grow: 1;
    padding: 2.08vw 0 2.08vw 5.73vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.rezydencja-section .content-block {
    flex-grow: 1;
    padding: 3.3vw 0 2.08vw 6.36vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.rezydencja-section .subtitle {
    color: #B8B1A4;
    font-size: 1.15vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.29vw;
    text-transform: uppercase;
    margin-bottom: 0.1vw;
}

.rezydencja-section .title {
    color: #64615A;
    font-size: 2.55vw;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 0.62vw;
    text-transform: uppercase;
    margin-bottom: 1.82vw;
    margin-top: -0.3vw;
    margin-left: -0.2vw;
}

.rezydencja-section .text-container {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    max-width: 37vw;
    margin-bottom: 2.34vw;
    text-align: justify;
}
.bryn-text-col {
    flex: 1;
    padding: 5.05vw 3.18vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 5.5vw;
}

.bryn-btn-wrap {
    text-align: right;
    margin-top: -0.8vw;
}
.bryn-btn {
    display: inline-block;
    background-color: #64615A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.57vw 1.72vw;
    font-size: 0.94vw;
    font-weight: 400;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.bryn-features-col {
    display: flex;
    flex-direction: column;
    width: 12.08vw;
    flex-shrink: 0;
}

.bryn-feature {
    width: 12.08vw;
    height: 12.08vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 1vw;
    padding-top: 2.6vw;
}

.bryn-feature-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
}

.bryn-feature {
    width: 11.67vw;
    height: 11.74vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 1vw;
    padding-top: 2.6vw;
    box-sizing: border-box;
    margin-left: 0.41vw;
}
.bryn-image-col {
    width: 46.61vw;
    height: 35.16vw;
    flex-shrink: 0;
    position: relative;
}

.bryn-btn-wrap {
    text-align: right;
    margin-top: 0.7vw;
}
.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.16vw;
    width: 100%;
    max-width: 93.28vw;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 0vw;
    margin-bottom: 2vw;
}

.rezydencja-section .btn-apartamenty {
    display: flex;
    width: 10.42vw;
    height: 2.34vw;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    background: #64615A;
    color: #FFF;
    text-align: center;
    font-size: 0.83vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "Barlow Condensed";
}

.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.16vw;
    width: 100%;
    max-width: 93.28vw;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 1.3vw;
    margin-bottom: 2vw;
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.04vw 0.52vw;
    aspect-ratio: 1 / 1;
    width: 11.72vw;
    height: 11.72vw;
}
.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 1.04vw 0.52vw;
    aspect-ratio: 1 / 1;
    width: 11.72vw;
    height: 11.72vw;
}

.rf-number {
    font-family: "Playfair Display", serif;
    font-size: 5vw;
    font-weight: 400;
    color: #5d5b55;
    line-height: 1;
    margin-bottom: 1vw;
    margin-top: 0.6vw;
}

.rf-text {
    font-size: 1.1vw;
    color: #4a4a4a;
    line-height: 1.2;
    font-weight: 400;
}

.rf-text {
    font-size: 1.1vw;
    color: #4a4a4a;
    line-height: 1.2;
    font-weight: 400;
}

.rf-icon {
    height: 5vw;
    margin-bottom: 0.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1vw;
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 1.04vw 0.52vw;
    aspect-ratio: 1 / 1;
    width: 11.72vw;
    height: 11.72vw;
}

.rf-icon svg {
    width: 5vw;
    height: 4vw;
    stroke: #5d5b55;
    fill: none;
    stroke-width: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.16vw;
    width: 100%;
    max-width: 93.28vw;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.left_foot .fc-label {
    margin-bottom: 0.26vw;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.09vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: -0.47vw;
}

.fc-main {
    letter-spacing: 0.05vw;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fc-icon svg {
    width: 1.3vw;
    height: 1.3vw;
    fill: none;
    stroke: #d0caca;
    stroke-width: 1.5;
}

.logo_biale 
{
    width:7.5vw;
}

.right_foot .fc-label {
    margin-bottom: 0.26vw;
    color: #B8B1A4;
    font-family: "Barlow Condensed";
    font-size: 1.09vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    margin-left: 1.5vw;
}

.right_foot .fc-main {
    letter-spacing: 0.05vw;
    color: #FFF;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 1.5vw;
}

.right_foot .fc-sub {
    margin-top: 0.1vw;
    color: #FFF;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 1.5vw;
}

.rezydencja-features-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 23.44vw;
    height: 23.44vw;
}

.rf-col-img-right img {
    width: 46.93vw;
    height: 23.44vw;
}

.rezydencja-features-banner {
    display: flex;
    align-items: stretch;
    max-width: 93.28vw;
    width: 100%;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 0.8vw;
}

.rezydencja-features-banner {
    display: flex;
    align-items: stretch;
    max-width: 93.28vw;
    width: 100%;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 0.8vw;
    margin-bottom: 2.6vw;
}

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 93.28vw;
    margin: 0 auto;
    background-color: #fff;
    margin-top: -0.5vw;
    margin-bottom: 2vw;
    gap: 2px;
    position: relative;
    z-index: 99;
}

.apartments-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    font-family: "Barlow Condensed", sans-serif;
    background-color: transparent;
    flex-wrap: wrap;
    row-gap: 1.98vw;
    margin-bottom: 2.19vw;
}
.apartments-container .apt-card {
    width: 46.77vw;
    height: 28.13vw;
    background: #FFF;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.apartments-container .apt-image-wrapper {
    width: 46.77vw;
    height: 21.46vw;
    position: relative;
    overflow: hidden;
}

.apartments-container .status-overlay {
    width: 8.49vw;
    height: 5vw;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(7.86px);
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.apartments-container .status-label {
    color: #FFF;
    text-align: center;
    font-size: 0.78vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.04vw;
    margin-bottom: 0.26vw;
}

.apartments-container .status-value {
    color: #BAD9AF;
    text-align: center;
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.31vw;
}

.apartments-container .info-overlay {
    width: 18.23vw;
    height: 4.32vw;
    opacity: 0.9;
    background: #A1998D;
    backdrop-filter: blur(2px);
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1.04vw;
    box-sizing: border-box;
}

.apartments-container .apartament-label {
    color: #FFF;
    text-align: right;
    font-size: 1.56vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.39vw;
    margin-right: 0.78vw;
}

.apartments-container .apartament-number {
    color: #FFF;
    text-align: right;
    font-size: 1.56vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.39vw;
}

.apartments-container .apt-details {
    width: 100%;
    height: 6.67vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15vw 0.89vw;
    box-sizing: border-box;
    padding-left: 3.28vw;
}
.apartments-container .apt-description {
    max-width: 33.85vw;
    display: flex;
    flex-direction: column;
    gap: 0.26vw;
}
.apartments-container .desc-title {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.41vw;
}

.apartments-container .desc-text {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.41vw;
}

.apartments-container .zobacz-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 0.26vw;
    gap: 0.52vw;
}
.apartments-container .zobacz-link span
 {
    color: #676767;
    text-align: justify;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.61vw;
}
.apartments-container .arrow-svg {
    width: 1.13vw;
    height: 0.52vw;
    display: block;
}

.apartments-container .info-overlay {
    width: 18.23vw;
    height: 4.32vw;
    opacity: 0.9;
    background: #A1998D;
    backdrop-filter: blur(2px);
    position: absolute;
    bottom: 0vw;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2.4vw;
    box-sizing: border-box;
    display: flex;
}

.apartments-container .apartament-label {
    color: #FFF;
    text-align: right;
    font-size: 1.56vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.39vw;
    margin-right: 1.2vw;
    margin-top: -0.2vw;
}

.apartments-container .zobacz-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 0.26vw;
    gap: 0.52vw;
    justify-content: flex-start;
    align-content: center;
    margin-right: 0.11vw;
    gap: 0.9vw;
    margin-top: -0.5vw;
}

.apartments-container .arrow-svg {
    width: 1.13vw;
    height: 0.52vw;
    display: block;
    margin-top: 0.3vw;
}

.apartments-container .apt-description p {
    margin: 0;
    margin-top: -0.2vw;
}

.apt-det-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
    max-width: 93.54vw;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    padding: 2.03vw 0px;
    margin-bottom: 2.5vw;
}

.top-bar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    position: relative;
    z-index: 10;
    max-width: 93.02vw;
    margin: auto;
    margin: auto;
}

.top-bar-left {
    opacity: 1;
    background: linear-gradient(90deg, #ededed 77.9%, #FFF 100%), #c4c4c4;
    width: 31.93vw;
    height: 1.56vw;
}
.top-bar-left {
    gap: 1.56vw;
}

.social-icons {
    display: flex;
    gap: 0.78vw;
    margin-left: 1vw;
    margin-right: 1vw;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.52vw;
    padding-right: 0.8vw;
}

.lang-switch a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.56vw;
    height: 1.56vw;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.94vw;
    font-weight: 500;
    color: #FFF;
    padding-bottom: 0.26vw;
}
.social-icons a {
    color: #64615A;
    font-family: "FontAwesome";
    font-size: 0.94vw;
    font-weight: 400;
}

.top-bar-text {
    color: #64615A;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.94vw;
    font-weight: 500;
    text-align: right;
}

.top-bar-right {
    position: relative;
    gap: 1.3vw;
    padding-left: 1.04vw;
}
.top-bar-right::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 31.93vw;
    height: 1.56vw;
    opacity: 0.15;
    background: linear-gradient(270deg, #C4C4C4 77.9%, #FFF 100%), #C4C4C4;
    z-index: -1;
    pointer-events: none;
}

.text-phone {
    letter-spacing: 0.12vw;
    margin-right: -0.12vw;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.73vw 0px;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 93.7vw;
    margin: auto;
    height: 7.71vw;
}

.nav-menu {
    display: flex;
    gap: 2.03vw;
    margin-left: 0.3vw;
}

.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15vw;
    font-weight: 600;
    letter-spacing: 1.1px;
    padding: 0.73vw 0.99vw;
    border-top: 0.05vw solid #bdbdbd;
    border-bottom: 0.05vw solid #bdbdbd;
    transition: color 0.3s;
    margin-top: -0.6vw;
    width: 8.6vw;
}

.logo {
    width: 9.43vw;
    height: 8.75vw;
    aspect-ratio: 181 / 168;
    margin-top: -2.08vw;
}

.apt-hero-section {
    width: 100%;
    max-width: 93.39vw;
    height: 23.96vw;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

.apt-hero-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 13.13vw;
}

.apt-hero-status {
    width: 13.13vw;
    height: 5.89vw;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(9.3px);
    -webkit-backdrop-filter: blur(9.3px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.apt-hero-status-label {
    color: #FFF;
    text-align: center;
    font-size: 0.89vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.85px;
    margin-bottom: 0.26vw;
}

.apt-hero-status-value {
    color: #BAD9AF;
    text-align: center;
    font-size: 1.82vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 8.75px;
}
.apt-hero-btn {
    width: 13.13vw;
    height: 2.34vw;
    background: #64615A;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: right;
    font-size: 0.83vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.21vw;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}
.apt-hero-title-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 27.81vw;
    height: 6.51vw;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1.04vw;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgb(255 255 255 / 81%) 0%, #FFF 100%);
}

.apt-hero-subtitle {
    color: #B8B1A4;
    text-align: center;
    font-size: 1.15vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.29vw;
    margin-bottom: 0.26vw;
}
.apt-hero-title {
    color: #64615A;
    text-align: center;
    font-size: 2.55vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.64vw;
    margin: 0;
}

.apt-det-left {
    display: flex;
    flex-direction: column;
    gap: 0.1vw;
    width: 46.88vw;
    flex-shrink: 0;
}

.apt-det-main-img {
    width: 46.88vw;
    height: 34.27vw;
    object-fit: cover;
    display: block;
}

.apt-det-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 46.88vw;
    flex-wrap: wrap;
    row-gap: 0.1vw;
}

.apt-det-gal-img {
    width: 15.57vw;
    height: 11.35vw;
    object-fit: cover;
    display: block;
}

.apt-det-right {
    display: flex;
    flex-direction: column;
    width: 40.63vw;
    flex-shrink: 0;
}

.apt-det-stats-row {
    display: flex;
    flex-direction: row;
    width: 40.63vw;
    margin-bottom: 2.08vw;
}

.apt-det-stat-block {
    width: 10.16vw;
    height: 6.88vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.apt-det-stat-title {
    color: #838383;
    text-align: center;
    font-size: 0.89vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.04vw;
    text-transform: uppercase;
    margin-bottom: 0.52vw;
}

.apt-det-stat-val {
    color: #767676;
    text-align: center;
    font-size: 1.88vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: lowercase;
}
.apt-det-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.04vw;
    margin-bottom: 2.08vw;
}


.apt-det-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13.13vw;
    height: 2.34vw;
    background: #64615A;
    color: #FFF;
    text-align: center;
    font-size: 0.83vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.21vw;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.apartments-section--mod .apartment-card {
    position: relative;
    width: 23.44vw;
    height: 21.41vw;
    overflow: hidden;
    cursor: pointer;
}

.apartment-subtitle {
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.09vw;
    font-weight: 500;
    letter-spacing: 0.29vw;
    margin-right: -0.13vw;
    width: 78%;
    margin-top: 0.57vw;
}

.apartment-title {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.51vw;
    font-weight: 600;
    letter-spacing: 0.38vw;
    margin-top: -0.16vw;
    width: 100%;
    text-align: right;
    margin-right: 4.5vw;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.54vw;
    height: 3.54vw;
    background-color: #64615A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    cursor: pointer;
    filter: none;
}
.route-btn {
    position: absolute;
    bottom: 2.34vw;
    right: 3.6%;
    background: rgba(100, 97, 90, 0.95);
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.83vw;
    font-weight: 600;
    letter-spacing: 0.21vw;
    padding: 0.68vw 1.51vw;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}
.popuap-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 2.34vw;
    height: 2.34vw;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.popuap-close-icon {
    width: 0.83vw;
    height: 0.94vw;
    flex-shrink: 0;
}

.popuap-left {
    width: 50vw;
    height: 100%;
    flex-shrink: 0;
}

.popuap-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3.13vw 4.17vw;
    box-sizing: border-box;
    overflow-y: auto;
    position: relative;
    padding-left: 6.3vw;
    padding-top: 5.94vw;
    padding-right: 11vw;
}

.popuap-subtitle {
    color: #B8B1A4;
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.31vw;
    margin-bottom: 0.26vw;
}

.popuap-title {
    color: #64615A;
    font-size: 1.51vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.38vw;
    margin: 0 0 1.56vw 0;
    text-transform: uppercase;
}
.popuap-desc {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.61vw;
    margin: 0 0 2.08vw 0;
}

.popuap-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.04vw;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 0.42vw;
    position: relative;
}

.popuap-label {
    color: #767676;
    font-size: 0.89vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.26vw;
}

.popuap-input, .popuap-select {
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 0;
    appearance: none;
}

.popuap-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.78vw;
    margin-top: 0.36vw;
    margin-bottom: 4vw;
}

.popuap-submit-btn {
    display: flex;
    width: 13.13vw;
    padding: 0.73vw 0;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.83vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.21vw;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.main-footer {
    position: relative;
    width: 100%;
    max-width: 93.33vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    filter: none;
}
.footer-contacts {
    position: relative;
    width: 100%;
    padding: 1.56vw 0;
}
.footer-bottom {
    position: relative;
    background: #fff;
    padding: 0.73vw 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #888;
    color: #767676;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 0.83vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: grid;
    grid-template-columns: 33vw 1fr;
}

.apt-det-heading {
    color: #676767;
    text-align: justify;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.61vw;
    margin: 0;
}

.apt-det-text-content p, .apt-det-text-content ul {
    margin: 0;
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.61vw;
    text-align: justify;
}



.apartments-section-modds {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 93.1vw;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 0vw;
    margin-bottom: 2vw;
    gap: 2px;
    position: relative;
    z-index: 99;
}

.map-section-modds {
    margin-top: 2.2vw;
}



/* Базовое скрытие мобильных элементов на десктопе */
.mobile-menu-toggle,
.mobile-menu-overlay {
    display: none;
}

/* Медиазапрос для мобильных устройств (планшеты и телефоны) */
@media (max-width: 991px) {
    /* Скрываем десктопные элементы */
    .top-bar,
    .nav-menu {
        display: none !important;
    }

    /* Шапка для мобилок */
    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }
    
    .main-header .logo-container img {
        max-width: 150px; /* Настройте под размер вашего логотипа */
        height: auto;
    }

    /* Кнопка Гамбургер */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 45px;
        height: 45px;
        background-color: #64615A;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
    }

    /* Мобильное оверлей-меню */
    .mobile-menu-overlay {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* На весь экран */
        background-color: #faf9f8; /* Легкий оттенок фона (со скриншота) */
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
    }

    .mobile-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Внутренний отступ и центрирование верхнего блока */
    .mobile-menu-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        position: relative;
        border-bottom: 1px solid #e5e5e5;
    }

    /* Кнопка закрытия */
    .mobile-menu-close {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: #1a1a1a;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-body {
        padding: 40px 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Переключатель языков */
    .mobile-lang-switch {
        display: flex;
        gap: 10px;
        margin-bottom: 40px;
    }

    .mobile-lang-switch a {
        padding: 5px 10px;
        background-color: #dcdcdc;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        text-transform: uppercase;
    }

    .mobile-lang-switch a.active {
        background-color: #64615A;
    }

    /* Навигация */
    .mobile-nav {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-bottom: 50px;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .mobile-nav li:first-child {
        border-top: 1px solid #e0e0e0;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 0;
        color: #64615A;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
    }

    /* Контакты */
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        color: #64615A;
        font-size: 15px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-item a {
        color: #64615A;
        text-decoration: none;
    }

    /* Соцсети в подвале меню */
    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 30px;
        background-color: #ffffff;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-socials a {
        color: #64615A;
        font-size: 18px;
        text-decoration: none;
    }

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: auto;
    height: 124px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: auto;
    height: 124px;
}

.mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 45px;
        height: 45px;
        background-color: #64615A;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        position: absolute;
        right: 18px;
        top: 18px;
    }
    .logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0vw;
    margin-top: 0;
    justify-content: center;
    align-content: center;
}

.logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0vw;
    margin-top: 0 !important;
    justify-content: center;
    align-content: center;
    width: 100%;
}

    .main-header .logo-container img {
        max-width: 100%;
        height: auto;
    }
.logo {
    width: auto !important;
    height: 124px !important;
    aspect-ratio: 181 / 168;
    margin-top: 0;
}

    .mobile-menu-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        border-bottom: 1px solid #e5e5e5;
    }
    .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 100% !important;
    margin: auto;
    height: 124px !important;
}
.logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0vw;
    margin-top: 5px !important;
}

    .mobile-lang-switch a {
        padding: 5px 10px;
        background-color: #dcdcdc;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        text-transform: uppercase;
        color: #FFF;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 13px;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 0;
        color: #64615A;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
        color: #050505;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 19px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        opacity: 0.5;
    }

        .mobile-nav li {
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        width: 188px;
        margin: auto;
        margin-bottom: 20px;
    }
        .mobile-nav li {
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        width: 161px;
        margin: auto;
        margin-bottom: 27px;
    }

        .mobile-lang-switch a {
        padding: 5px 10px;
        background-color: #dcdcdc;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        text-transform: none;
        color: #FFF;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 13px;
        padding-bottom: 6px;
        padding-top: 4px;
    }

    .mobile-menu-close {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background-color: #1a1a1a;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 18px;
        top: 41px;
    }
.mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 45px;
        height: 45px;
        background-color: #64615A;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        position: absolute;
        right: 18px;
        top: 18px;
    }
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 19px;
        align-items: center;
        color: #64615A;
        font-size: 15px;
        color: #64615A;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .mobile-nav {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-bottom: 30px;
    }
    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 18px;
        background-color: #ffffff;
        border-top: 1px solid #f0f0f0;
    }

.hero {
    position: relative;
    width: 100%;
    max-width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 0;
    z-index: 99;
    height: 430px !important;
}

.hero-subtitle {
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.508vw;
    font-weight: 300;
    letter-spacing: 0.377vw;
    margin-right: 0;
    text-transform: uppercase;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 15px !important;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 3.5px;
}

.hero-title {
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 4.836vw;
    font-weight: 300;
    letter-spacing: 1.209vw;
    margin-right: -1.209vw;
    line-height: 1;
    margin-top: -0.52vw;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 3.5px;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 46px !important;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 11.5px;
}

.hero-title-container {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 280px !important;
}
.watermark {
    position: absolute;
    bottom: -1.56vw;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-size: 0;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    bottom: 0;
    width: 200px;
    height: auto;
}

.watermark img 
{
        width: 144px;
    margin-bottom: -28px;
    margin-left: -11px;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 94% !important;
}
.about-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 !important;
}

.symb {
width: 126px;
height: 160px;
}

.symb {
        width: 126px;
        height: 160px;
        margin: auto;
        margin-top: 49px;
        margin-bottom: -60px;
        position: relative;
        z-index: 99;
    }

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    align-content: center;
    padding-top: 0;
    height: 170px;
}

    .route-btn {
        position: absolute;
        bottom: auto;
        right: 0;
        background: rgba(100, 97, 90, 0.95);
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.83vw;
        font-weight: 600;
        letter-spacing: 0.21vw;
        padding: 0.68vw 1.51vw;
        border: none;
        cursor: pointer;
        transition: background 0.3s;
        z-index: 2;
        display: flex;
        width: 199px;
        height: 45px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        position: relative;
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 4px;
        margin: auto;
        margin-top: 41px;
        margin-bottom: 38px;
    }

    .marker_pro1 
    {
       width: 27.409px;
    height: 27.409px; 
    }

        .marker_pro2 {
        width: 22.409px;
        height: 20.409px;
    }

    .ikono4ka_title 
    {
          color: #B8B1A4;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;  
    }

    .ikono4ka_opis 
    {
          color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 9px;  
    }

        .ikono4ka_opis {
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
    }

        .ikono4ka_title {
        color: #B8B1A4;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 11px;
    }

    .logo_bialee 
    {
          margin: auto;
    display: flex;
    padding-top: 50px;  
    }

    .marker_pro1 {
        width: 27.409px;
        height: 27.409px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 11px;
    }
    
    .footer_mobile
    {
     padding-bottom: 50px;   
    }

.white_black-pros a 
 {
color: #767676;
font-family: "Barlow Condensed";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;  
}


.white_black-pros 
{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 53%;
  margin: auto;
  gap: 20px;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;  
}
.marker_pro2 {
        width: 22.409px !important;
        height: 20.409px !important;
    }

    .route-btn {
        margin: auto;
        margin-top: 49px;
        margin-bottom: 39px !important;
    }

.rezydencja-section {
    font-family: "Barlow Condensed", sans-serif;
    background-color: #fff;
    display: flex;
    align-items: center;
    max-width: 94%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 0;
    position: relative;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.rezydencja-section .image-block {
    width: 100%;
    height: 38.3vw;
    flex-shrink: 0;
    height: 267px;
}
.rezydencja-section .subtitle {
    color: #B8B1A4;
    font-size: 1.15vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.29vw;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #B8B1A4;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.75px;
    margin-top: 30px;
}

.rezydencja-section .title {
    color: #64615A;
    font-size: 2.55vw;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 0.62vw;
    text-transform: uppercase;
    margin-bottom: 1.82vw;
    margin-top: -6px;
    margin-left: 0;
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 8px;
}
.rezydencja-section .text-container {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    max-width: 80%;
    margin-bottom: 2.34vw;
    text-align: left;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
    padding-right: 0px;
}

.rezydencja-section .btn-apartamenty {
    display: flex;
    width: 10.42vw;
    height: 2.34vw;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    background: #64615A;
    color: #FFF;
    text-align: center;
    font-size: 0.83vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.208vw;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "Barlow Condensed";
    display: flex;
    width: 199px;
    height: 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    align-content: center;
    margin: auto;
    margin-top: 28px;
    margin-bottom: 28px;
}

.rezydencja-section .content-block {
    flex-grow: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.rezydencja-section .text-container {
    max-width: 84%;
}

}


@media (min-width:991px)
{
    .dektop_off 
    {
        display:none !important;
    }
}

@media (max-width:991px)
{
    .mobile_off
    {
        display:none !important;
    }
}