:root {
    --primary-font: "Tenor Sans", sans-serif;
    --secondary-font: "Outfit", sans-serif;
    --primary-color: #1c346a;
    --secondary-color: #242424;
    --info-color: #ffffff;
    --text-color: #808080;
    --primary-font-size: 18px;
    --primary-transition-effect: all 0.35s linear;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--primary-font-size);
}

body {
    font-family: var(--secondary-font);
    font-weight: 500;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}

.primary-color {
    color: var(--primary-color);
}

.container {
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.primary-button {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 14px 30px;
    display: inline-block;
    color: var(--info-color);
    font-size: 17px;
    line-height: 24px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.35s ease-in-out;
    letter-spacing: 1px;
    font-family: var(--primary-font);
}

.primary-button.xl-button {
    padding: 15px 35px;
}

.primary-button:hover,
.primary-button:focus {
    background: #243056;
    color: var(--info-color);
}

.site-header {
    background: var(--info-color);
}

.site-logo {
    display: inline-block;
    width: 120px;
}

.site-header ul {
    justify-content: flex-end;
}

.site-header .primary-button {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.site-header .nav-item {
    font-family: var(--primary-font);
    letter-spacing: 1px;
    font-weight: 600;
    padding: 46px 0;
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    text-transform: uppercase;
}

.site-header .nav-item:hover,
.site-header .nav-item.active {
    color: var(--primary-color);
}

.site-header li+li {
    margin-left: 20px;
}

li.hasSubMenu {
    position: relative;
}

li.hasSubMenu .subMenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    background: var(--info-color);
    width: 230px;
    padding: 15px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--primary-transition-effect);
}

li.hasSubMenu:hover .subMenu {
    transform: none;
    opacity: 1;
    visibility: visible;
}

li.hasSubMenu .subMenu a {
    display: block;
    font-family: var(--primary-font);
    letter-spacing: 1px;
    font-weight: 600;
    padding: 10px 0;
    color: var(--secondary-color);
    font-size: 14px;
    text-transform: uppercase;
}

li.hasSubMenu .subMenu a:hover {
    color: var(--primary-color);
}

li.hasSubMenu .subMenu a+a {
    border-top: 1px solid var(--secondary-color);
}

/* banner css  */
.site-banner {
    overflow: hidden;
    position: relative;
}

.site-banner video {
    position: absolute;
    left: 0;
    top: -0;
    width: 100%;
    height: 129%;
    border: 0;
}

.site-banner::before {
    content: "";
    display: block;
    padding-top: 43.6%;
}

.section--spacing {
    padding: 100px 0;
}

.subheading {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
}

.subheading.light {
    color: var(--info-color);
}

.section-heading {
    font-family: var(--primary-font);
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 56px;
    margin-bottom: 20px;
}

.section-heading.light {
    color: var(--info-color);
}

.section-info {
    color: var(--text-color);
    line-height: 33px;
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 30px;
}

.section-info.light {
    color: var(--info-color);
}

.swiper-cube .swiper-cube-shadow:before {
    display: none;
}

.about-content {
    padding-left: 20px;
}

.aboutImg img {
    height: 600px;
    object-fit: cover;
}



.facilites-card {
    position: relative;
    overflow: hidden;
}

.facilites-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: rgb(0 0 0 / 16%);
    transition: all 0.5s linear;
}

.facilites-card:after {
    content: "";
    position: absolute;
    height: 90px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    transition: all 0.5s linear;
}

.facilites-card:hover:before {
    background: rgb(0 0 0 / 36%);
}

.facilites-img img {
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s linear;
}

.facilites-card:hover .facilites-img img {
    transform: scale(1.05);
}

.facilites-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    text-align: center;
    z-index: 2;
    transition: all 0.4s linear;
}

.facilites-card:hover .facilites-info {
    bottom: 50%;
    transform: translateY(50%);
}

.facilites-info h3 {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
    margin-bottom: 0;
}

.location-content ul {
    counter-reset: number;
}

.location-content li {
    counter-increment: number;
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-left: 50px;
}

.location-content li+li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e2e2;
}

.location-content li:before {
    content: "0" counter(number) ".";
    position: absolute;
    left: 0;
    top: 12px;
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0.5;
}

.location-content li:first-child:before {
    top: 0;
}

.location-slider {
    overflow: hidden;
    width: 560px;
}

.location-img {
    position: relative;
}

