* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@-moz-document url-prefix() {
    html, #short-desc {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

body { overflow-x: hidden; }

html::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

:root {
    --primary-color: #1A1B23;
    --secondary-color: #E85A34;
    --search-bg: #FFF5EF;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.content, .content1 {
    display: flex;
    width: 100%;
    max-width: 1216px; 
}
.content1 { flex-direction: column; }

/* intro animation */
.intro {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.intro-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100vh;
}

.intro-decor path {
    fill: none;
    stroke: white;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 2s linear forwards;
}
  
/* Remove these lines if present */
.intro-decor path:nth-child(1),
.intro-decor path:nth-child(2),
.intro-decor path:nth-child(3) {
    animation-delay: 0s;
}

@keyframes drawPath {
    to {
      stroke-dashoffset: 0;
    }
}

.intro .title img {
    opacity: 0;
    animation: fadeAndSlide 1s ease-out forwards;
    width: 189px;
    height: 234px;
}

@keyframes fadeAndSlide {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-to-top {
    background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    path { stroke: var(--secondary-color); }
    &:hover { 
        background: var(--secondary-color);
        path { stroke: white; }
    }
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

header {
    background: var(--primary-color);
    min-height: 120px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1052;
}

.header-content {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.open-menu {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    svg { fill: var(--secondary-color); }
}
.open-menu span { margin-top: 3px; }

.logo {
    display: inline-flex;
    width: 77px;
    height: 97px;
    margin-left: 220px;
}

.logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-actions > a {
    color: white;
    -webkit-text-stroke: 0.5px white;
    text-decoration: none;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
}

.choose-flat-btn {
    background: var(--secondary-color);
    border: none;
    color: white;
    -webkit-text-stroke: 0.5px transparent;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    width: 220px;
    height: 43px;
    transition: all 0.3s ease;
    i { display: none; }
}
.choose-flat-btn:hover { -webkit-text-stroke: 0.5px white; }

.menu, .choose-flat {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1053;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
}

.menu {
  left: 0;
  transform: translateX(-100%);
  -webkit-transform: translate3d(-100%, 0, 0);
}

.choose-flat {
  right: 0;
  left: auto;
  transform: translateX(100%);
  -webkit-transform: translate3d(100%, 0, 0);
}

.menu.active, .choose-flat.active{
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}

.menu-bg, .choose-bg { 
    background: rgba(26, 27, 35, 0.8); 
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1052;
}

.menu-items { 
    background: var(--primary-color); 
    width: 65%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1053;
    padding: 0 50px 0 calc((100% - 1216px) / 2);
    overflow-y: auto;
}
.menu-items::-webkit-scrollbar, .choose-items::-webkit-scrollbar,
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar { display: none; }
.menu-items, .choose-items, .select2-container--default .select2-results > .select2-results__options {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.menu-header, .choose-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    margin-bottom: 40px;
}

#lang-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.73);
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    margin-right: 50px;
}

.close-menu, .close-choose {
    background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    width: 66px;
    height: 66px;
    transition: all 0.3s ease;
}
.close-menu:hover, .close-choose:hover { background: var(--secondary-color); }
.close-menu img, .close-choose img { margin-top: -5px; }

.top-menu, .bottom-menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-menu a {
    color: white;
    text-decoration: none;
    font: 25px 'BPG LE Studio 02 Caps';
    line-height: 30px;
    transition: all 0.3s ease;
}
.top-menu a:hover {
    color: var(--secondary-color);
    margin-left: 20px;
}

.menu-items hr {
    border-color: rgba(232, 90, 52, 0.13);
    opacity: 1;
    margin: 40px 0;
}

.bottom-menu { gap: 10px; }
.bottom-menu li { display: inline-flex; }
.bottom-menu a {
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    transition: all 0.3s ease;
}
.bottom-menu a:hover { color: var(--secondary-color); }

.menu-items > div:last-child {
    display: flex;
    align-items: flex-start;
    gap: 200px;
}

.menu-links > * {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    transition: all 0.3s ease;
    &:hover { opacity: 0.7; }
}

.menu-links button {
    background: transparent;
    border: none;
    margin-bottom: 17px;
}

.choose-flat {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  height: 100vh;
  z-index: 1053;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
}

.choose-items { 
    background: var(--primary-color); 
    width: 625px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1053;
    padding: 0 40px 100px 45px;
    overflow-y: auto;
    transition: all 0.3s ease;
}
.choose-flat.active .choose-items { right: 0; }

.choose-header span {
    color: var(--secondary-color);
    font: 30px 'BPG LE Studio 02 Caps';
    line-height: 40px;
}

/* custom select */
.flat-form .select2-container {
    height: 25px !important;
    width: 100% !important;
}
.select2-dropdown { z-index: 1053 !important; }
.choose-area .select2-container { width: calc((100% - 76px) / 2) !important; }

.flat-form .select2-container .select2-selection--single,
.main-flat-form .select2-container .select2-selection--single { 
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(232, 90, 52, 0.3) !important;
    border-radius: 0 !important;
    height: 25px !important;
}

.flat-form .select2-container .select2-selection--single .select2-selection__rendered,
.main-flat-form .select2-container .select2-selection--single .select2-selection__rendered {
    color: white !important;
    display: flex !important;
    align-items: center;
    font: 10px 'BPG Mrgvlovani' !important;
    line-height: 13px !important;
    padding-left: 0px !important;
}
.main-flat-form .select2-container .select2-selection--single .select2-selection__rendered { color: black !important; }

.flat-form .select2-container--default .select2-selection--single .select2-selection__arrow,
.main-flat-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/select-arrow.svg) no-repeat center center;
    background-size: contain;
    width: 8.5px !important;
    height: 5px !important;
    right: 0 !important;
    top: 30% !important;
    transform: translateY(-50%);
}
.main-flat-form .select2-container--default .select2-selection--single .select2-selection__arrow { background: url(../images/select-arrow1.svg) no-repeat center center; }
  
.select2-container--default .select2-selection--single .select2-selection__arrow b { display: none !important; }

.select2-dropdown {
    background: white !important;
    border: none !important;
}

.select2-results {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.select2-results__option {
    padding: 10px 0 10px 20px !important;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--secondary-color) !important;
    color: white !important;
}

.select2-results__option--disabled { display: none !important; }

.flat-form > div:first-child {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.form-group label {
    color: white;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
}

.main-flat-form .form-group label {
    color: black;
    -webkit-text-stroke: 0.5px black;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
}

.choose-area { gap: 20px; }
.choose-area > div:last-child {
    background: var(--secondary-color);
    color: white;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    width: 36px;
    height: 40px;
    margin-top: -13px;
}

.flat-form > button, .main-flat-form > button {
    background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 23px;
    color: white;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    margin: 0 auto;
    width: 105px;
    height: 45px;
    transition: all 0.3s ease;
    &:hover { background: var(--secondary-color); }
}

.choose-img {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.banner {
    background: url('../images/banner.png') no-repeat center center / cover;
    flex-direction: column;
    position: relative;
    height: 550px;
}

.banner::before, .location-slide:first-child::before {
    background-color: black;
    opacity: 0.24;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.banner-text {
    color: white;
    text-transform: uppercase;
    font: 44px 'Campton';
    line-height: 50px;
    position: absolute;
    left: calc((100% - 1220px) / 2);
    bottom: 25px;
    z-index: 2;
}

.banner-decor {
    border: 1px solid white;
    position: absolute;
    left: 0;
    width: 83px;
    height: 280px;
    z-index: 2;
    left: calc((100% - 1237px) / 2);
    bottom: 21px;
}

.banner-text p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.banner-text span:first-child {
    color: var(--secondary-color);
    -webkit-text-stroke: 3px var(--secondary-color);
    text-align: center;
    font: 83px 'BPG Mrgvlovani Caps 2010';
    line-height: 90px;
    width: 65px;
}

.interior-prev {
    background: var(--primary-color);
    padding: 200px 20px 170px;
}

.interior-prev .content { 
    position: relative;
    min-height: 635px;

    > img:first-child {
        position: absolute;
        bottom: 10px;
        width: 390px;
        height: 420px;
        z-index: 2;
        transition: transform 0.1s linear;
        will-change: transform;
    }

    .interior2 {
        position: absolute;
        top: 0;
        left: 300px;
        width: 557px;
        height: 634px;
        z-index: 1;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            transition: all 0.3s ease;
            &:hover { transform: scale(1.1); }
        }
    }

    .interior3 {
        position: absolute;
        right: 0;
        top: 80px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition: transform 0.1s linear;
        will-change: transform;
        z-index: 2;

        span { color: white; font: 45px 'BPG Mrgvlovani Caps 2010'; }
        img { width: 323px; height: 389px; }

        a {
            border: 1px solid var(--secondary-color);
            border-radius: 50%;
            color: var(--secondary-color);
            text-decoration: none;
            font: 14px 'BPG LE Studio 02 Caps';
            line-height: 19px;
            width: 154px;
            height: 154px;
            transition: all 0.3s ease;
            margin-top: 20px;
            &:hover { background: var(--secondary-color); color: white; }
        }
    }
}

.round-park {
    background: url('../images/round-park.png') no-repeat center center / cover;
    color: white;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding-top: 130px;
    position: relative;
    height: 580px;

    > * {
        position: relative;
        z-index: 2;
        margin-bottom: 0;
        text-align: center;
    }

    p:first-child {
        color: var(--secondary-color);
        font: 80px 'BPG Mrgvlovani Caps 2010';
        line-height: 80px;
        margin-bottom: 55px;
    }

    p:nth-child(2) {
        color: var(--secondary-color);
        font: 30px 'BPG LE Studio 02 Caps';
        line-height: 34px;
        max-width: 220px;
        margin-bottom: 30px;
    }

    p:last-of-type {
        color: #D1D1D1;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        max-width: 540px;
        margin-bottom: 30px;
    }
}

.round-park::before, .vake-park::before,
.room-num-prev::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.round-park::before { background: linear-gradient(180deg, #1a1b23 0.00%, rgba(26,27,35,0.89) 40.59%, rgba(26,27,35,0.76) 100.00%); }
.vake-park::before { background: rgba(26, 27, 35, 0.4); }

.vake-park {
    background: url('../images/vake-park.png') no-repeat center center / cover;
    padding-top: 200px;
    position: relative;
    height: 575px;

    p {
        color: white;
        font: 96px 'BPG Mrgvlovani Caps 2010';
        line-height: 106px;
        margin-bottom: 0;
        text-align: center;
        position: relative;
        z-index: 2;
    }
}

.arrow, .arrow1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    div { 
        background: linear-gradient(0deg, #ffffff 0.00%,rgba(255,255,255,0 ) 100.00%);
        height: 100px;
        width: 1px;
    }
    img {
        transform: rotate(90deg);
        margin-left: -1px;
    }
}
.arrow1 > div {
    height: 0;
    animation: growArrow 3s ease-in-out infinite;
}
  
@keyframes growArrow {
    0% { height: 0; }
    100% { height: 65px; }
}
  
.room-num-prev {
    background: url('../images/flat-num-bg.png') no-repeat center center / cover;
    padding-top: 180px;
    position: relative;
    height: 765px;
    z-index: 2;
}
.room-num-prev::before { background: rgba(26, 27, 35, 0.6); }

.room-num-links {
    display: flex !important;
    max-width: 1012px;
    width: 100% !important;
    margin: 0 !important;

    a {
        color: unset;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none;
        padding: 30px 30px 35px;
        transition: all 0.3s ease;
        height: 400px;

        > span {
            color: #FA8D4D;
            font: 50px 'BPG LE Studio 02 Caps';
            line-height: 50px;
            transition: all 0.3s ease;
        }

        > div {
            color: white;
            display: flex;
            align-items: center;
            gap: 20px;
            font: 16px 'BPG LE Studio 02 Caps';
            line-height: 21px;

            div {
                border: 1px solid var(--secondary-color);
                border-radius: 50%;
                width: 45px;
                height: 45px;
                transition: all 0.3s ease;
            }
        }
    }

    a:first-child {
        background: rgba(232, 90, 52, 0.3);
        &:hover { 
            background: var(--secondary-color); 
            > span { color: var(--primary-color); }
            > div div {
                background: var(--primary-color);
                border-color: var(--primary-color);
            }
        }
    }

    a:last-child {
        background: rgba(255, 255, 255, 0.3);
        &:hover { 
            background: white; 
            > div {
                color: var(--primary-color);
                div { background: var(--secondary-color); }
            }
        }
        
    }
}

.architect-container {
    background: var(--primary-color);
    padding: 160px 20px 200px;
    position: relative;
    .content { 
        gap: 50px;
        align-items: flex-start;
        padding-left: 90px; 
        position: relative;
        z-index: 2;
    }
}

.architect-container::before {
    content: '';
    background: url('../images/decor.png') no-repeat center center / cover;
    width: 900px;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
} 

.architect-info {
    max-width: 400px;
    p:first-child {
        color: var(--secondary-color);
        font: 36px 'BPG Mrgvlovani Caps 2010';
        line-height: 48px;
        margin-bottom: 20px;
    }
    p:nth-child(2) {
        color: white;
        font: 38px 'BPG LE Studio 02 Caps';
        line-height: 38px;
        margin-bottom: 25px;
    }
    div:nth-child(3) {
        color: white;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        margin-bottom: 35px;
    }

    button {
        background: transparent;
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        width: 154px;
        height: 154px;
        position: relative;
        transition: all 0.3s ease;
        z-index: 1;
        g { 
            opacity: 0.36; 
            transition: all 0.3s ease; 
            animation: pulseOpacity1 2.5s ease-in-out infinite;
        }
    }
    
    button::before,  button::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
        border: 16px solid rgba(250, 142, 77, 0.43);
        opacity: 0;
        transition: opacity 0.3s ease;
        animation: pulseOpacity 2.5s ease-in-out infinite;
    }
    
    button::after { top: 0px; left: 0px; right: 0px; bottom: 0px; }
    button:hover::before, button:hover::after, button:hover g { opacity: 1; }
}

@keyframes pulseOpacity {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulseOpacity1 {
    0%, 100% {
        opacity: 0.36;
    }
    50% {
        opacity: 1;
    }
}


.architect-images {
    position: relative;
    width: calc(100% - 450px);
    min-height: 580px;
    img:first-child {
        position: absolute;
        z-index: 2;
        bottom: 100px;
        width: 290px;
        height: 300px;
        object-fit: cover;
    }

    img:last-child {
        position: absolute;
        z-index: 1;
        right: 0;
        top: 100px;
        width: 460px;
        height: 580px;
        object-fit: cover;
    }
}

.gallery-preview {
    background: var(--primary-color);
    padding: 80px 0 100px;
    flex-direction: column;
    align-items: center;

    p:first-child {
        color: var(--secondary-color);
        font: 50px 'BPG Mrgvlovani Caps 2010';
        line-height: 50px;
        margin-bottom: 40px;
    }
}

.gallery-swiper { width: 100% !important; }
.gallery-slide { 
    width: auto !important; 
    img {
        height: 435px;
        object-fit: cover;
    }
}

.call-request {
    background: #FCFCFC;
    height: 100vh;
    align-items: center;
    position: relative;
    z-index: 2;
}

.call-request-form {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    p {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        span:first-child {
            color: var(--secondary-color);
            font: 77px 'BPG Mrgvlovani Caps 2010';
            line-height: 80px;
        }
        span:last-child {
            color: var(--primary-color);
            font: 72px 'footLight', 'akademiuri';
        }
    }

    div {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
        width: 100%;
        label {
            font: 14px 'BPG LE Studio 02 Caps';
            line-height: 19px;
        }
        input {
            background: #FCFCFC;
            border: none;
            border-bottom: 1px solid #FBD4BC;
            font: 12px 'BPG Mrgvlovani';
            line-height: 16px;
            height: 18px;
        }
        input:focus { outline: none; }
    }

    button {
        background: var(--primary-color);
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        color: white;
        -webkit-text-stroke: 0.5px transparent;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        margin-top: 25px;
        width: 154px;
        height: 154px;
        transition: all 0.3s ease;
        &:hover {
            background: var(--secondary-color);
            -webkit-text-stroke-color: white;
        }
    }
}

footer {
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    height: 710px;
    padding-left: calc((100% - 1216px) / 2);
    padding-top: 125px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.footer-logo {
    display: inline-flex;
    width: 160px;
    height: 200px;
    margin-bottom: 15px;
}

.footer-logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.socials {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;

    a {
        background: rgba(232, 90, 52, 0.2);
        border-radius: 50%;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 55px;
        height: 55px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); color: white; } 
    }
}

.footer-contact, .contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    a { max-width: 150px; }
    * {
        color: rgba(255, 255, 255, 0.62);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        text-decoration: none;
        transition: all 0.3s ease;
        &:hover { color: white; }
    }
}

.footer-decor {
    position: relative;
    width: 800px;
    margin-top: -125px;
    
    img { transition: all 0.3s ease; }
    img:first-child {
        width: 457px;
        height: 511px;
        object-fit: contain;
        opacity: 0.33;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    img:last-child {
        width: 455px;
        height: 710px;
        position: absolute;
        top: 0;
        right: 0;
    }

    &:hover img:first-child {
        width: 561px;
        height: 627px;
        left: -100px;
        opacity: 1;
    }

    &:hover img:last-child {
        width: 800px;
    }
}

.search-decor {
    position: absolute;
    top: 0;
    right: calc((100% - 480px) / 2);
    z-index: 1051;
}

.common-header {
    background: var(--primary-color);
    height: 205px;
}

.common-header-content {
    flex-direction: column;
    justify-content: center;
    p:first-child {
        color: rgba(232, 90, 52, 0.54);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin-bottom: 20px;
        a { color: unset; text-decoration: none; }
    }
    
    p:last-child {
        color: white;
        font: 50px 'BPG Mrgvlovani Caps 2010';
        line-height: 50px;
        margin-bottom: 0;
    }
}

.search-result-container {
    background: var(--search-bg);
    padding: 80px 20px 180px;
    .content { flex-direction: column; }
}

.main-flat-form {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 70px;
}

.main-flat-form .form-group { max-width: 250px; }
.main-flat-form > button {
    background: var(--secondary-color);
    color: white;
    margin: 0;
    &:hover { background: var(--primary-color); border-color: var(--primary-color); }
}

.result-num {
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    margin-bottom: 70px;
    span { color: var(--secondary-color); }
}

.search-result {
    display: flex;
    flex-direction: column;
    gap: 44px;
    margin-bottom: 60px;
    hr {
        border-color: #E2D9D5;
        margin: 0;
        opacity: 1;
    }
}

.apartment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    a:last-child {
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        color: unset;
        text-decoration: none;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 14px;
        padding: 0 5px;
        width: 99px;
        height: 99px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); color: white; }
        i { display: none; } 
    }
}

.apartment-num, .apartment-floor {
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    min-width: 75px;

    span:last-child {
        color: var(--secondary-color);
        font-size: 30px;
        margin-left: 7px;
    }
}
.apartment-floor { 
    color: unset;
    text-decoration: none;
    min-width: 110px; 
}

.apartment-model {
    width: 75px;
    object-fit: contain;
}

.apartment-area, .apartment-rooms {
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    min-width: 60px;
}
.apartment-rooms { min-width: 155px; }

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    .prev-page, .next-page {
        background: rgba(0,0,0,0.04);
        border: none;
        border-radius: 50%;
        color: var(--secondary-color);
        font-size: 10px;
        width: 50px;
        height: 50px;
        transition: all 0.3s ease;
        &:hover { background: var(--secondary-color); color: var(--primary-color); }
    }
}

