/* vw.css — rozmiary z styles.css: 1px = 0.052vw */
 /* Базовые сбросы */
        * { 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: 0.52vw 2.08vw;
            position: relative;
            z-index: 10;
        }
        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
        }
        .top-bar-left { gap: 1.56vw; }
        
        /* Градиент под телефоном и email */
        .top-bar-right {
            position: relative;
            gap: 1.3vw;
            padding-left: 1.04vw;
        }
        .top-bar-right::before {
            content: '';
            position: absolute;
            right: -2.08vw; /* Уводим за край экрана, компенсируя padding top-bar */
            top: 50%;
            transform: translateY(-50%);
            width: 31.876vw;
            height: 1.56vw;
            opacity: 0.15;
            background: linear-gradient(90deg, #C4C4C4 77.9%, #FFF 100%), #C4C4C4;
            z-index: -1;
            pointer-events: none;
        }

        /* Переключатель языков */
        .lang-switch { display: flex; gap: 0.26vw; }
        .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.936vw;
            font-weight: 500;
            color: #FFF;
        }
        .lang-pl { background: #64615A; }
        .lang-en { background: #d0d0d0; } /* Добавил светло-серый фон для EN, чтобы белый текст читался */

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

        /* Главная навигация */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.3vw 2.08vw;
            background: #fff;
            position: relative;
            z-index: 10;
        }
        .nav-menu {
            display: flex;
            gap: 2.08vw;
        }
        .nav-menu a {
            color: #64615A;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 1.144vw;
            font-weight: 600;
            letter-spacing: 0.0572vw;
            padding: 0.52vw 0;
            border-top: 0.052vw solid #e0e0e0;
            border-bottom: 0.052vw 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: 2.704vw;
            color: #b5a999;
            line-height: 1;
            margin-bottom: 0.26vw;
        }
        .logo-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.04vw;
            font-weight: 500;
            letter-spacing: 0.26vw;
            color: #64615A;
        }
        .logo-subtext {
            font-size: 0.572vw;
            letter-spacing: 0.156vw;
            color: #888;
            text-transform: uppercase;
        }

        /* Hero секция */
        .hero {
            position: relative;
            width: 100%; /* В макете 93.548vw, делаем адаптивным */
            max-width: 93.548vw;
            margin: 0 auto;
            height: 38.584vw; /* Фиксированная высота из макета */
            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: 13.104vw;
            display: flex;
            flex-direction: column;
        }
        .availability-box {
            width: 13.104vw;
            height: 7.748vw;
            background: rgba(100, 97, 90, 0.75);
            backdrop-filter: blur(0.4836vw);
            -webkit-backdrop-filter: blur(0.4836vw); /* Для 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: 0.052vw dashed rgba(255,255,255,0.3);
        }
        .stat-label {
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 0.884vw;
            font-weight: 500;
            letter-spacing: 0.0442vw;
            margin-bottom: -0.26vw;
        }
        .label-green { color: #BAD9AF; margin-right: -0.0442vw; }
        .label-white { color: #FFF; margin-right: -0.0442vw; }
        
        .stat-number {
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 3.536vw;
            font-weight: 500;
            letter-spacing: 0.884vw;
            margin-right: -0.884vw; /* Компенсация letter-spacing для центрирования */
            line-height: 1.2;
        }
        .number-green { color: #BAD9AF; }
        .number-grey { color: #CCC7BF; }
        
        .cta-btn {
            width: 13.104vw;
            height: 2.34vw;
            background: #64615A;
            color: #FFF;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 0.832vw;
            font-weight: 600;
            letter-spacing: 0.208vw;
            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: 7.8vw; /* Сдвиг вниз, если нужно по макету */
        }
        .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.377vw;
            text-transform: uppercase;
        }
        .hero-title {
            color: #FFF;
            text-align: center;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 4.836vw;
            font-weight: 300; /* В CSS нет 275, 300 - максимально близкий стандартный */
            letter-spacing: 1.209vw;
            margin-right: -1.209vw; /* Важно для правильного центрирования текста с letter-spacing */
            line-height: 1;
            margin-top: -0.52vw;
        }

        /* Водяной знак слева внизу */
        .watermark {
            position: absolute;
            bottom: -1.56vw;
            left: -1.04vw;
            font-family: 'Playfair Display', serif;
            font-size: 19.76vw;
            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: 0.728vw 0vw;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 93.548vw;
    margin: auto;
}
.top-bar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0vw 0vw;
    position: relative;
    z-index: 10;
    max-width: 93.548vw;
    margin: auto;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.728vw 0vw;
    background: #fff;
    position: relative;
    z-index: 10;
    max-width: 93.548vw;
    margin: auto;
    height: 7.696vw;
}

.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.144vw;
    font-weight: 600;
    letter-spacing: 0.0572vw;
    padding: 0.728vw 0.988vw;
    border-top: 0.052vw solid #bdbdbd;
    border-bottom: 0.052vw solid #bdbdbd;
    transition: color 0.3s;
    margin-top: 0vw;
}
.logo 
{
 width: 9.412vw;
    height: 8.736vw;
    aspect-ratio: 181 / 168;
    margin-top: -2.08vw;   
}

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

.availability-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 13.104vw;
    display: flex;
    flex-direction: column;
}
.stat-item.left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0vw;
    height: 100%;
    border-right: 0.104vw 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: 93.548vw;
    margin: 0 auto;
    height: 38.584vw;
    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: -1.56vw;
    left: -1.04vw;
    font-family: 'Playfair Display', serif;
    font-size: 19.76vw;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    bottom: -4.836vw;
}

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

    .apartment-card {
        position: relative;
        width: 23.296vw;
        height: 38.584vw;
        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: 23.296vw;
        height: 5.876vw;
        /* Используем такой же цвет и блюр, как у плашки на банере */
        background: rgba(100, 97, 90, 0.75);
        backdrop-filter: blur(0.4836vw);
        -webkit-backdrop-filter: blur(0.4836vw);
        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: 1.144vw;
        font-weight: 500;
        letter-spacing: 0.286vw;
        margin-right: -0.286vw; /* Компенсация letter-spacing для ровного центра */
    }

    .apartment-title {
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 1.508vw;
        font-weight: 600;
        letter-spacing: 0.377vw;
        margin-right: -0.377vw;
        margin-top: 0.104vw;
    }

    /* Белый блок, который появляется по ховеру */
    .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: 5.2vw;
        padding-bottom: 6.76vw; /* Оставляем место для нижнего блока */
    }

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

    .hover-logo {
        width: 3.016vw;
        height: 3.796vw;
        margin-bottom: 1.3vw;
    }

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

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

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

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

    .hover-btn {
        display: flex;
        width: 7.228vw;
        height: 2.34vw;
        justify-content: center;
        align-items: center;
        background: #A7A197;
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.832vw;
        font-weight: 600;
        letter-spacing: 0.208vw;
        margin-right: -0.208vw; /* Компенсация пробела внутри кнопки */
        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: 23.4vw;
    height: 38.584vw;
    overflow: hidden;
    cursor: pointer;
}
.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 93.548vw;
    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: 23.244vw;
}

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

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

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