.location-card img {
    width: 100%;
}

.location-quote {
    position: absolute;
    right: 20px;
    bottom: 0;
    background: var(--primary-color);
    padding: 40px 50px;
    max-width: 310px;
}

.location-quote h3 {
    font-family: var(--primary-font);
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 46px;
    margin-bottom: 0;
}

.location-content {
    padding-right: 80px;
}

.location-img {
    overflow: hidden;
}

.location-col {
    display: inline-block;
    vertical-align: top;
}

.walkthrough-video {
    overflow: hidden;
    position: relative;
    padding: 380px 0;
    background-image: url(../img/walkthrough-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.walkthrough-video::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.walkthrough-video .play-btn {
    background: transparent;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    opacity: 0.7;
    transition: all 0.35s ease-in-out;
}

.walkthrough-video:hover .play-btn {
    opacity: 1;
}

#staticBackdrop .modal-content:before {
    content: "";
    display: block;
    padding-top: 56.3%;
}

#staticBackdrop .modal-content iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.modal-content button.close {
    position: absolute;
    right: -15px;
    top: -15px;
    background: #fff;
    opacity: 1;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 40px;
    color: var(--primary-color);
    z-index: 2;
}

.modal-content button.close:hover,
.modal-content button.close:focus {
    opacity: 1 !important;
}

.modal-content button.close span {
    font-size: 32px;
    font-weight: 300;
    line-height: 30px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
}

.nav-pills .nav-link {
    border-radius: 0;
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-item {
    padding: 0 15px;
}

.apartment-img {
    height: 100%;
}

.apartment-img img {
    height: 100%;
    object-fit: cover;
}

.apartment-info {
    background: var(--primary-color);
    padding: 50px;
    height: 100%;
}

.apartment-info h3 {
    font-size: 32px;
    font-family: var(--primary-font);
    margin-bottom: 15px;
    color: var(--info-color);
}

.apartment-info p {
    margin: 0 0 30px;
    font-size: 17px;
    color: var(--info-color);
    font-family: var(--primary-font);
    line-height: 32px;
}

.apartment-info li {
    font-size: 16px;
    font-weight: 500;
    color: var(--info-color);
    font-family: var(--primary-font);
}

.apartment-info li:first-child {
    font-weight: 600;
}

.apartment-info ul+ul {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ffffff29;
}

.site-location {
    /* background: #f6f8ff; */
}

.site-location-content {
    padding-left: 30px;
}

.site-location-content li {
    color: var(--text-color);
    line-height: 33px;
    font-size: 19px;
    font-weight: 400;
    padding-left: 30px;
    position: relative;
}

.site-location-content li+li {
    margin-top: 20px;
}

.site-location-content li:before {
    z-index: 1;
    content: "";
    position: absolute;
    left: 4px;
    top: 12px;
    width: 11px;
    height: 7px;
    border-left: 2px solid var(--info-color);
    border-bottom: 2px solid var(--info-color);
    transform: rotate(-45deg);
}

.site-location-content li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 20px;
}

.site-footer {
    padding: 80px 0 20px;
    background: var(--primary-color);
}

.site-footer .section-heading {
    color: var(--info-color);
}

.site-footer .footer-title {
    color: var(--info-color);
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    padding: 0 30px;
}

.footer-links a {
    color: var(--info-color);
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.mail-address {
    border-bottom: 1px solid;
}

.footer-links a.footer-phone {
    font-size: 23px;
    opacity: 1;
    display: inline-block;
    margin-top: 15px;
}

.footer-socail-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    border: 1px solid;
    border-radius: 40px;
    margin-bottom: 0;
    text-align: center;
    line-height: 40px;
}

.footer-socail-links a img {
    width: 20px;
}

.footer-socail-links {
    display: flex;
    margin-top: 30px;
}

.footer-socail-links li+li {
    margin-left: 14px;
}

.footer-bottom {
    padding-top: 20px;
    margin-top: 50px;
    border-top: 1px solid #ffffff42;
}