.pagination-buttons {
    display: flex;
    gap: 18px;
    button {
        background: none;
        border: none;
        color: #929395;
        font: 13px 'BPG Mrgvlovani Caps 2010';
        line-height: 18px;
    }
    button.active { color: var(--secondary-color); }
}


.location-swiper {
    height: calc(100vh - 120px);
}

.location-slide:first-child {
    background: url('../images/location1.png') no-repeat center center / cover;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 70px 'BPG Mrgvlovani Caps 2010';
    line-height: 75px;
    position: relative;
    * {
        position: relative;
        z-index: 2;
    }
}
.location-slide:first-child::before { opacity: 0.56; }

.show-on-map {
    background: linear-gradient(180deg, #1a1b23 0.00%, rgba(26,27,35,0.89) 40.59%, rgba(26,27,35,0.76) 100.00%);
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;   
    font: 51px 'BPG Mrgvlovani Caps 2010';
    line-height: 54px;
    -webkit-text-stroke: 2px var(--secondary-color);
    width: 100%;
    height: 100%; 
    position: absolute;
    z-index: 3;
}

.map {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;

    iframe { width: 100%; height: 100%; }
}

.location-slide.call-request {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 20px !important;
}

.location-slide {
    .call-request-form {
        p {
            margin-bottom: 20px;
            span:first-child {
                font-size: 50px;
                line-height: 55px;
            }
            span:last-child { font-size: 40px; }
        }
        button { width: 120px; height: 120px; }
    }
}

.gallery-container {
    background: var(--primary-color);
    padding: 70px 20px;
    position: relative; 
    overflow: hidden;
    * {
        position: relative;
        z-index: 2;
    }
    .content { align-items: center; }
}

.gallery-container::after, .how-to-buy::after, .contact-container::after,
.flat-container::after {
    content: '';
    background: url('../images/decor1.svg') no-repeat center center / cover;
    width: 825px;
    height: 885px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    z-index: 1;
}

.gallery-prev, .gallery-next {
    background: #E2E2E2;
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    font-size: 10px;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    &:hover { background: var(--secondary-color); color: var(--primary-color); }
}
.gallery-prev { left: -25px; }
.gallery-next { right: -25px; }

.main-gallery-swiper {
    color: white;
    font: 40px 'BPG Mrgvlovani Caps 2010';
    line-height: 40px;
    width: 100% !important;
    height: 630px;
}

.main-gallery-slide {
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    img { object-fit: cover; }
}

.main-gallery-slide:nth-child(3n + 1) {
    margin-top: 120px;
    max-width: 390px;
    z-index: 3;
    img {
        width: 100%;
        height: 420px;
    }
}

.main-gallery-slide:nth-child(3n + 2) { 
    flex-direction: column-reverse; 
    margin-left: -30px;
    margin-right: 30px;
    min-width: 495px;
    max-width: 495px;
    img {
        width: 100%;
        height: 564px;
    }
}

.main-gallery-slide:nth-child(3n + 3) {
    margin-top: 67px;
    max-width: 323px;
    margin-right: 20px;
    img {
        width: 100%;
        height: 390px;
    }
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-bottom: 50px;
    p:first-child {
        color: rgba(232, 90, 52, 0.54);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin-bottom: 0;
        a { color: unset; text-decoration: none; }
    }
}

.go-back {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    &:hover div { background: var(--secondary-color); color: var(--primary-color); }
    &:hover span { display: flex; }

    div {
        background: rgba(226, 226, 226, 0.16);
        border-radius: 50%;
        color: var(--secondary-color);
        font-size: 10px;
        width: 50px;
        height: 50px;
        transition: all 0.3s ease;
    }

    span {
        color: white;
        display: none;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 14px;
    }
}

.gallery-title {
    color: white;
    font: 40px 'BPG Mrgvlovani Caps 2010';
    line-height: 40px;
    margin-bottom: 50px;
}

.gallery-items {
    display: flex;
    flex-direction: column;
    gap: 90px;
    max-width: 1040px;
}

.gallery-item {
    position: relative;
    img {
        max-width: 930px;
        width: 100%;
        height: 520px;
        object-fit: cover;
    }

    div {
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font: 50px 'BPG LE Studio 02 Caps';
        line-height: 50px;
        position: absolute;
        right: 0;
        top: 0;
        width: 163px;
        height: 163px;
    }
}

.how-to-buy, .progress-container {
    background: var(--primary-color);
    padding: 170px 20px;
    position: relative; 
    overflow: hidden;
    > * {
        position: relative;
        z-index: 2;
    }
}

.page-title {
    color: var(--secondary-color);
    font: 60px 'BPG Mrgvlovani Caps 2010';
    text-align: center;
    line-height: 60px;
    margin-bottom: 90px;
}

.instructions {
    display: flex;
    flex-direction: column;
    gap: 160px;
}

.instruction {
    color: white;
    display: flex;
    align-items: center;
    gap: 180px;
    > img {
        width: 515px;
        height: 450px;
        object-fit: cover;
    }
    div {
        max-width: 410px;
        p:first-child {
            font: 38px 'BPG Mrgvlovani Caps 2010';
            line-height: 40px;
            margin-bottom: 5px;
        }
        p:last-child {
            font: 12px 'BPG Mrgvlovani';
            line-height: 16px;
            height: 155px;
            text-overflow: ellipsis;
            overflow: hidden;
        }
    }
}

.instruction:nth-child(even) {
    flex-direction: row-reverse;
    div {
        text-align: end;
    }
}

.progress-container .content1 { align-items: center; }

.progress-container::after {
    content: '';
    background: url('../images/decor2.svg') no-repeat center center / cover;
    width: 435px;
    height: 720px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.progress-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.progress-items::before {
    content: '';
    background: rgba(255,255,255,0.11);
    position: absolute;
    left: 50%;
    top: 0;
    height: calc(100% - 70px);
    width: 1px;
    z-index: 2;
}

.progress-item {
    > p:first-child {
        color: white;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 20px;
    }
}
.progress-item:nth-child(even) { margin-top: 270px; }

.progress-img {
    position: relative;
    min-height: 450px;
    div {
        width: 350px;
        height: 380px;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
            &:hover { transform: scale(1.1); }
        }
    }

    a {
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        cursor: pointer;
        fill: white;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 137px;
        height: 137px;
        z-index: 2;
        transition: all 0.3s ease;
        svg { transition: all 0.3s ease; }
        &:hover {
            background: var(--secondary-color);
            fill: var(--primary-color);
            svg { transform: scale(0.5); }
        }
    }
}

.documents-container {
    background: var(--search-bg);
    padding: 110px 20px;
    .content1 {
        max-width: 1300px;
        hr {
            opacity: 1;
            border-color: var(--secondary-color);
            margin: 20px 42px;
        }
    }
}

.documents-header {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.5px var(--secondary-color);
    display: flex;
    gap: 10px;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    padding: 0 42px;
    p { margin-bottom: 0; }
    p:first-child { width: 50%; }
    p:last-child { width: calc(50% - 70px); }
}

.document {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 22px 42px;
    transition: all 0.3s ease;
    &:hover { 
        background: rgba(232, 90, 52, 0.21);
        .download-link {
            background: var(--secondary-color);
            path { stroke: white; }
        }
    } 

    .name {
        display: flex;
        flex-direction: column;
        width: 50%;
        span:first-child {
            color: black;
            -webkit-text-stroke: 0.5px black;
            font: 16px 'BPG LE Studio 02 Caps';
            line-height: 21px;
        }
        span:last-child {
            color: #B2B2B2;
            -webkit-text-stroke: 0.3px #B2B2B2;
            font: 12px 'BPG LE Studio 02 Caps';
            line-height: 16px;
        }
    }

    .date {
        display: flex;
        flex-direction: column;
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        width: calc(50% - 70px);
    }

    .download-link {
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        display: flex;
        width: 50px;
        height: 50px;
        transition: all 0.3s ease;
        path { transition: all 0.3s ease; }
    }
}
.document:last-of-type { margin-bottom: 80px; }

.news-container { padding: 65px 20px 135px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 53px;
    row-gap: 50px;
    margin-bottom: 90px;
}

.news-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 30px;
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    z-index: 1;
    &::before {
        content: "";
        background: rgba(26, 27, 35, 0.21);
        position: absolute;
        top: 0; right: 0;
        bottom: 0; left: 0;
        z-index: 2;
    }

    > * {
        position: relative;
        z-index: 3;
    }

    > img {
        top: 0; right: 0;
        bottom: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        z-index: 1;
    }

    .name {
        color: white;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        margin-bottom: 0;
    }
}