/* Базовые стили секции */
    .about-section {
        position: relative;
        width: 100%;
        max-width: 93.184vw;
        margin: 0 auto;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 5.2vw;
        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: 33.8vw;
        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: 4.16vw;
    }

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

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

    .about-title {
        color: #64615A;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 3.328vw;
        font-weight: 300;
        letter-spacing: 0.832vw;
        line-height: 1;
        margin-bottom: 1.56vw;
        margin-top: 0.26vw;
    }

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

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

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

    .btn-light, .btn-dark {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 2.34vw;
        padding: 0 1.82vw;
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.832vw;
        font-weight: 600;
        letter-spacing: 0.208vw;
        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: 2.6vw;
    }

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

    /* Вертикальные цифры */
    .stats-vertical {
        width: 4.68vw;
        display: flex;
        flex-direction: column;
    }
    .stat-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0.78vw 0;
    }
    .stat-box.dark { background: #64615A; }
    .stat-box.light { background: #A7A197; }
    
    .s-label {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.624vw;
        letter-spacing: 0.052vw;
        margin-bottom: -0.26vw;
    }
    .dark .s-label { color: #A7A197; }
    .light .s-label { color: #E0E0E0; }
    
    .s-number {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 2.184vw;
        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: 1.56vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .rent-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 0.78vw;
        border-bottom: 0.052vw solid #ddd;
        padding-bottom: 0.52vw;
    }

    .rent-titles { display: flex; flex-direction: column; }
    .rent-sub {
        color: #A7A197;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.78vw;
        letter-spacing: 0.104vw;
    }
    .rent-main {
        color: #64615A;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 1.248vw;
        font-weight: 600;
        letter-spacing: 0.208vw;
        margin-top: -0.104vw;
    }

    .rent-link {
        color: #888;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.78vw;
        display: flex;
        align-items: center;
        gap: 0.26vw;
        transition: color 0.3s;
    }
    .rent-link:hover { color: #333; }
    .rent-desc {
        color: #777;
        font-family: 'Roboto', sans-serif;
        font-size: 0.676vw;
        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: 1.04vw 0.78vw;
        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: 2.6vw;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-bottom: 0.78vw;
        color: #64615A;
    }
    .feature-icon svg { width: 2.34vw; height: 2.34vw; fill: none; stroke: #64615A; stroke-width: 1.5; }
    
    /* Для цифры 12 */
    .feature-number {
        font-family: 'Playfair Display', serif;
        font-size: 2.912vw;
        color: #64615A;
        line-height: 0.8;
    }

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

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

    .about-subtitle {
    color: #A7A197;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.936vw;
    font-weight: 400;
    letter-spacing: 0.312vw;
    text-transform: uppercase;
    color: #B8B1A4;
    font-family: "Barlow Condensed";
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.286vw;
}

.about-title {
    color: #64615A;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3.328vw;
    font-weight: 300;
    letter-spacing: 0.832vw;
    line-height: 1;
    margin-bottom: 1.56vw;
    margin-top: 0.26vw;
    color: #64615A;
    font-family: "Barlow Condensed";
    font-size: 2.548vw;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 0.637vw;
}

.about-description {
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78vw;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 2.08vw;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
}

.btn-light, .btn-dark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.34vw;
    padding: 0 1.82vw;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    font-weight: 600;
    letter-spacing: 0.208vw;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    width: 10.348vw;
    height: 2.34vw;
    padding: 0.728vw 1.664vw 0.676vw 2.08vw;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.208vw;
}

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

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

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.04vw 0.78vw;
    text-align: center;
    width: 11.7vw;
    height: 11.7vw;
}

.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: 1.04vw;
    margin-top: 3.276vw;
    margin-bottom: 0.624vw;
}

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

.about-buttons {
    display: flex;
    gap: 1.04vw;
    margin-top: 3.276vw;
    margin-bottom: 0.936vw;
}

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

.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 0.52vw 1.56vw rgba(0, 0, 0, 0.02);
}

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

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

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

/* =========================================
       СЕКЦИЯ КАРТЫ
       ========================================= */
    .map-section {
        position: relative;
        width: 100%;
        max-width: 93.184vw;
        margin: 0 auto;
        height: 23.4vw;
        /* Плейсхолдер для карты. Можно заменить на 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: 3.38vw;
        height: 3.38vw;
        background-color: rgba(70, 70, 70, 0.95);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0.52vw 1.04vw rgba(0,0,0,0.2);
        z-index: 2;
        cursor: pointer;
        /* Убираем черно-белый фильтр с маркера, чтобы он был четким */
        filter: none; 
    }
    /* Маленький треугольник под маркером */
    .map-marker::after {
        content: '';
        position: absolute;
        bottom: -0.416vw;
        left: 50%;
        transform: translateX(-50%);
        border-width: 0.416vw 0.312vw 0 0.312vw;
        border-style: solid;
        border-color: rgba(70, 70, 70, 0.95) transparent transparent transparent;
    }
    
    .marker-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.456vw;
        color: #fff;
        line-height: 1;
        margin-top: -0.104vw;
    }

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


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

    /* Основной блок контактов */
    .footer-contacts {
        position: relative;
        width: 100%;
        padding: 2.34vw 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: 62.4vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2.08vw;
    }

    /* Колонки */
    .fc-col {
        flex: 1;
        display: flex;
    }
    
    .fc-left {
        justify-content: flex-end;
        text-align: right;
        padding-right: 2.6vw;
        border-right: 0.052vw solid rgba(255,255,255,0.2);
        gap: 0.78vw;
    }
    
    .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: 2.6vw;
        gap: 0.78vw;
    }

    /* Тексты в футере */
    .fc-label {
        color: #d0caca;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.832vw;
        font-weight: 400;
        margin-bottom: 0.26vw;
    }
    .fc-main {
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 1.248vw;
        font-weight: 500;
        letter-spacing: 0.052vw;
    }
    .fc-sub {
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.936vw;
        font-weight: 400;
        margin-top: 0.104vw;
    }

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

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

    /* =========================================
       САМЫЙ НИЗ (КОПИРАЙТ И КНОПКИ)
       ========================================= */
    .footer-bottom {
        position: relative;
        background: #fff;
        padding: 0.78vw 2.08vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Roboto', sans-serif;
        font-size: 0.624vw;
        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: 1.04vw;
        display: flex;
        align-items: center;
        padding: 0.312vw 0.936vw;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.728vw;
        gap: 0.78vw;
        z-index: 10;
        box-shadow: 0 0.208vw 0.312vw rgba(0,0,0,0.1);
    }
    .slider-arrow {
        color: #888;
        cursor: pointer;
        font-size: 0.624vw;
        transition: color 0.3s;
    }
    .slider-arrow:hover { color: #fff; }

    /* Кнопка Restart */
    .restart-btn {
        background: #2a2a2a;
        color: #FFF;
        border-radius: 1.04vw;
        padding: 0.312vw 0.78vw;
        display: flex;
        align-items: center;
        gap: 0.416vw;
        font-family: 'Roboto', sans-serif;
        font-size: 0.572vw;
        cursor: pointer;
        transition: background 0.3s;
        border: none;
    }
    .restart-btn:hover { background: #000; }
    .restart-btn svg {
        width: 0.624vw;
        height: 0.624vw;
        fill: #fff;
    }

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

    .map-section {
    position: relative;
    width: 100%;
    max-width: 93.184vw;
    margin: 0 auto;
    height: 23.4vw;
    background: url(mapka.jpg) center / cover no-repeat;
    filter: none;
    width: 93.548vw;
    height: 26.052vw;
    margin-top: 2.3vw;
}

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

.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.364vw;
}

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

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.52vw;
    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: 2.028vw;
    margin-left: 0.3vw;
}

.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.144vw;
    font-weight: 600;
    letter-spacing: 0.0572vw;
    padding: 0.728vw 0.988vw;
    border-top: 0.052vw solid #bdbdbd;
    border-bottom: 0.052vw solid #bdbdbd;
    transition: color 0.3s;
    margin-top: -0.6vw;
    width: 8.6vw;
}

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

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

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

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 93.028vw;
    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: -1.56vw;
    left: -0.624vw;
    font-family: 'Playfair Display', serif;
    font-size: 19.76vw;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    bottom: -4.992vw;
}

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

.apartment-card {
    position: relative;
    width: 23.4vw;
    height: 38.22vw;
    overflow: hidden;
    cursor: pointer;
}

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

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

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

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

.about-buttons {
    display: flex;
    gap: 1.04vw;
    margin-top: 2.6vw;
    margin-bottom: 0.936vw;
}

.about-buttons {
    display: flex;
    gap: 1.248vw;
    margin-top: 2.6vw;
    margin-bottom: 0.936vw;
}

.stats-vertical {
    width: 5.356vw;
    display: flex;
    flex-direction: column;
    margin-top: -0.312vw;
}

.rent-sub {
    color: #A7A197;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.04vw;
    letter-spacing: 0.104vw;
}

.rent-main {
    color: #64615A;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.3vw;
    font-weight: 600;
    letter-spacing: 0.208vw;
    margin-top: 0vw;
    margin-left: 0vw;
    letter-spacing: 0.4628vw;
}

.rent-link {
    color: #888;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    display: flex;
    align-items: center;
    gap: 0.26vw;
    transition: color 0.3s;
    font-weight: 600;
    margin-right: 3.3vw;
    letter-spacing: 0.0156vw;
    gap: 1.82vw;
    height: 1.664vw;
}

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

.s-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    letter-spacing: 0.052vw;
    margin-bottom: -0.104vw;
}

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

.s-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.728vw;
    letter-spacing: 0.052vw;
    margin-bottom: -0.104vw;
}

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

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

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

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

.rent-info {
    flex: 1;
    background: rgba(250, 250, 248, 0.95);
    padding: 1.092vw;
    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: 2.912vw;
    color: #64615A;
    line-height: 0.8;
    color: #64615A;
    text-align: center;
    font-family: Tobias;
    font-size: 4.316vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.2158vw;
}
.feature-text {
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 0.676vw;
    line-height: 1.4;
    color: #2F2C27;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 1.144vw;
    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: 0.936vw 0.728vw;
    text-align: center;
    width: 11.7vw;
    height: 11.7vw;
    align-content: center;
    padding-top: 4vw;
}

.feature-icon svg {
    width: 5.2vw;
    height: 4.004vw;
    fill: none;
    stroke: #64615A;
    stroke-width: 1.5;
}

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

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

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0.936vw 0.728vw;
    text-align: center;
    width: 11.7vw;
    height: 11.96vw;
    align-content: center;
    padding-top: 4vw;
}

.feature-icon svg {
    width: 5.2vw;
    height: 4.004vw;
    fill: none;
    stroke: #64615A;
    stroke-width: 0vw;
    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 2.08vw;
    gap: 18vw;
    margin: auto;
    align-content: center;
    margin-left: -1.9vw;
}

.fc-label {
    color: #d0caca;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    font-weight: 400;
    margin-bottom: 0.26vw;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.092vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.fc-main {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.248vw;
    font-weight: 500;
    letter-spacing: 0.052vw;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.248vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fc-sub {
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.936vw;
    font-weight: 400;
    margin-top: 0.104vw;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.248vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.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.832vw;
    font-weight: 600;
    letter-spacing: 0.208vw;
    padding: 0.676vw 1.508vw;
    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 2.08vw;
    gap: 17.15vw;
    margin: auto;
    align-content: center;
    margin-left: -1.9vw;
}
.fc-icon svg {
    width: 1.3vw;
    height: 1.3vw;
    fill: none;
    stroke: #d0caca;
    stroke-width: 1.5;
}

.footer-contacts {
    position: relative;
    width: 100%;
    padding: 1.56vw 0;
}

.fc-left {
    justify-content: flex-end;
    text-align: right;
    padding-right: 0;
    border-right: 0.052vw 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: 0.156vw;
    margin-right: 1.352vw;
}

.left_foot .fc-label {
    color: #d0caca;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    font-weight: 400;
    margin-bottom: 0.26vw;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.092vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: -0.468vw;
}

.adrs_ss1 
{
     margin-right: 1.5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    align-content: center;
    gap: 0.052vw;   
}
.fc-right {
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
    gap: 0;
    width: 100%;
    border-left: 0.052vw 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: 0.832vw;
    font-weight: 400;
    margin-bottom: 0.26vw;
    color: #B8B1A4;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 1.092vw;
    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: 1.248vw;
    font-weight: 500;
    letter-spacing: 0.052vw;
    color: #FFF;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 1.248vw;
    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: 0.936vw;
    font-weight: 400;
    margin-top: 0.104vw;
    color: #FFF;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 1.248vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 1.5vw;
}

.footer-bottom {
    position: relative;
    background: #fff;
    padding: 0.728vw 0vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.624vw;
    color: #888;
    color: #767676;
    text-align: left;
    font-family: "Barlow Condensed";
    font-size: 0.832vw;
    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: 0vw;
    top: 50%;
    transform: translateY(-50%);
    width: 31.876vw;
    height: 1.56vw;
    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: 3.016vw;
    height: 3.796vw;
    margin-bottom: 1.3vw;
    width: 3.016vw;
    height: 3.796vw;
}

.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: 1.04vw 0.52vw;
    aspect-ratio: 1 / 1;
    width: 11.648vw;
    height: 11.7vw;
}



/* Изолированные стили секции */
.rezydencja-section {
    font-family: "Barlow Condensed", sans-serif;
    background-color: #fff;
    display: flex;
    align-items: stretch;
    max-width: 83.2vw;
    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: 46.748vw;
    height: 38.584vw;
    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: 2.08vw 0 2.08vw 3.64vw;
    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: 1.144vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.286vw;
    text-transform: uppercase;
    margin-bottom: 0.104vw;
}

.rezydencja-section .title {
    color: #64615A;
    font-size: 2.548vw;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 0.637vw;
    text-transform: uppercase;
    margin-bottom: 1.82vw;
}

/* Стили текстового блока */
.rezydencja-section .text-container {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    max-width: 30.16vw;
    margin-bottom: 2.34vw;
}

.rezydencja-section .text-container p {
    margin-bottom: 1.248vw;
}

.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: 10.348vw;
    height: 2.34vw;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    background: #64615A;
    color: #FFF;
    text-align: right;
    font-size: 0.832vw;
    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;
}

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

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