p.copyright {
    color: var(--info-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0.9;
    text-align: right;
}

.footer-menu-links li+li {
    margin-left: 20px;
}

.footer-menu-links a {
    color: var(--info-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.site-map {
    position: relative;
}

.site-map:before {
    content: "";
    display: block;
    padding-top: 95%;
}

.site-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

div#exampleModal .modal-content button.close {
    background: var(--primary-color);
    color: #fff;
}

div#exampleModal .modal-content button.close span {
    line-height: 26px;
}

.site-inner-banner {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: center;
}

.site-inner-banner h1 {
    font-family: var(--primary-font);
    font-size: 54px;
    color: var(--info-color);
    margin-bottom: 0;
    font-weight: 700;
}

.why-us {
    /* background: #f5f5f5; */
    background: url(/wp-content/uploads/2025/08/walkthrough-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
}

.why-us::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}

.page-template-template-site-map .faclility-section .row [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
}


.why-us .container {
    position: relative;
    z-index: 1;
}

.why-card {
    background: #ffffffed;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.why-card h3 {
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0;
}

.why-card p {
    color: var(--text-color);
    line-height: 28px;
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 0;
}

.why-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: #1c346a;
    text-align: center;
    border-radius: 70px;
    line-height: 100px;
}

.why-card .icon img {
    width: 50px;
    filter: invert(1);
    opacity: 0.8;
}

.slick-list {
    overflow: hidden;
}

.safety-info {
    padding: 30px 5px 20px;
}

.safety-img img {
    height: 490px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s linear;
}

.safety-info h3 {
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 30px;
    margin-bottom: 12px;
}

.safety-info p {
    color: var(--text-color);
    line-height: 28px;
    font-size: 19px;
    font-weight: 300;
}

.location-main-section .site-map:before {
    content: "";
    display: block;
    padding-top: 111%;
}

.gallery a img {
    height: 350px;
    object-fit: cover;
}

.contactUs-content .contact-details a {
    font-family: var(--primary-font);
    padding: 6px 0;
    display: inline-block;
    color: #808080;
}

.contactUs-form {
    background: var(--info-color);
    padding: 50px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contactUs-form .form-control {
    border-width: 0 0 1px 0;
    border-color: #ccc;
    border-style: solid;
    color: var(--primary-color);
    background: transparent;
    font-weight: 300;
    width: 100%;
    outline: 0;
    height: 50px;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.contactUs-form .form-control:focus {
    box-shadow: none;
}

.contactUs-form textarea.form-control {
    height: 120px;
    resize: none;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.contactUs-form.section {
    height: 100%;
    box-shadow: 0 0 30px rgb(0 0 0 / 22%);
    color: #ffff;
}

.nav-tabs .nav-link {
    margin-bottom: 0;

    border: none;
    color: #242424;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #1c346a;
}

.nav-tabs {
    border-bottom: none;
}

ul#myTab {
    justify-content: center;
}

ul#myTab li a {
    font-size: 21px;
    font-weight: 600;
}

.floor-section {
    padding: 100px 0 50px;
}

.amenties-img img {
    height: 55px;
}

.amenties-card {
    background-color: #ffffff;
    padding: 40px 30px 35px;
    text-align: center;
    border-radius: 10px;
    height: 100%;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.10);
}

.amenties-info {
    margin-top: 20px;
}

.amenties-info h3 {
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 0;
    font-weight: 600;
}

.amenties-col {
    margin-bottom: 30px;
}

.construction-info {
    padding: 20px 0px 60px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.construction-info h4 {

    font-size: 21px;
    font-weight: 600;
}

a.link.construction {
    font-size: 21px;
    font-weight: 600;
}

.slider-col {
    display: inline-block;
    vertical-align: top;
}

.construction-card img {
    width: 100%;

}

.slider-card img {
    height: 600px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 30px 0;
    width: 100%;
}

.construction-detail-section {
    padding: 100px 0;
}

.location-main-site-map {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}


.sidebar {
    position: fixed;
    right: -103px;
    top: 50%;
    transform: rotate(90deg);
    z-index: 9;
    display: flex;
    flex-direction: column;
    padding: 12px 3px 12px 14px;
    border-radius: 13px;
}


.menu-icon img,
.close-icon img {
    width: 30px;
    height: auto;
    cursor: pointer;
}

.close-icon img {
    filter: invert(1);
}

.location-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}


.menu-icon,
.close-icon {
    display: none;
}

.faclility-section {
    text-align: center;
}
.construction-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}








/* *******************
           **Responsive **
        ******************* */



@media (max-width: 1440px) {
    .container {
        max-width: 1366px;
    }
}



@media (max-width: 1366px) {
    .container {
        max-width: 1280px;
    }

    .section-heading {
        font-size: 40px;
        line-height: 52px;
    }

    .primary-button {
        padding: 14px 22px;
    }
}