.news-card::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 2;
}
.news-card:hover::after {
    background: var(--primary-color);
    bottom: 0;
}

.see-more {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font: 14px "BPG LE Studio 02 Caps";
    line-height: 18px;
    overflow: hidden;
    padding-left: 20px;
    transition: all 0.3s ease;
    .text {
        opacity: 0;
        white-space: nowrap;
        margin-left: 15px;
        transition: opacity 0.3s ease;
    }
    .plus { 
        border: 1px solid white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        svg { margin: -1px 0 0 -1px; fill: white; }
    }
}
.news-card:hover .text { opacity: 1; }

.news-card.no-image {
    border: 1px solid var(--secondary-color);
    .name { color: black; }
    &::before, &::after { content: none; }
    .text { color: var(--primary-color); }
    .plus {
        border-color: var(--secondary-color);
        svg { fill: var(--primary-color); }
    }
}

.see-more-news {
    background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px transparent;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    margin: 0 auto;
    width: 154px;
    height: 154px;
    transition: all 0.3s ease;
    &:hover {
        background: var(--secondary-color);
        -webkit-text-stroke-color: var(--primary-color);
    }
}

.current-news-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    &::after {
        content: '';
        background: var(--secondary-color);
        opacity: 0.35;
        width: 1px;
        height: 100%;
        position: absolute;
        right: calc(32% + 15px);
        top: 0;
    }
}