.rezydencja-section .text-container {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    max-width: 38vw;
    margin-bottom: 2.34vw;
    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: 92.3vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.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.936vw;
    font-weight: 500;
    color: #FFF;
    padding-bottom: 0.26vw;
}

.rezydencja-section .content-block {
    flex-grow: 1;
    padding: 2.08vw 0 2.08vw 5.72vw;
    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: 93.028vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Изолированные стили для секции */
.rezydencja-features-banner {
    display: flex;
    align-items: stretch;
    max-width: 83.2vw;
    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: 1.04vw 0.52vw;
    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: 2.912vw;
    font-weight: 400;
    color: #5d5b55;
    line-height: 1;
    margin-bottom: 0.78vw;
}

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

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

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

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




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

.rezydencja-features-banner {
    display: flex;
    align-items: stretch;
    max-width: 93.132vw;
    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: 1.04vw 0.52vw;
    aspect-ratio: 1 / 1;
    width: 11.648vw;
    height: 11.7vw;
}

.rf-col-img-right img {
    width: 46.852vw;
    height: 23.4vw;
}

/* Изолированные стили секции галереи */
.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.156vw;
    /* Тонкая белая линия между фотографиями */
    width: 100%;
    max-width: 83.2vw;
    /* Ограничитель ширины, можно убрать для 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: 0.156vw;
    width: 100%;
    max-width: 93.132vw;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

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

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

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

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

.bryn-text {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    margin-top: 0;
    margin-bottom: 1.56vw;
}

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

.bryn-btn-wrap {
    text-align: right;
    margin-top: 1.04vw;
}

.bryn-btn {
    display: inline-block;
    background-color: #64615A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.624vw 1.3vw;
    font-size: 0.936vw;
    font-weight: 400;
    letter-spacing: 0.104vw;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

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

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

.bryn-feature {
    width: 11.648vw;
    height: 11.7vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1.04vw;
}

/* Реализация фона и прозрачности (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: 3.692vw;
    height: 3.692vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.78vw;
}

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

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

/* Правая колонка с изображением */
.bryn-image-col {
    width: 46.748vw;
    height: 35.1vw;
    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: 93.08vw;
    margin: 0 auto;
    background-color: #FFFFFF;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
}

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

.bryn-text {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    margin-top: 0;
    margin-bottom: 1.56vw;
    text-align: justify;
}

.qas1 {
    position: absolute;
    bottom: 0vw;
    left: 0vw;
    width: 11.7vw;
    height: 11.7vw;
}

.bryn-feature {
    width: 12.064vw;
    height: 11.7vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1.04vw;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .bry-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.456vw;
    flex-shrink: 0;
    margin-top: 0.156vw;
  }

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

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

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

  .bry-socials {
    display: flex;
    gap: 0.78vw;
    padding-left: 2.496vw; /* Выравнивание по тексту */
    margin-top: -0.52vw;
  }

  .bry-socials a {
    color: #64615A;
    font-family: "FontAwesome", sans-serif;
    font-size: 0.936vw;
    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: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.612vw;
    margin: 0 0 1.3vw 0;
  }

  .bry-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.04vw;
    border-bottom: 0.052vw solid #EAEAEA;
    padding-bottom: 0.26vw;
  }

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

  .bry-form-input {
    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;
  }

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

  .bry-checkbox {
    width: 1.04vw;
    height: 1.04vw;
    border: 0.052vw solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    margin-top: 0.104vw;
  }

  .bry-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -0.104vw;
    left: 0.156vw;
    font-size: 0.832vw;
    color: #64615A;
  }

  .bry-checkbox-text {
    color: #000;
    font-size: 0.832vw;
    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: 12.116vw;
    padding: 0.494vw 4.238vw 0.65vw 4.186vw;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.247vw;
    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: 93.08vw;
    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: 3.12vw 0vw 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: 12.116vw;
    padding: 0.494vw 4.238vw 0.65vw 4.186vw;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.247vw;
    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: 0.26vw;
    top: -1.248vw;
    bottom: 0.52vw;
    width: 0.052vw;
    background-color: #EAEAEA;
    height: 14vw;
}

.apartments-section {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 93.132vw;
    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: 1.04vw; /* Зазор між двома апартаментами */
            width: 100%;
            font-family: "Barlow Condensed", sans-serif;
            background-color: transparent; /* Щоб не перекривати фон сторінки */
        }

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

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

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

        /* БЛОК СТАТУС (WOLNY) */
        .apartments-container .status-overlay {
            width: 8.476vw;
            height: 4.992vw;
            background: rgba(100, 97, 90, 0.75);
            backdrop-filter: blur(0.40872vw);
            /* Розміщення у правому верхньому куті */
            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.039vw;
            margin-bottom: 0.26vw;
        }

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

        /* БЛОК АПАРТАМЕНТ № */
        .apartments-container .info-overlay {
            width: 18.2vw;
            height: 4.316vw;
            opacity: 0.9;
            background: #A1998D;
            backdrop-filter: blur(0.104vw);
            /* Розміщення у нижньому правому куті зображення */
            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.656vw; /* Залишок висоти (540 - 412) */
            display: flex;
            justify-content: space-between; /* Опис зліва, посилання справа */
            align-items: flex-start; /* Вирівнювання по верхньому краю */
            padding: 1.04vw 1.56vw;
            box-sizing: border-box;
        }

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

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

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

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

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

        /* ПОСИЛАННЯ ZOBACZ */
        .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.612vw;
        }

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

        .apartments-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0.104vw;
    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: 0.104vw;
    width: 100%;
    font-family: "Barlow Condensed", sans-serif;
    background-color: transparent;
    flex-wrap: wrap;
    row-gap: 1.976vw;
    margin-bottom: 2.184vw;
}

.apartments-container .apt-details {
    width: 100%;
    height: 6.656vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.144vw 0.884vw;
    box-sizing: border-box;
    padding-left: 3.276vw;
}

/* Головний контейнер секції */
.apt-hero-section {
    width: 100%;
    max-width: 93.548vw;
    height: 23.92vw;
    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: 13.104vw;
}

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

.apt-hero-status-label {
    color: #FFF;
    text-align: center;
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.0442vw;
    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: 0.455vw;
}

/* Кнопка UMÓW SPOTKANIE */
.apt-hero-btn {
    width: 13.104vw;
    height: 2.34vw;
    background: #64615A;
    display: flex;
    justify-content: center;
    /* Центрування по горизонталі */
    align-items: center;
    /* Центрування по вертикалі */
    color: #FFF;
    text-align: right;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.208vw;
    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: 27.768vw;
    height: 6.5vw;
    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;
}

.apt-hero-subtitle {
    color: #B8B1A4;
    text-align: center;
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.286vw;
    margin-bottom: 0.26vw;
}

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

.apt-hero-section {
    width: 100%;
    max-width: 93.236vw;
    height: 23.92vw;
    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: 27.768vw;
    height: 6.5vw;
    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-det-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2.08vw;
    width: 100%;
    max-width: 91vw;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    padding: 2.08vw 1.04vw;
}

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

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

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

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

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

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

.apt-det-stat-block {
    width: 10.14vw;
    height: 6.864vw;
    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: 0.884vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.0442vw;
    text-transform: uppercase;
    margin-bottom: 0.52vw;
}

.apt-det-stat-val {
    color: #767676;
    text-align: center;
    font-size: 1.872vw;
    font-style: normal;
    font-weight: 300;
    /* 275 у веб-шрифтах зазвичай зводиться до 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-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.612vw;
    text-align: justify;
}

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

.apt-det-text-content li {
    margin-bottom: 0.26vw;
}

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

/* Кнопка UMÓW SPOTKANIE */
.apt-det-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13.104vw;
    height: 2.34vw;
    background: #64615A;
    color: #FFF;
    text-align: center;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.208vw;
    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: 5.2vw;
    width: 100%;
    max-width: 93.392vw;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    padding: 2.028vw 0vw;
}
.apt-det-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 46.8vw;
    flex-wrap: wrap;
    row-gap: 0.104vw;
}