@media (max-width: 1280px) {
    .container {
        max-width: 1200px;
    }

    .section-heading {
        font-size: 35px;
        line-height: 50px;
    }

    .site-header {
        padding: 10px 0;
    }


    .footer-menu-links a {
        margin-right: 10px;
    }

    .footer-menu-links li+li {
        margin-left: 0;
        margin-right: 10px;
    }

    .site-inner-banner h1 {
        font-size: 44px;
    }




    .site-header .primary-button {
        position: fixed;
        top: 600px;
        z-index: 9999;
        display: none;
        right: 48px;
    }

    .menu-icon {
        display: block;
    }

    .close-icon {
        display: none;
    }

    .menu-open .menu-icon {
        display: none !important;
    }

    .menu-open .close-icon {
        display: block !important;
        z-index: 9999;
        position: absolute;
        right: 22px;
        top: 22px;
    }

    .site-header .nav-item {
        padding: 16px 30px 16px 10px;
    }

    .site-header ul {
        flex-direction: column;
        justify-content: start;
    }

    .site-nav {
        flex-direction: row;
        position: fixed;
        top: 0;
        right: -50%;
        color: #fff;
        width: 300px;
        z-index: 1000;
        padding: 15px 20px;
        height: 100vh;
        margin-right: 0 !important;
        overflow-y: auto;
        pointer-events: none;
        background: #1C346A;
        opacity: 0;
        visibility: hidden;
        transition: all 0.50s linear;
        padding: 62px 20px 0 20px;
    }

    .site-header li+li {
        margin-left: 0px;
    }

    .site-header .nav-item {
        color: #ffffff;
    }

    .site-nav.active {
        pointer-events: all;
        opacity: 1;
        visibility: visible;
        right: 0;
    }

    .site-header .nav-item:hover,
    .site-header .nav-item.active {
        color: #fff;
    }

    li.hasSubMenu .subMenu a {
        color: #ffffff;
        padding: 10px 9px;
        opacity: 0.8;
        font-size: 12px;
    }

    li.hasSubMenu .subMenu a:hover {
        color: #ffffff;
    }

    li.hasSubMenu .subMenu a+a {
        border-top: 1px solid #ffffff30;
    }

    .hasSubMenu .nav-item:after {
        content: "";
        position: absolute;
        right: 15px;
        top: 16px;
        width: 12px;
        height: 12px;
        border-bottom: 1px solid;
        border-right: 1px solid;
        transform: rotate(45deg)
    }

    /* li.hasSubMenu .subMenu {
    position: inherit;
    opacity: 1;
    visibility: visible;
} */

    li.hasSubMenu .subMenu {
        width: 220px;
        padding: 10px;
        background-color: #f8f8f800;
        position: static;
        top: 36%;
        z-index: 1;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        display: none;
    }


    .facilites-info {
        padding: 20px 10px;
    }

}



@media (max-width: 1199px) {

    .container {
        max-width: 1024px;
    }

    .facilites-card {
        margin-bottom: 30px;
    }

    .safety-img img {
        height: 340px;
        width: 100%;
    }

    .site-inner-banner h1 {
        font-size: 42px;
    }

    .site-header .primary-button {
        right: 10px;
    }

  

    .contactUs-section img {
        max-width: 100%;
        height: 100%;
    }

}