.current-news { 
    width: 67.8%; 
    > img:first-child {
        width: 100%;
        height: 480px;
        object-fit: cover;
        margin-bottom: 30px;
    }
    .name {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 20px 'BPG LE Studio 02 Caps';
        line-height: 24px;
        margin-bottom: 30px;
    }
    .text, .text * {
        font: 14px 'BPG Mrgvlovani' !important;
        line-height: 19px !important;
    }
    hr {
        opacity: 0.41;
        border-color: var(--secondary-color);
        margin: 70px 0 30px;
    }
}

.share-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    .go-back span { color: var(--primary-color); }
}

.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    span { margin-right: 10px; }
    div {
        background: #ECECEC;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        width: 28px;
        height: 28px;
    }
}

.other-news {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 32%;
}

.contact-container {
    background: var(--primary-color);
    padding: 50px 20px 0;
    position: relative; 
    overflow: hidden;
    > * {
        position: relative;
        z-index: 2;
    }

    .common-header-content { margin-bottom: 100px; }
}

.contact-container .call-request-form {
    margin: 0 auto 30px; 
    > p:first-child span:last-child { color: white; }
    div {
        label { color: white; }
        input {
            background: transparent;
            color: white;
        }
    }
}

.contact-map {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 90px;
    position: relative;
    z-index: 2;
    overflow: hidden;

    > div:last-child { width: calc(100% - 900px); }
}