.apartments-section--mod .apartment-card {
    position: relative;
    width: 23.4vw;
    height: 21.372vw;
    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: 93.132vw;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 0vw;
    margin-bottom: 2vw;
    gap: 0.104vw;
}


  /* 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(0.26vw);
    -webkit-backdrop-filter: blur(0.26vw);
    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: 81.12vw; /* Szerokość obrazka (960) + obszar formularza (~600) */
    max-height: 49.192vw;
    height: 95vh;
    position: relative;
    box-shadow: 0vw 0.52vw 2.08vw rgba(0, 0, 0, 0.08);
  }

  /* Przycisk zamknięcia */
  .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-btn:hover {
    background: #8e887d;
  }

  .popuap-close-icon {
    width: 0.832104vw;
    height: 0.936364vw;
    flex-shrink: 0;
  }

  /* Lewa kolumna (Zdjęcie) */
  .popuap-left {
    width: 49.92vw;
    height: 100%; /* Dopasowuje się do 49.192vw 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: 3.12vw 4.16vw;
    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: 1.248vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.312vw;
    margin-bottom: 0.26vw;
  }

  .popuap-title {
    color: #64615A;
    font-size: 1.508vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.377vw;
    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.612vw;
    margin: 0 0 2.08vw 0;
  }

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

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

  .popuap-label {
    color: #767676;
    font-size: 0.884vw;
    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; /* 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: 0.26vw;
    bottom: 0.416vw;
    color: #767676;
    font-size: 0.728vw;
    pointer-events: none;
    transform: scaleX(1.5) scaleY(0.8);
  }

  /* Checkbox */
  .popuap-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.78vw;
    margin-top: 1.04vw;
    margin-bottom: 2.08vw;
  }

  .popuap-checkbox {
    width: 1.04vw;
    height: 1.04vw;
    border: 0.052vw solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    top: 0.104vw;
  }

  .popuap-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -0.104vw;
    left: 0.156vw;
    font-size: 0.832vw;
    color: #64615A;
  }

  .popuap-check-label {
    color: #000;
    font-size: 0.832vw;
    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: 13.104vw;
    padding: 0.728vw 0;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.208vw;
    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: 0vw 0.52vw 2.08vw rgba(0, 0, 0, 0.08);
}

.popuap-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3.12vw 4.16vw;
    box-sizing: border-box;
    overflow-y: auto;
    position: relative;
    padding-left: 6.292vw;
    padding-top: 5.928vw;
    padding-right: 11vw;
}

.popuap-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.78vw;
    margin-top: 0.364vw;
    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: -24.96vw; /* Спрятана за правым краем */
    width: 23.348vw;
    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: -0.26vw 0 1.04vw 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: 2.34vw;
    height: 2.34vw;
    padding: 0.728vw 2.132vw 0.676vw 2.08vw; /* По вашим стилям */
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    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: 1.132976vw;
    height: 0.522028vw;
    flex-shrink: 0;
}

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

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

.sp-title {
    color: #64615A;
    font-size: 1.508vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.377vw;
    margin: 0 0 2.6vw 0;
}

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

.sp-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.56vw;
    border-bottom: 0.052vw solid rgba(118, 118, 118, 0.3);
    padding-bottom: 0.26vw;
    position: relative;
}

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

.sp-input,
.sp-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;
}

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

/* Чекбокс */
.sp-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.78vw;
    margin-top: 0.52vw;
    margin-bottom: 2.08vw;
}

.sp-checkbox {
    width: 1.04vw;
    height: 1.04vw;
    border: 0.052vw solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    top: 0.104vw;
}

.sp-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -0.104vw;
    left: 0.156vw;
    font-size: 0.832vw;
    color: #64615A;
}

.sp-check-label {
    color: rgba(0, 0, 0, 0.5); /* opacity 0.5 */
    font-size: 0.832vw;
    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: 12.116vw;
    padding: 0.494vw 0 0.65vw 0;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.247vw;
    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: 2.34vw;
    height: 2.34vw;
    padding: 0.728vw 1.144vw 0.676vw 1.144vw;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    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: 93.08vw;
    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: 3.12vw 0vw 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: 0.286vw;
    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: 0.052vw 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: 1.612vw;
    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: 0.208vw;
    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: 0.104vw;
    position: relative;
    z-index: 99;
}

.apartments-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0.104vw;
    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(0.40872vw);
    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(0.104vw);
    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(0.104vw);
    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: 5.2vw;
    width: 100%;
    max-width: 93.54vw;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    padding: 2.03vw 0vw;
    margin-bottom: 2.5vw;
}

.top-bar {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0vw 0vw;
    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: 0vw;
    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 0vw;
    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: 0.0572vw;
    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(0.4836vw);
    -webkit-backdrop-filter: blur(0.4836vw);
    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.0442vw;
    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: 0.455vw;
}
.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 0.52vw 1.04vw 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: 0.052vw 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 0vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.624vw;
    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: 0.104vw;
    position: relative;
    z-index: 99;
}

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




@media (max-width:991px)
{
.availability-wrapper {
    position: relative;
    top: 0;
    right: 0;
    width: 94%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    left: 50%;
    transform: translate(-50%);
}

.availability-box {
    width: 100%;
    height: 7.748vw;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(0.4836vw);
    -webkit-backdrop-filter: blur(0.4836vw);
    display: flex;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(9.300000190734863px);
    height: 94px;
}
.label-green {
    color: #BAD9AF;
    margin-right: 0;
}
.stat-label {
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.884vw;
    font-weight: 500;
    letter-spacing: 0.0442vw;
    margin-bottom: -0.26vw;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.85px;
}
.stat-number {
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3.536vw;
    font-weight: 500;
    letter-spacing: 0.884vw;
    margin-right: -0.884vw;
    line-height: 1.2;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 68px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 17px;
}
.stat-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 8px;
}
.label-white {
    color: #FFF;
    margin-right: 0;
    opacity: 0.6;
}
.stat-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 10px;
}

.stat-number.number-grey
{
 color: #CCC7BF;
text-align: center;
font-family: "Barlow Condensed";
font-size: 68px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 17px;   
}

.stat-item.left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0vw;
    height: 100%;
    border-right: 2px dashed rgba(255, 255, 255, 0.3);
}

.cta-btn {
    width: 13.104vw;
    height: 2.34vw;
    background: #64615A;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    font-weight: 600;
    letter-spacing: 0.208vw;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    width: 100%;
    height: 45px;
    padding-right: 0;
    align-items: center;
    gap: 37px;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    justify-content: center;
    align-content: center;
}

    .hero-title-container {
        text-align: center;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 318px !important;
    }
.about-description {
    color: #666;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78vw;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 2.08vw;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    width: 80%;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: auto;
    text-align: left;
    margin-top: 39px;
}
.btn-light, .btn-dark {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.34vw;
    padding: 0 1.82vw;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.832vw;
    font-weight: 600;
    letter-spacing: 0.208vw;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    width: 10.348vw;
    height: 2.34vw;
    padding: 0.728vw 1.664vw 0.676vw 2.08vw;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.208vw;
    display: flex;
    width: 199px;
    height: 45px;
    padding: 0;
    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;
}
.about-buttons {
    display: flex;
    gap: 19px;
    margin-top: 37px;
    margin-bottom: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.about-buttons {
    display: flex;
    gap: 19px;
    margin-top: 41px;
    margin-bottom: 49px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.apartments-section-modds {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 94%;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 0vw;
    margin-bottom: 0;
    gap: 10px;
    position: relative;
    z-index: 99;
    flex-direction: column;
}
.apartment-card {
    position: relative;
    width: 23.4vw;
    height: 38.22vw;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 292px;
}

.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: 0px;
    padding-bottom: 0px;
}
.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: 0px;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 4.25px;
}

.apartment-bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(0.4836vw);
    -webkit-backdrop-filter: blur(0.4836vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    opacity: 0.9;
    background: #A1998D;
    backdrop-filter: blur(1.6071428060531616px);
    height: 91px;
}

.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;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 5.75px;
    margin-right: 36px;
}
    .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: 88%;
        margin-top: 26px;
        color: #FFF;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 4.25px;
    }
    .about-bg-container {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-section .about-subtitle 
{
   color: #B8B1A4;
font-family: "Barlow Condensed";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
font-variant: all-small-caps;
letter-spacing: 0.9px; 
opacity: 0.9;
}

.about-section .about-title {
color: #64615A;
font-family: "Barlow Condensed";
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 5.5px;
}

.about-section  .stats-vertical {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 0vw;
}

.about-section  .stats-vertical {
    width: 100%;
    display: grid;
    flex-direction: column;
    margin-top: 0vw;
    grid-template-columns: 1fr 1fr;
}

.about-section  .about-text-col {
    width: 100%;
    padding-right: 10px;
}

.about-section  .s-label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.728vw;
    letter-spacing: 0.052vw;
    margin-bottom: -0.104vw;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.75px;
    margin-top: 7px;
}

.about-section  .s-number {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.86vw;
    font-weight: 500;
    line-height: 1;
    margin-top: 0.364vw;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 57px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 14.25px;
}
.about-section  .stat-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    align-content: center;
    text-align: center;
}


    .about-section .s-number {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 2.86vw;
        font-weight: 500;
        line-height: 1;
        margin-top: 0.364vw;
        color: #BAD9AF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 57px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.25px;
    }

.about-section .s-number {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 2.86vw;
        font-weight: 500;
        line-height: 1;
        margin-top: -7px;
        color: #BAD9AF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 57px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.25px;
    }

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

.about-top-row {
    display: flex;
    width: 100%;
    margin-bottom: 22px;
    margin-top: -10px;
}

.about-top-row {
    display: flex;
    width: 85%;
    margin: auto;
    margin-bottom: 22px;
    margin-top: -10px;
}

.about-section .rent-desc {
    margin-left: 25px;
    margin-top: 31px;
    width: 84%;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.rent-link {
    color: #888;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    display: flex;
    align-items: center;
    gap: 0.26vw;
    transition: color 0.3s;
    font-weight: 600;
    margin-right: 0;
    letter-spacing: 0.0156vw;
    gap: 10px;
    height: 30px;
    color: #676767;
    text-align: justify;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    margin-left: 26px;
    margin-top: 24px;
}

.flex_numbers_s 
{
      display: flex;
    align-items: center;
    justify-content: center;
    height: 393px;
    width:100%;  
}

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

.bottom-features {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 99;
}
.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.912vw;
    color: #64615A;
    line-height: 0.8;
    color: #64615A;
    text-align: center;
    font-family: Tobias;
    font-size: 4.316vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.2158vw;
    color: #64615A;
    text-align: center;
    font-family: Tobias;
    font-size: 62.896px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 3.145px;
}


.feature-icon {
    height: 2.6vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0.78vw;
    color: #64615A;
    width: 56.076px;
    height: 55.318px;
}
.feature-text {
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-size: 0.676vw;
    line-height: 1.4;
    color: #2F2C27;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #2F2C27;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 16.671px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bottom-features {
    display: grid;
    width: 100%;
    position: relative;
    z-index: 99;
    grid-template-columns: 1fr 1fr;
}