@media (max-width: 1024px) {
    .container {
        max-width: 912px;
    }

    .section--spacing {
        padding: 80px 0;
    }

    .site-footer {
        padding: 60px 0px;
    }

    .section-heading {
        font-size: 34px;
        line-height: 48px;
    }

    .facilites-info h3 {
        font-size: 23px;
        line-height: 28px;
    }

    .location-quote h3 {
        font-size: 32px;
        line-height: 43px;
    }

    .location-quote {
        right: 0;
        padding: 20px 30px;
        max-width: 270px;
    }

    .apartment-info p {
        margin: 0px;
        font-size: 16px;
        line-height: 30px;
    }


    .apartment-info h3 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .footer-links {
        padding: 0px;
    }

    .site-inner-banner h1 {
        font-size: 42px;
    }

    .gallery-top-img img {
        max-width: 100%;
        object-fit: cover;
    }


    .contactUs-section img {
        max-width: 100%;
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

    .contactUs-form {
        padding: 30px;
    }

    .wpcf7-form-control-wrap {
        width: 100%;
    }

    .contactUs-form.section {
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .subheading {
        margin: 28px 0 12px 0px;
    }

    .location-col {
        display: block;
    }

    .location-slider {
        overflow: hidden;
        width: 100%;
    }

    .location-card img {
        margin-top: 20px;
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .walkthrough-video {
        padding: 250px 0;
    }

    .construction-slider .slider-card img {
        height: 400px;
    }

    .aboutImg img {
        height: 450px;
        width: 100%;
        object-fit: cover;
    }

    .safety-info p {
        font-size: 18px;
    }

    .faclility-section {
        text-align: left;
    }
}


@media (max-width: 912px) {
    .container {
        max-width: 834px;
    }

    .section--spacing {
        padding: 70px 0;
    }

    .section-heading {
        font-size: 32px;
        line-height: 48px;
    }

    .section-info {
        line-height: 30px;
        font-size: 18px;
        margin-bottom: 28px;
    }

    .location-quote h3 {
        font-size: 30px;
        line-height: 40px;
    }

    .site-location-content li {
        line-height: 28px;
        font-size: 18px;
        font-weight: 400;
        padding-left: 29px;
    }

    .site-location-content li+li {
        margin-top: 12px;
    }

    a.link.construction {
        font-size: 19px;
        font-weight: 600;
    }

    .construction-info h4 {
        font-size: 19px;
        font-weight: 600;
    }

    .site-footer {
        padding: 50px 0px;
    }

    .facilites-info {
        padding: 30px 30px;
    }

    .site-inner-banner h1 {
        font-size: 40px;
    }

    .amenties-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 834px) {
    .container {
        max-width: 800px;
    }

    .section--spacing {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 30px;
        line-height: 46px;
    }

    .safety-info h3 {
        font-size: 23px;
    }
}

@media (max-width: 800px) {
    .container {
        max-width: 768px;
    }

    .section--spacing {
        padding: 55px 0;
    }

    .site-inner-banner h1 {
        font-size: 36px;
    }

    .walkthrough-video {
        padding: 200px 0;
    }

    .safety-info p {
        font-size: 17px;

    }
}

@media (max-width: 767px) {
    .container {
        max-width: 650px;
    }

    .section--spacing {
        padding: 50px 0;
    }

    .site-footer {
        padding: 50px 0px;
    }

    .section-heading {
        font-size: 28px;
        line-height: 44px;
        margin-bottom: 10px;
    }

    .subheading {
        font-size: 14px;
        font-weight: 500;
        margin: 24px 0 12px 0px;
    }

    .about-content {
        padding-left: 0px;
    }

    .primary-button.xl-button {
        padding: 10px 25px;
    }

    .facilites-card {
        margin-bottom: 30px;
    }

    .location-img {
        margin-top: 30px;
    }

    .location-img {
        display: flex;
        justify-content: center;
    }

    .site-logo {
        width: 90px;
    }

    .location-quote {
        right: 0;
        padding: 10px 20px;
        max-width: 230px;
        left: 0;
    }

    .location-card img {
        height: 420px;
        object-fit: cover;
    }

    p.copyright {
        margin-top: 20px;
    }

    .location-quote h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .apartment-info h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .location-page-btn {
        display: flex;
        justify-content: left;
    }

    .gallery a img {
        height: 350px;
        object-fit: cover;
        width: 100%;
    }

    .apartment-info {
        padding: 40px;
    }

    .gallery-top-img {
        MARGIN: 0;
    }

    .gallery-top-img img {
        height: 496px;
    }



    .footer-links {
        padding: 0px;
    }

    .site-footer .footer-title {
        font-size: 20px;
        font-weight: 700;
        margin: 14px 0px 8px 0px;
    }

    .footer-links a {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-links a.footer-phone {
        font-size: 17px;
        margin-top: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 0px;
    }

    p.copyright {
        text-align: left;
    }

    .facilites-info {
        text-align: left;
        padding: 20px 20px;
    }

    .aboutImg img {
        height: 382px;
        width: 100%;

    }



    .site-inner-banner h1 {
        font-size: 34px;
    }

    .amenties-info h3 {
        font-size: 17px;
    }

    .why-card h3 {
        font-size: 26px;
    }

    .why-card p {
        font-size: 18px;
    }

    .safety-info h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 610px;
    }

    .section--spacing {
        padding: 45px 0;
    }

    .site-footer {
        padding: 45px 0px;
    }

    .section-heading {
        font-size: 26px;
        line-height: 42px;
    }

    .section-info {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .site-inner-banner h1 {
        font-size: 30px;
    }

    .location-content li:before {
        font-size: 20px;
        font-weight: 600;
    }

    .why-card {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 550px;
    }

    .section-heading {
        font-size: 24px;
        line-height: 40px;
    }

    .facilites-info h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .location-card img {
        margin-top: 10px;
        height: 400px;
    }
}

@media (max-width: 540px) {
    .container {
        max-width: 100%;
    }

    .section--spacing {
        padding: 40px 0;
    }

    .site-footer {
        padding: 40px 0px;
    }

    .section-heading {
        font-size: 22px;
        line-height: 36px;
    }

    .primary-button.xl-button {
        padding: 8px 24px;
        font-size: 15px;
    }

    .location-content li {
        font-size: 17px;
        font-weight: 600;
        padding-left: 40px;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .location-quote h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .apartment-info p {
        font-size: 15px;
        line-height: 28px;
    }

    .apartment-info h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .apartment-info {
        padding: 30px;
    }

    .walkthrough-video {
        padding: 200px 0px;
    }

    .amenties-info h3 {
        font-size: 16px;
    }

    .gallery-top-img img {
        height: 420px;
    }

    .why-card p {
        font-size: 16px;
    }

    .construction-info h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .construction-slider .slider-card img {
        height: 300px;
    }

    a.link.construction {
        font-size: 18px;
        font-weight: 600;
    }

    .safety-info p {
        font-size: 16px;
    }

    .site-location-content li {
        line-height: 28px;
        font-size: 17px;
        font-weight: 400;
        padding-left: 29px;
    }

    .site-location-content li+li {
        margin-top: 8px;
    }

    .footer-links a {
        font-size: 16px;
        margin-bottom: 20px;
    }

    p.copyright {
        margin-top: 0px;
    }

    .footer-links a.footer-phone {
        font-size: 16px;
        margin-top: 12px;
    }

    .aboutImg img {
        height: 300px;
        object-fit: cover;
    }



    .footer-socail-links a {
        width: 35px;
        height: 35px;
        line-height: 30px;
    }

    .footer-socail-links a img {
        width: 12px;
    }

    .footer-socail-links {
        margin-top: 12px;
    }

    .footer-menu-links {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ffffff42;
    }

    .site-inner-banner h1 {
        font-size: 28px;
    }

    .why-card .icon img {
        width: 40px;
    }

    .why-card .icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }

    .why-card h3 {
        font-size: 24px;
    }

    .safety-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 20px;
        line-height: 32px;
    }

    .subheading {
        font-size: 13px;

    }

    .section-info {
        line-height: 26px;
        font-size: 16px;
        margin-bottom: 2px;
    }

    .facilites-info h3 {
        font-size: 20px;
        line-height: 26px;
    }



    .gallery-top-img img {
        height: 320px;
    }
}
.blog-text {
    color: var(--text-color);
    line-height: 29px;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 10px;
}

.blog-heading a {
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    line-height: 31px;
}

.blog-date {
    color: #1c346a;
    font-weight: 500;
    font-size: 18px;
}

.blog-card-img .rounded {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
a.blog-read-more {
    color: #1c346a;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid;
}
.blog-card {
    margin-bottom: 35px;
}


.single-blog .container {
    max-width: 1040px;
}
.blog-info p {
    color: var(--text-color);
    line-height: 28px;
    font-size: 18px;
    font-weight: 300;
}

.presence-info ul {
    display: flex;
    flex-wrap: wrap;
}

.presence-info ul li {
    width: 25%;
    padding: 0 29px;
    text-align: center;
}

.presence-info ul li + li {
    border-left: 1px solid #e0e0e0;
}

.presence-info h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--primary-font);
}

.presence-info p {
    color: #808080;
    font-weight: 300;
    /*font-size: 16px;*/
    margin-bottom: 0;
}

.presence-info {
    margin-top: 50px;
}

/*.presence-section {
    padding: 40px 0;
    background: #f9f9f9;
}*/
/*.presence-section .section-heading {
    font-size: 24px;
    line-height: normal;
}*/
/*.presence-section .subheading {
    margin-bottom: 10px;
    font-size: 14px;
}*/
.presence-icon {
    width: 70px;
    margin: 0 auto 20px;
}