.map-imgs {
    left: -100px;
    position: relative;
    z-index: 1;
    width: 910px;
    height: 596px;
    img:first-child {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    img:nth-child(2) {
        position: absolute;
        top: 218px;
        left: 330px;
        z-index: 3;
        &:hover ~ img:last-child { opacity: 1 !important; }
    }
    img:last-child {
        opacity: 0;
        position: absolute;
        top: 210px;
        left: 322px;
        transition: all 0.3s ease;
        z-index: 2;
    }
}

.contact-links {
    > a, > span {
        color: rgba(255,255,255,0.62);
    }
}

.floors-container {
    background: var(--search-bg);
    padding: 50px 20px 120px;
    .content1 { max-width: 1006px; }
}

.floors-swiper-cont {
    margin-bottom: 60px;
    p:first-child {
        color: black;
        -webkit-text-stroke: 0.5px black;
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
        margin-bottom: 17px;
    }
}

.floor-slide {
    background: transparent;
    border: 1px solid #D8D8D8;
    color: white;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font: 19px 'BPG LE Studio 02 Caps';
    line-height: 20px;
    width: 85px !important;
    height: 85px !important;
    transition: all 0.3s ease !important;
    &:hover, &.active { 
        background: rgba(232, 90, 52,0.39); 
        border: none;
        div {
            background: var(--secondary-color);
            width: 52px;
            height: 52px;
        }
    }

    div {
        background: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        transition: all 0.3s ease;
    }
}

.current-floor-project {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    > p:first-child {
        color: black;
        -webkit-text-stroke: 1px black;
        font: 16px 'BPG LE Studio 02 Caps';
        line-height: 21px;
        margin-bottom: 0;
    }
}

.current-floor-project > img { width: 770px; }

.current-floor-flats { display: none; }

.flat-container {
    background: var(--primary-color);
    padding: 30px 20px 200px;
    position: relative; 
    overflow: hidden;
    * {
        position: relative;
        z-index: 2;
    }
}

.flat-header {
    color: rgba(232, 90, 52, 0.54);
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    margin-bottom: 100px;
    a { color: unset; text-decoration: none; }
}

.apartment-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

    .num {
        border: 1px solid var(--secondary-color);
        border-radius: 50%;
        font-family: 'BPG LE Studio 02 Caps';
        width: 210px;
        height: 210px;
        p { margin-bottom: 0; }
        span:first-child {
            color: white;
            font-size: 14px;
            line-height: 19px;
            margin-right: 10px;
        }
        span:last-child {
            color: var(--secondary-color);
            font-size: 50px;
            line-height: 55px;
        }
    }
}