.feature-icon svg {
    width: 5.2vw;
    height: 4.004vw;
    fill: none;
    stroke: #64615A;
    stroke-width: 0vw;
    opacity: 0.9;
    width: 56.076px;
    height: 55.318px;
    margin-bottom: 8px;
}

    .flex_numbers_s {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 393px;
        width: 100%;
        background-size: cover;
    }

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

    .bottom-features {
    display: grid;
    width: 100%;
    position: relative;
    z-index: 99;
    grid-template-columns: 1fr 1fr;
    margin-top: -170px;
}

.feature-box:nth-child(3) {
    background: rgba(245, 245, 242, 0.65);
    background: #F0F0F0;
}

.feature-box:nth-child(4) {
    background: rgba(245, 245, 242, 0.50);
    background: #FFF;
}

.map-section {
    position: relative;
    max-width: 93.33vw;
    margin: 0 auto;
    filter: none;
    width: 93.7vw;
    height: 26.09vw;
    margin-top: 0.8vw;
    height: 546px;
}

    .map-section {
        position: relative;
        max-width: 94%;
        margin: 0 auto;
        filter: none;
        width: 94%;
        margin-top: 10px;
        height: 546px;
    }
    .about-section {
        position: relative;
        width: 100%;
        max-width: 94%;
        margin: 0 auto;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        overflow: hidden;
        height: auto;
        margin-top: 19px;
    }
    .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 0.52vw 1.04vw rgba(0, 0, 0, 0.2);
    z-index: 2;
    cursor: pointer;
    filter: none;
    width: 68px;
    height: 68px;
    background-color: #64615A;
    border-radius: 68px;
    object-fit: contain;
}

.symbols43 
{
      width: 43px;
    height: 43px;
    background-color: #64615A;
    object-fit: contain;  
}

.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;
    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: 49px;
    margin-bottom: 29px;
}


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

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

.sp-content {
    padding: 23px;
    display: flex;
    flex-direction: column;
}
.sp-subtitle {
    color: #B8B1A4;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.312vw;
    margin-bottom: 5px;
}
.sp-title {
    color: #64615A;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.377vw;
    margin: 0 0 15px 0;
    margin-top: -5px;
}
.sp-label {
    color: rgba(118, 118, 118, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 7px;
}

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

.sp-input, .sp-select {
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 0;
    appearance: none;
}
.sp-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 18px;
}
.sp-checkbox {
    width: 22px;
    height: 22px;
    border: 1px solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    top: 0;
}

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

.sp-submit-btn {
    display: flex;
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.247vw;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}
.sp-panel.sp-panel.is-open {
width:100% !important;
}

    .route-btn {
        bottom: 0;
        right: 0;
    }



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

.rezydencja-section .text-container {
        max-width: 84%;
        margin: auto;
        margin-top: 20px;
    }
.rezydencja-features-banner {
    display: flex;
    align-items: center;
    max-width: 94%;
    width: 100%;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 5px;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.rezydencja-features-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 23.44vw;
    height: 23.44vw;
    width: 100%;
    height: 340px;
}

.rf-col-img-left {
    flex: 1;
    display: flex;
    width: 100%;
}

.rf-col-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 170.379px;
}

.rf-number {
    font-family: "Playfair Display", serif;
    font-size: 5vw;
    font-weight: 400;
    color: #5d5b55;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 169.621px;
    height: 170.379px;
    color: #64615A;
    text-align: center;
    font-family: Tobias;
    font-size: 62.851px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 3.143px;
}

.rf-text {
    font-size: 1.1vw;
    color: #4a4a4a;
    line-height: 1.2;
    font-weight: 400;
    color: #2F2C27;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 16.659px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.rf-icon {
    height: 5vw;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: 56.036px;
    height: 55.278px;
}
.rf-icon svg {
    width: 5vw;
    height: 4vw;
    stroke: #5d5b55;
    fill: none;
    stroke-width: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 56.036px;
    height: 55.278px;
    margin-bottom: 25px;
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 170.379px;
    align-content: center;
}
.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 119.379px;
    align-content: center;
}

.rf-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 119.379px;
    align-content: center;
    height: 170.379px;
}


.rf-number {
    height: auto;
}

.rf-grid-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        padding: 0;
        aspect-ratio: 1 / 1;
        width: 100%;
        height: 119.379px;
        align-content: center;
        height: 170.379px;
        padding-top: 42px;
    }

    .rf-number {
        height: auto;
        margin-top: -20px;
        margin-bottom: 2px;
    }

.rezydencja-gallery-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    max-width: 94%;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    margin-top: 7px;
    margin-bottom: 7px;
}

    .mobile-nav {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

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

.footer_mobile {
        margin: auto;
        padding-bottom: 50px;
        width: 94%;
        margin-top: 10px;
    }

.bryn-image-col {
    width: 46.61vw;
    height: 35.16vw;
    flex-shrink: 0;
    position: relative;
    width: 100%;
    height: 548px;
}

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

.bryn-feature {
    width: 11.67vw;
    height: 11.74vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    padding-top: 0;
    box-sizing: border-box;
    margin-left: 0;
    width: 137px;
    height: 137px;
    align-content: center;
}

.bryn-features-col {
    display: flex;
    flex-direction: column;
    width: 12.08vw;
    flex-shrink: 0;
    position: absolute;
    width: 137px;
    z-index: 9;
}
.bryn-feature:nth-child(1) {
    background-color: #ffffff00;
}
.bryn-feature {
    width: 11.67vw;
    height: 11.74vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    padding-top: 0;
    box-sizing: border-box;
    margin-left: 0;
    width: 137px;
    height: 137px;
    align-content: center;
    background: #fafafab0;
}
.bryn-feature:nth-child(2) {
    background-color: #f4f4f4bd;
}

.bryn-feature:nth-child(3) {
    background-color: #eaeaea8f;
}
.bryn-icon {
    width: 3.692vw;
    height: 3.692vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    width: 43.424px;
    height: 43.424px;
}
.bryn-title {
    color: #2F2C27;
    text-align: center;
    font-size: 1.144vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    color: #2F2C27;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.qas1 {
    position: absolute;
    bottom: 0vw;
    left: 0vw;
    width: 11.7vw;
    height: 11.7vw;
    width: 137px;
    height: 137px;
}

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


.bryn-text-col {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 0;
}

.bryn-text-col {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 0;
    width: 78%;
    margin: auto;
    margin-top: 39px;
}

.bryn-btn {
    display: inline-block;
    background-color: #64615A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0;
    font-size: 0.94vw;
    font-weight: 400;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: flex;
    width: 199px;
    height: 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-top: 33px;
    margin-bottom: 35px;
}

.bryn-btn {
    display: inline-block;
    background-color: #64615A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0;
    font-size: 0.94vw;
    font-weight: 400;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: flex;
    width: 199px;
    height: 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-top: 33px;
    margin-bottom: 35px;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
}
.bryn-text {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    margin-top: 0;
    margin-bottom: 1.56vw;
    text-align: left;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

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

.popuap-left 
{
    display:none;
}

.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;
    color: #B8B1A4;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-variant: all-small-caps;
    letter-spacing: 0.9px;
}
.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;
    color: #64615A;
    font-family: "Barlow Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 5.5px;
}

.popuap-desc {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.61vw;
    margin: 0 0 2.08vw 0;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.popuap-label {
    color: #767676;
    font-size: 0.89vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.26vw;
    color: #767676;
    font-family: "Barlow Condensed";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.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;
    color: #000;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 8px;
    margin-top: 9px;
}

.popuap-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 17px;
    border-bottom: 0.052vw solid #EAEAEA;
    padding-bottom: 3px;
    position: relative;
}

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

.popuap-check-label {
    color: #000;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    color: #000;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

.popuap-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.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;
    display: flex;
    width: 233px;
    height: 45px;
    padding: 0;
    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;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 24px;
}
.popuap-left {
        display: block;
    }

    .popuap-inner {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100vh;
    position: relative;
    box-shadow: 0vw 0.52vw 2.08vw rgba(0, 0, 0, 0.08);
}

.popuap-inner {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    position: relative;
    box-shadow: 0vw 0.52vw 2.08vw rgba(0, 0, 0, 0.08);
}

.popuap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    height: 267px;
}
.popuap-left {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.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;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #111;
    font-size: 20px;
}

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

.popuap-close-btn {
    position: absolute;
    top: 245px;
    right: 25px;
    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;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #111;


}

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


.bry-image-col {
    width: 100%;
    height: 31vw;
    flex-shrink: 0;
    height: 267px;
}

.bry-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 43px;
}

.bry-subtitle {
    color: #B8B1A4;
    font-size: 1.14vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.286vw;
    text-transform: uppercase;
    margin-bottom: 0.2vw;
    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;
}

.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;
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 8px;
}

.bry-info-label {
    color: #676767;
    text-align: left;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.612vw;
    margin: 0;
    color: #676767;
    text-align: justify;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
}

.bry-info-value {
    color: #676767;
    text-align: left;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.612vw;
    margin: 0;
    color: #676767;
    text-align: justify;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}

.bry-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 12px;
    height: 54px;
}

.bry-info-label {
    color: #676767;
    text-align: left;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.612vw;
    margin: 0;
    color: #676767;
    text-align: justify;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
}

.bry-info-text {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
    margin-bottom: 0;
}

.bry-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 12px;
    height: 54px;
    margin-right: 6px;
}

.bry-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 22px;
    height: 54px;
    margin-right: 6px;
}
.bry-content-col {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    margin-top: 43px;
}

.bry-info-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    position: relative;
    padding-left: 7px;
    justify-content: flex-start;
    margin-top: 6px;
    margin-left: -6px;
}

.bry-socials {
    display: flex;
    gap: 10px;
    padding-left: 0;
    margin-top: 0vw;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-top: 17px;
}

.bry-socials a {
    color: #64615A;
    font-family: "FontAwesome", sans-serif;
    font-size: 23px;
}

.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;
    color: #676767;
    text-align: justify;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    text-align: center;
}