.apartment-details .info {
    max-width: 201px;
    .floor {
        margin-bottom: 20px;
        span:first-child {
            color: white;
            font: 12px 'BPG LE Studio 02 Caps';
            line-height: 15px;
            margin-right: 10px;
        }
        span:last-child {
            color: var(--secondary-color);
            font: 50px 'BPG LE Studio 02 Caps';
            line-height: 55px;
        }
    }

    div {
        color: white;
        display: flex;
        flex-direction: column;
        gap: 7px;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        margin-bottom: 30px;
    }
}

.pdf-link {
    border: 1px solid var(--secondary-color);
    color: white;
    -webkit-text-stroke: 0.5px white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    width: 160px;
    height: 80px;
    overflow: hidden;
}
  
.letter {
    display: inline-block;
    height: 21px;
    overflow: hidden;
    position: relative;
    span {
        display: block;
        transform: translateY(0);
        transition: transform 0.6s ease;
    }
}
  
.pdf-link:hover .letter span { transform: translateY(-100%); }
.pdf-link .letter:nth-child(1) span { transition-delay: 0s; }
.pdf-link .letter:nth-child(2) span { transition-delay: 0.1s; }
.pdf-link .letter:nth-child(3) span { transition-delay: 0.2s; }

.flat-img {
    max-width: 425px;
}

.apartment-in-detail {
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 20px;
    padding: 25px 20px;
    max-width: 243px;

    div {
        display: flex;
        flex-direction: column;
        font-family: 'BPG LE Studio 02 Caps';
        gap: 10px;
        span:first-child {
            font-size: 8px;
            line-height: 11px;
        }
        span:last-child {
            font-size: 12px;
            line-height: 15px;
        }
    }
}

.hidden-intro {
    display: none !important;
    opacity: 0;
}

.hidden-intro.show {
    display: block;
    animation: fadeIn 0.5s ease-in forwards;
}

.video-modal .modal-body {
    background: black !important;
    padding: 0;
    border: none;
    height: 450px;
    video {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }
}

.video-modal .modal-header {
    padding: 0;
    border: none;
}

.video-modal .btn-close {
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
    position: absolute;
    right: -30px;
}

.about-us-content {
    color: white;
    font: 16px 'BPG Mrgvlovani';
    line-height: 22px;
    margin: 0 auto 150px;
    max-width: 900px;
    > span:first-child {
        font-size: 30px;
        line-height: 31px;
        color: var(--secondary-color);
    }
}