.bry-form-label {
    color: #767676;
    font-size: 0.884vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    margin-bottom: 10px;
    color: #767676;
    font-family: "Barlow Condensed";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.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;
    color: #000;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}

.bry-checkbox {
    width: 1.04vw;
    height: 1.04vw;
    border: 0.052vw solid #767676;
    background: #FFF;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    margin-top: 0;
    width: 20px;
    height: 20px;
}
.bry-checkbox-text {
    color: #000;
    font-size: 0.832vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
    margin: 0;
    color: #000;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -4px;
    margin-left: 8px;
}
.bry-checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.bry-socials {
        display: flex;
        gap: 10px;
        padding-left: 0;
        margin-top: 0vw;
        align-items: center;
        justify-content: center;
        align-content: center;
        margin-top: 17px;
        margin-bottom: 33px;
    }

.bry-submit-btn {
    display: flex;
    width: 12.116vw;
    padding: 0.494vw 4.238vw 0.65vw 4.186vw;
    justify-content: center;
    align-items: center;
    background: #A7A197;
    color: #FFF;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: small-caps;
    letter-spacing: 0.247vw;
    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;
    display: inline-flex;
    padding: 9.5px 45.5px 12.5px 44.5px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-variant: all-small-caps;
    letter-spacing: 4.75px;
    background: #A7A197;
    width: 161px;
}

.bry-submit-btn {
        display: flex;
        width: 12.116vw;
        padding: 0.494vw 4.238vw 0.65vw 4.186vw;
        justify-content: center;
        align-items: center;
        background: #A7A197;
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.988vw;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        font-variant: small-caps;
        letter-spacing: 0.247vw;
        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;
        display: inline-flex;
        padding: 0;
        justify-content: center;
        align-items: center;
        color: #FFF;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 23px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        font-variant: all-small-caps;
        letter-spacing: 4.75px;
        background: #A7A197;
        width: 161px;
        display: flex;
        width: 199px;
        height: 45px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: #64615A;
        padding-top: 0px;
        padding-bottom: 5px;
        margin-top: 15px;
        margin-bottom: 25px;
    }
.bry-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -24px;
    position: relative;
    z-index: 9;
    margin-left: 0;
    width: 88%;
    margin: auto;
}

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

.apartments-container .apt-card {
    width: 93%;
    height: auto;
    background: #FFF;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.apartments-container .apt-image-wrapper {
    width: 100%;
    height: 23.46vw;
    position: relative;
    overflow: hidden;
    height: 156px;
}
.apartments-container .status-overlay {
    width: 8.49vw;
    height: 5vw;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(0.40872vw);
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110.365px;
    height: 65px;
    left: 0px;
}

.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;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.65px;
}

.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;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 4.5px;
}

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

.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;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
}

.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;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
}

.apartments-container .desc-text {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.41vw;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.apartments-container .desc-title {
    color: #676767;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.41vw;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.apartments-container .apt-details {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px;
    box-sizing: border-box;
    padding-left: 3.28vw;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.apartments-container .apt-details {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 19px;
    box-sizing: border-box;
    padding-left: 3.28vw;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    flex-direction: column;
    align-content: flex-start;
}

.apartments-container .apt-description {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.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: 10px;
    margin-top: -0.5vw;
    color: #676767;
    text-align: justify;
    font-family: "Barlow Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
}

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

.zobacz-link 
{
  margin-top: 13px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    margin-left: auto;  
}

.arrow-svg 
{
width: 21.787px !important;
    height: 10.039px !important;    
}

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

.apt-hero-panel {
    position: absolute;
    top: auto;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    bottom: 0px;
}

.apt-hero-status {
    width: 100%;
    height: auto;
}

.apt-hero-title-box {
    top: auto;
    bottom: auto;
    height: auto;
    width: 0px;
    transform: none;
}

.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.0442vw;
    margin-bottom: 6px;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.65px;
}

.apt-hero-status-value {
    color: #BAD9AF;
    text-align: center;
    font-size: 1.82vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.455vw;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 6.25px;
}

.apt-hero-status {
    width: 100%;
    height: auto;
    background: rgba(100, 97, 90, 0.75);
    backdrop-filter: blur(0.4836vw);
    -webkit-backdrop-filter: blur(0.4836vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.apt-hero-status-label {
    margin-bottom: 0px;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.65px;
}

.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;
    width: 100%;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
    display: flex;
    width: 100%;
    height: 45px;
    padding-right: 0;
    align-items: center;
    gap: 37px;
}

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

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

    .apt-hero-title-box {
        top: auto;
        bottom: auto;
        height: auto;
        width: 100%;
        transform: none;
        position: relative;
    }

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

.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;
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 32px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    letter-spacing: 8px;
}

.apt-hero-title-box {
        top: auto;
        bottom: auto;
        height: auto;
        width: 100%;
        transform: none;
        position: relative;
        transform: none;
        left: 0px;
        margin-top: 22px;
        margin-bottom: 22px;
    }

.apt-det-main-img {
    width: 100%;
    height: 34.27vw;
    object-fit: cover;
    display: block;
    height: 248px;
}
.apt-det-stats-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 10px;
}
.apt-det-stats-row {
        display: flex;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-bottom: 10px;
    }
    .apt-det-stats-row {
        display: grid;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-bottom: 10px;
        grid-template-columns: 1fr 1fr;
    }
.apt-det-stat-block {
    width: 100%;
    height: 6.88vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 89px;
}

.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;
    color: #838383;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.7px;
}

.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;
    color: #767676;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 30px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    text-transform: lowercase;
}

    .apt-det-stats-row {
        display: grid;
        flex-direction: row;
        width: 93%;
        margin: auto;
        margin-bottom: 0px;
        grid-template-columns: 1fr 1fr;
    }
        .apt-det-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        max-width: 93%;
        margin: 0 auto;
        font-family: "Barlow Condensed", sans-serif;
        box-sizing: border-box;
        padding: 0;
        margin-bottom: 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: left;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.apt-det-heading {
    color: #676767;
    text-align: justify;
    font-size: 1.04vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.61vw;
    margin: 0;
    color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.apt-det-right {
    display: flex;
    flex-direction: column;
    width: 85%;
    flex-shrink: 0;
    margin: auto;
    margin-top: 31px;
}

.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;
    width: 252px;
    height: 45px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 28px;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 4px;
}

.apartments-section--mod .apartment-card {
    position: relative;
    width: 23.44vw;
    height: 21.41vw;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 60px;
    text-align: center;
}

.apartments-section.apartments-section--mod     .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;
        width: 88%;
        margin-top: 26px;
        color: #FFF;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 4.25px;
        text-align: center;
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 14.716px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 3.679px;
    }

.apartments-section.apartments-section--mod .apartment-title {
        color: #FFF;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 1.51vw;
        font-weight: 600;
        letter-spacing: 0.38vw;
        margin-top: 0;
        width: 100%;
        text-align: right;
        margin-right: 4.5vw;
        color: #FFF;
        text-align: right;
        font-family: "Barlow Condensed";
        font-size: 23px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 5.75px;
        margin-right: 0;
        color: #FFF;
        text-align: center;
        font-family: "Barlow Condensed";
        font-size: 19.909px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 4.977px;
    }

    .apartments-section.apartments-section--mod .apartment-subtitle {
   
        margin-top: 34px;
    }

    .apartment-bottom-info_pj1 {
        opacity: 1 !important;
        backdrop-filter: none  !important;
        height: 91px !important;
        background: #A1998D !important;
    }

        .apartment-bottom-info_pj2 {
        opacity: 1 !important;
        backdrop-filter: none !important;
        height: 91px !important;
        background: #8E8678 !important;
    }

        .apartment-bottom-info_pj3 {
        opacity: 1 !important;
        backdrop-filter: none !important;
        height: 91px !important;
        background: #79756D !important;
    }

        .apartment-bottom-info_pj4 {
        opacity: 1 !important;
        backdrop-filter: none !important;
        height: 91px !important;
        background: #6B665F !important;
    }
    .apartments-section {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 94%;
        margin: 0 auto;
        background-color: #fff;
        margin-top: 0;
        margin-bottom: 0;
        gap: 3px;
        position: relative;
        z-index: 99;
        flex-direction: column;
    }

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

.apt-det-gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 94%;
    flex-wrap: wrap;
    row-gap: 0;
    margin: auto;
    margin-bottom: 10px;
    gap: 2px;
}

.apt-det-gallery {
    display: grid;
    flex-direction: row;
    justify-content: space-between;
    width: 94%;
    flex-wrap: wrap;
    row-gap: 0;
    margin: auto;
    margin-bottom: 10px;
    gap: 2px;
    grid-template-columns: 1fr 1fr;
}

.apt-det-heading 
{
      color: #676767;
    font-family: "Barlow Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;  
}

}

@media (min-width:991px)
{
    .apartment-card:hover .apartment-bottom-info 
    {
opacity:0;
    }
    .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: 6.9vw;
    padding-bottom: 1.76vw;
}
.hover-desc {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.196vw;
    font-weight: 400;
    max-width: 17.9vw;
    line-height: 1.2;
    margin-top: 0.3vw;
    height: 5vw;
    margin-bottom: -0.88vw;
}
.hover-number {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 5.096vw;
    font-weight: 500;
    letter-spacing: 1.274vw;
    margin-right: -1.274vw;
    line-height: 1;
    margin-top: 1vw;
}
}


.apt-det-text-content p, .apt-det-text-content ul {
    text-align: left !important;
    list-style: disc !important;
}

@media (min-width:991px)
{
    .apartments-container .apt-description p {

    font-weight: 400;
}
.apartments-container .apartament-label {
    text-align: center;
    font-size: 1.56vw;
    margin-right: 0;
}

}

.bry-form-label {
    color: #000000;
}


@media (min-width:991px)
{
    .map-section-modds-kontakt {
    margin-top: 0.8vw;
}

.text-container-modss
{
 margin-top: -1vw !important;   
}

    .rezydencja-gallery-section-mods {
        margin-top: 0.5vw;
        margin-bottom: 2.6vw;
    }






.main-header-fixed {
    background: #fff;
    position: fixed;
    height: 4.71vw;
    z-index: 99999;
    width: 94%;
    left: 50%;
    transform: translate(-50%);
    top: 1.2vw;
    padding-top: 1.6vw;
    box-shadow: 1px 7px 11px 0px #00000017;
}


.logo-fixed {
    width: 9.43vw;
    height: 8.75vw;
    aspect-ratio: 181 / 168;
    margin-top: -6.6vw;
    object-fit: cover;
    object-position: bottom;
}

.top-bar-fixed {
    background-color: #ffffff;
    max-width: 94%;
    position: fixed;
    width: 100%;
    left: 50%;
    transform: translate(-50%);
    top: 0;
    z-index: 9999999;
}


.top-bar {
    max-width: 93.4vw !important;
}




.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15vw;
    font-weight: 600;
    letter-spacing: 0.0572vw;
    padding: 0.73vw 0.99vw;
    
    /* Убираем стандартные бордеры, так как теперь их делают псевдоэлементы */
    border-top: 0.05vw solid #bdbdbd;
    border-bottom: 0.05vw solid #bdbdbd;
    
    /* Важно: relative нужен, чтобы линии позиционировались относительно ссылки */
    position: relative; 
    display: inline-block; /* или block, чтобы ширина и отступы работали корректно */
    
    margin-top: -0.6vw;
    width: 8.6vw;
    
    /* Добавляем плавность для цвета текста */
    transition: color 0.3s ease;
}

/* --- ВЕРХНЯЯ ЛИНИЯ (эффект заполнения: Справа -> Налево) --- */
.nav-menu a::before {
    content: '';
    position: absolute;
    top: -0.05vw; /* перекрывает родной серый бордер */
    right: 0;     /* прижимаем к правому краю, чтобы анимация шла влево */
    width: 0;     /* изначально линия не видна */
    height: 0.05vw;
    background-color: #ffffff; /* белый цвет при ховере */
    transition: width 0.4s ease; /* скорость «загрузки» линии */
}

/* --- НИЖНЯЯ ЛИНИЯ (эффект заполнения: Слева -> Направо) --- */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -0.05vw; /* перекрывает родной серый бордер */
    left: 0;        /* прижимаем к левому краю, чтобы анимация шла вправо */
    width: 0;       /* изначально линия не видна */
    height: 0.05vw;
    background-color: #ffffff; /* белый цвет при ховере */
    transition: width 0.4s ease;
}

/* --- ЭФФЕКТ ПРИ НАВЕДЕНИИ (HOVER) --- */
.nav-menu a:hover {
    color: #B8B1A4; /* меняем цвет текста */
}

/* При ховере увеличиваем ширину линий до 100% */
.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover::after {
    width: 100%;
}



/* --- БАЗОВЫЕ СТИЛИ ССЫЛОК MENU --- */
.nav-menu a {
    color: #64615A;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15vw;
    font-weight: 600;
    letter-spacing: 0.0572vw;
    padding: 0.73vw 0.99vw;
    
    border-top: 0.05vw solid #bdbdbd;
    border-bottom: 0.05vw solid #bdbdbd;
    
    position: relative; 
    display: inline-block;
    margin-top: -0.6vw;
    width: 8.6vw;
    transition: color 0.3s ease;
}

/* --- ВЕРХНЯЯ ЛИНИЯ (Справа -> Налево) --- */
.nav-menu a::before {
    content: '';
    position: absolute;
    top: -0.05vw;
    right: 0;
    width: 0;
    height: 0.05vw;
    background-color: #ffffff;
    transition: width 0.4s ease;
}

/* --- НИЖНЯЯ ЛИНИЯ (Слева -> Направо) --- */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -0.05vw;
    left: 0;
    width: 0;
    height: 0.05vw;
    background-color: #ffffff;
    transition: width 0.4s ease;
}

/* --- СОСТОЯНИЕ HOVER + АКТИВНАЯ СТРАНИЦА --- */

/* Меняем цвет текста при ховере И у ссылки с классом .active */
.nav-menu a:hover,
.nav-menu a.active {
    color: #B8B1A4; 
}

/* Запускаем анимацию линий при ховере И держим её на 100% для .active */
.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.map-marker {
    position: absolute;
    top: 42%;
    left: 48%;
}




/* Контейнер для картинки (окошко) */
.bry-image-col {
    overflow: hidden; /* Прячем всё, что выходит за пределы блока при увеличении */
    position: relative; /* На всякий случай для стабильности позиционирования */
}

/* Сама картинка */
.bry-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Чтобы картинка сохраняла пропорции */
    
    /* Подключаем анимацию:
       continuous-zoom — название анимации,
       20s — время одного цикла (чем больше секунд, тем медленнее и плавнее приближение),
       infinite — бесконечно,
       linear — абсолютно равномерная скорость без рывков и пауз */
    animation: continuous-zoom 20s linear infinite;
}

/* Настройка анимации плавного приближения */
@keyframes continuous-zoom {
    0% {
        transform: scale(1); /* Исходный размер */
    }
    50% {
        transform: scale(1.15); /* Плавно приближаем на 15% к середине цикла */
    }
    100% {
        transform: scale(1); /* Плавно и незаметно возвращаем обратно */
    }
}

/* Контейнер-рамка, внутри которой увеличивается кухня */
.image-block {
    overflow: hidden;   /* Скрываем вылезающие края картинки */
    position: relative; /* Гарантирует стабильность сетки */
}

/* Сама картинка кухни */
.image-block .zoom-image,
.image-block img { /* сработает, даже если класс не добавили */
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Запускаем то же плавное приближение на 20 секунд */
    animation: continuous-zoom 20s linear infinite;
    will-change: transform; /* Оптимизация для максимальной плавности на ПК */
}

/* Если вы не добавляли этот код на предыдущем шаге, добавьте его сейчас: */
@keyframes continuous-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* Максимальное приближение в середине цикла */
    }
    100% {
        transform: scale(1); /* Плавный откат назад */
    }
}


/* Контейнер-рамка для блока */
.bryn-image-col {
    overflow: hidden;   /* Обрезаем выходящие за рамки края фоновой картинки */
    position: relative; /* Чтобы обе картинки правильно позиционировались друг относительно друга */
}

/* Картинка, которая должна приближаться (Brynica Cityscape) */
.bryn-image-col .bryn-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Запускаем бесконечное плавное приближение */
    animation: continuous-zoom 20s linear infinite;
    will-change: transform; /* Оптимизация плавности в браузере */
}

/* Картинка .qas1 остается статичной (НЕ увеличивается) */
.bryn-image-col .qas1 {
    position: absolute; /* Позволяет ей находиться поверх приближающегося фона */
    z-index: 2;         /* Поднимаем её над движущимся фоном */
    
    /* Если у вас для неё прописаны другие стили (left, top, width), они сохраняются без изменений */
}

/* На всякий случай дублирую ключевые кадры анимации, если их еще нет в файле стилей */
@keyframes continuous-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* Плавное увеличение до 15% */
    }
    100% {
        transform: scale(1); /* Возврат в исходную точку */
    }
}


.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: 80%;
    margin-top: 0.57vw;
    color: #FFF;
    text-align: right;
    font-family: "Barlow Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5.5px;
    text-transform: uppercase;
    opacity: 0.6;
}
































}

.footer-contacts {
    background: url(images/footer_background.webp) center / cover no-repeat !important;
}


/* Класс самого маркера */
.map-marker {
    display: flex; /* Важно, чтобы трансформация размеров работала корректно */
    will-change: transform; /* Подсказка браузеру для плавной и мягкой анимации */
    
    /* Подключаем анимацию: 
       heartbeat — название анимации ниже, 
       1.4s — время одного цикла (удара), 
       infinite — повторять бесконечно, 
       ease-in-out — плавное начало и конец */
    animation: heartbeat 1.4s infinite ease-in-out;
}


/* Настройка ключевых кадров анимации «Сердцебиение» */
@keyframes heartbeat {
    0% {
        transform: scale(1); /* Исходный размер */
    }
    14% {
        transform: scale(1.15); /* Первый сильный удар (увеличение на 15%) */
    }
    28% {
        transform: scale(1.05); /* Небольшое затухание */
    }
    42% {
        transform: scale(1.2); /* Второй, чуть более сильный удар */
    }
    70% {
        transform: scale(1); /* Возврат в исходный размер */
    }
    100% {
        transform: scale(1); /* Пауза отдыха между ударами */
    }


}








.fancybox__container {
    z-index: 99999999 !important;
}






/* --- ОБЩИЕ НАСТРОЙКИ КАРТОЧЕК --- */
.apartments-section .apartment-card {
    overflow: hidden;    
    position: relative;  
}

.apartments-section .apartment-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform; 
}


/* --- ИДЕАЛЬНО СБАЛАНСИРОВАННАЯ СКОРОСТЬ ДЛЯ КАЖДОЙ КАРТОЧКИ --- */

/* 1-я карточка: Умеренный зум (за 12 секунд) */
.apartments-section .apartment-card:nth-child(1) .apartment-bg {
    animation: card-zoom 12s linear infinite;
}

/* 2-я карточка: Мягкий сдвиг по диагонали (за 14 секунд) */
.apartments-section .apartment-card:nth-child(2) .apartment-bg {
    scale: 1.12; 
    animation: card-move-diagonal 14s linear infinite;
    animation-delay: -3s; 
}

/* 3-я карточка: Мягкое отдаление (за 13 секунд) */
.apartments-section .apartment-card:nth-child(3) .apartment-bg {
    animation: card-zoom-reverse 13s linear infinite;
    animation-delay: -5s;
}

/* 4-я карточка: Аккуратный сдвиг влево-вправо (за 15 секунд) */
.apartments-section .apartment-card:nth-child(4) .apartment-bg {
    scale: 1.12;
    animation: card-move-horizontal 15s linear infinite;
    animation-delay: -2s;
}


/* ---АККУРАТНЫЕ КЛЮЧЕВЫЕ КАДРЫ --- */

/* Анимация 1: Зум */
@keyframes card-zoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.14); } /* Оптимальный размер увеличения */
    100% { transform: scale(1); }
}

/* Анимация 2: Диагональ */
@keyframes card-move-diagonal {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(18px, -15px); } 
    100% { transform: translate(0, 0); }
}

/* Анимация 3: Отдаление */
@keyframes card-zoom-reverse {
    0%   { transform: scale(1.14); }
    50%  { transform: scale(1); }
    100% { transform: scale(1.14); }
}

/* Анимация 4: Горизонталь */
@keyframes card-move-horizontal {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-22px); } 
    100% { transform: translateX(0); }
}





/* --- БАЗОВЫЕ СТИЛИ ДЛЯ ВСЕХ ТРЕХ КНОПОК --- */
.apt-hero-btn,
.cta-btn,
.apt-det-btn {
    position: relative;
    overflow: hidden;
    
    /* Запускаем анимацию изменения фона синхронно с движением блеска */
    animation: change-bg 4s infinite ease-in-out;
}

/* --- ЭФФЕКТ ТОНКОГО БЛЕСКА ДЛЯ ВСЕХ ТРЕХ КНОПОК (ТУДА И ОБРАТНО) --- */
.apt-hero-btn::before,
.cta-btn::before,
.apt-det-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -35%;  /* Исходная позиция слева за кнопкой */
    width: 25%;  /* Аккуратная тонкая полоска */
    height: 100%;
    
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.55) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    
    transform: skewX(-30deg); 
    
    /* Анимация движения блеска туда-обратно */
    animation: flash-shine 4s infinite ease-in-out;
}


/* --- КЛЮЧЕВЫЕ КАДРЫ (ОСТАЮТСЯ ТЕМИ ЖЕ) --- */

/* Анимация кнопок: цвет меняется, пока блеск идет вправо, держится и возвращается */
@keyframes change-bg {
    0% {
        background-color: #64615A;
    }
    35% {
        background-color: #A7A197; /* Цвет поменялся, когда блеск дошел до правого края */
    }
    65% {
        background-color: #A7A197; /* Удерживаем цвет, пока блеск стоит на краю */
    }
    100% {
        background-color: #64615A; /* Возвращаем исходный цвет, когда блеск ушел обратно */
    }
}

/* Анимация блеска: дойти почти до края и вернуться */
@keyframes flash-shine {
    0% {
        left: -35%;  
    }
    35% {
        left: 80%;   /* Доходит почти до правого края кнопки */
    }
    65% {
        left: 80%;   /* Пауза на правом краю */
    }
    100% {
        left: -35%;  /* Плавно возвращается обратно влево */
    }
}



@media (min-width:991px)
{
    .watermark img 
    {
width:16.46vw;
    }

.hover-btn {
    text-transform: uppercase;
}

.btn-light, .btn-dark {
    padding: 0.728vw 1.664vw 0.7vw 2.08vw;
}

    .synb {
        width: 16.46vw;
        height: 20.73vw;
        position: absolute;
        top: -3vw;
        left: 41.5%;
    }

    .synb.synb1
    {
         left: 11vw;
    top: -4vw;
    width: 20vw;
    height: auto;
    z-index: -1;   
    }


.label-green {
    color: #BAD9AF;
    margin-right: -0.0442vw;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 0.89vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.04vw;
    margin-bottom: 0.1vw;
    margin-top: 0.4vw;
}

.label-white {
    color: #FFF;
    margin-right: -0.0442vw;
    color: #FFF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 0.85vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.85px;
    margin-bottom: 0.1vw;
    margin-top: 0.4vw;
    opacity: 0.6;
}
.stat-item.left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0vw;
    height: 100%;
    border-right: 0.144vw dashed rgba(255, 255, 255, 0.3);
}


.dark .s-label {
    color: #A7A197;
    color: #BAD9AF;
    text-align: center;
    font-family: "Barlow Condensed";
    font-size: 0.78vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.04vw;
}

.symbols43 
{
 width: 1.98vw;
    height: auto;   
}

.svgsr 
{
    width:1.15vw;
    height:0.57vw;
}





.rent-link {
    color: #888;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.988vw;
    display: flex;
    align-items: center;
    gap: 0.26vw;
    transition: color 0.3s;
    font-weight: 600;
    margin-right: 3.3vw;
    letter-spacing: 0.0156vw;
    gap: 0.82vw;
    height: 1.664vw;
}



/.rent-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #676767; 
    position: relative;
    
    /* Создаем линию фоном, который ложится СТРОГО под текст */
    background-image: linear-gradient(#B8B1A4, #B8B1A4);
    background-position: 0 100%; /* Линия внизу */
    background-repeat: no-repeat;
    background-size: 0 1px; /* Изначально ширина 0, толщина 1px */
    
    /* Запускаем синхронную анимацию */
    animation: link-color-loop 2s infinite ease-in-out,
               line-load-bg-loop 2s infinite ease-in-out;
}

/* СТРЕЛОЧКА */
.rent-link .svgsr {

    animation: arrow-move-loop 2s infinite ease-in-out;
}

.rent-link .svgsr path {
    fill: currentColor; 
}

/* Из-за того что фон (background-image) у inline-flex элемента по умолчанию 
   не заходит под картинки и SVG, он подчеркнет ТОЛЬКО текст! */

/* --- ОБНОВЛЕННЫЕ КЛЮЧЕВЫЕ КАДРЫ --- */
@keyframes link-color-loop {
    0%, 10% { color: #676767; }
    40%, 70% { color: #B8B1A4; }
    100% { color: #676767; }
}

@keyframes line-load-bg-loop {
    0%, 10% {
        background-size: 0 1px;
        background-position: 0 100%; /* Старт слева */
    }
    40%, 70% {
        background-size: calc(100% - 30px) 1px; /* Доходит ровно до конца текста, упираясь в стрелку */
    }
    100% {
        background-size: 0 1px;
        background-position: calc(100% - 30px) 100%; /* Исчезает в конце текста */
    }
}

@keyframes arrow-move-loop {
    0%, 10% { transform: translateX(0); }
    40%, 70% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}



.sp-panel.is-open .sp-submit-btn {

    margin: auto !important;
}

.sp-panel.is-open .sp-subtitle {
    margin-bottom: 0;
}



}




/* --- НАСТРОЙКИ СЕКЦИИ HERO --- */
.hero {
    position: relative;
    overflow: hidden; /* Обрезаем края фона, когда он увеличивается */
    
    /* Убедимся, что контент внутри секции будет отображаться ПОВЕРХ движущегося фона */
    z-index: 99; 
}

/* --- СОЗДАЕМ ДВИЖУЩИЙСЯ ФОН --- */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Переносим сюда вашу фоновую картинку */
    background-image: url('https://rezydencjabrynica.pl/brynica/wp-content/uploads/2026/05/baner-1.webp');
    background-size: cover;
    background-position: center;
    
    /* Опускаем фон под контент секции */
    z-index: -1; 
    
    /* Запускаем наше сбалансированное приближение (например, на 15 секунд) */
    animation: continuous-zoom 15s linear infinite;
    will-change: transform; /* Оптимизация для плавности */
}

/* --- ЕСЛИ КОДА АНИМАЦИИ ЕЩЕ НЕТ В ВАШЕМ CSS, ДОБАВЬТЕ ЕГО: --- */
@keyframes continuous-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12); /* Плавное увеличение на 12% к середине */
    }
    100% {
        transform: scale(1); /* Плавный откат назад */
    }
}


@media (max-width:991px)
{
        .apartment-hover-overlay {
        display: none;
    }
    .stat-box.light .s-label {
        color: #ffffff9e;
}

 .stat-box.light .s-number {
        color: #ffffff9e;
}

.availability-box .stat-label 
{
    margin-top: -23px;
}
.map-marker {
        position: absolute;
        top: 43%;
        left: 41%;
    }



/* --- ФИКСИРОВАННАЯ КНОПКА ЗВОНКА НА МОБИЛЬНЫХ --- */
.mobile-fixed-phone {
    position: fixed;
    bottom: 25px;       /* Отступ снизу */
    right: 25px;        /* Отступ справа */
    width: 60px;        /* Размер круга */
    height: 60px;
    background-color: #64615A; /* Темно-бежевый/серый цвет как на вашем скрине */
    border-radius: 50%; /* Делаем идеальный круг */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;    /* Поверх всех остальных элементов */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Легкая тень для объема */
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Цвет и размер самой иконки-трубки */
.mobile-fixed-phone svg {
    width: 26px;
    height: 26px;
    fill: #ffffff; /* Белая трубка */
}

/* Легкая анимация при нажатии пальцем */
.mobile-fixed-phone:active {
    transform: scale(0.9);
}


}


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



/* Применяем логику фиксации только для мобильных экранов (до 991px) */
@media (max-width: 991px) {
    /* Класс, который будет добавляться скриптом при скролле */
    .logo-container.fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        
        /* Задайте нужный фон, чтобы под хедером не просвечивал текст при скролле */
        background-color: #ffffff; 
        
        /* Легкая тень для отделения хедера от контента */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
        
        /* Плавное выезжание сверху */
        animation: slideDown 0.3s ease-out;
    }

.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: fixed;
        right: 18px;
        top: 18px;
    }
    .main-header {
    z-index: 99999;
}

.logo-container.fixed-header {
        position: fixed;
        top: -5px;
    }

        .mobile-menu-toggle {
        z-index: 99999999999;
    }

        .logo-container.fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
        height: 82px;
    }

    .logo-container.fixed-header .logo_mk 
    {
        display: flex;
    height: 50px;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
    margin-top: 14px;
    }
   .logo-container.fixed-header .logo {
    width: 9.43vw;
    height: 8.75vw;
    aspect-ratio: 181 / 168;
    margin-top: -25px;
    height: 99px !important;
    object-fit: cover;
    width: 153px !important;
    object-position: bottom;
}
.logo-container.fixed-header {
        position: fixed;
        top: -5px;
    }



}

/* Анимация плавного появления */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}




@media (min-width:991px)
{
    .logo {
    width: 7.43vw;
    height: 8.75vw;
}

.logo.logo-fixed {
  width: 8.43vw;
        height: 7.75vw;  
}

.logo-container {
    margin-top: -0.29vw;
}

}


@media (max-width:991px)
{
        .map-section {
        background-image: url(mapa_mobile.png) !important;
    }
        .logo {
        width: auto !important;
        height: 102px !important;
        }
            .logo-container.fixed-header {
        position: fixed;
        top: -7px;
        padding-bottom: 12px;
    }
    .mobile-menu-overlay.is-open     .logo {
        width: auto !important;
        height: 115px !important;
        padding: 10px;
    }
}