@charset "UTF-8";

/*
Theme Name:Allen Rocks Wordpress Theme
Author:Chelsea Brown
Author URI:https://focusedcre.com
Description:Custom wordpress theme for Allen Rocks
Version:1
*/
:root {
    --primary: #384159;
    --third: #3b548e;
    --fourth: #afbcca;
    --primaryColor: #86B053;
    --secondaryColor: #4883BE;
}

@font-face {
    font-family: 'SwilyBrightItalic';
    src: url(assets/fonts/SwilyBright-Italic.otf);
}

html {
    scroll-padding-top: 137px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    width: 100%;
}

.websiteWrapper {
    overflow-x: clip;
}

/************************* fonts,buttons,icons and text blocks styles**********************************/

h1 {
    font-size: 50px;
    color: var(--primary);
    line-height: 50px;
}

h2 {
    font-size: 44px;
    color: var(--primary);
    line-height: 44px;
    font-family: "freight-big-pro", serif;
}

h3 {
    font-size: 24px;
    color: var(--primary);
    line-height: 26px;
}

h4 {
    font-size: 20px;
    color: var(--primary);
    line-height: 30px;
}

h5 {
    font-size: 16px;
    color: var(--primary);
    line-height: 24px;
}

h6 {
    font-size: 14px;
    color: var(--primary);
    line-height: 18px;
}

.heading-inline {
    display: inline !important;
}

a {
    color: var(--primary);
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out !important;
    -moz-transition: 0.3s ease-in-out !important;
    -ms-transition: 0.3s ease-in-out !important;
    -o-transition: 0.3s ease-in-out !important;
    transition: 0.3s ease-in-out !important;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: none
}

ul {
    margin: 0;
    padding: 0
}

ul li {
    list-style: none;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

#map {
    height: 400px;
}

.idScrollFix {
    margin-top: -90px;
    padding-top: 90px;
}

.overflow-x {
    overflow-x: hidden;
}

.cusBtn {
    position: relative;
    padding: 18px 35px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    background: var(--secondaryColor);
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 1px;
}

.cusBtn:hover {
    background: #000000;
    color: #ffffff;
}

.cusBtn i {
    font-size: 14px;
}

.cusBtn1 {
    position: relative;
    padding: 18px 35px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    background: var(--primaryColor);
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 1px;
}

.cusBtn1:hover {
    background: #000000;
    color: #ffffff;
}

.cusBtn1 i {
    font-size: 14px;
}
.cusBtn2 {
    position: relative;
    padding: 18px 35px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    background: var(--primaryColor);
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 1px;
}

.cusBtn2:hover {
    background: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: #ffffff;
}

.cusBtn2 i {
    font-size: 14px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    border: none;
    padding: 40px 50px;
    background: var(--primaryColor);
    transition: all 0.4s;
}

#header .logo img {
    width: 300px;
    transition: all 0.4s;
}

#header.header-scrolled {
    top: 0;
}

/* #header.header-scrolled .logo img{width:170px;}
#header.header-scrolled .navbar li.current-menu-item a,#header.header-scrolled .navbar li.current-menu-item:focus a,#header.header-scrolled .navbar li a,#header.header-scrolled .navbar li a:focus{color:#ffffff;} */
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width:1199px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
        padding: 0 15px;
    }

    .navbar li:last-child {
        padding-right: 0;
    }

    .navbar li:last-child a:not(.sub-menu li a),
    .navbar li:last-child a:not(.sub-menu li a):focus {
        border: 1px solid #ffffff;
        padding: 15px 30px;
		background: rgba(0, 0, 0, 0.1);
    }

    .navbar ul li:last-child:hover a {
        background: rgba(0, 0, 0, 0.2) !important;
        color: #ffffff;
/*         border: 1px solid var(--secondaryColor) !important; */
    }

    .navbar ul li:last-child:hover a::after {
        display: none;
    }

    .navbar li:last-child a:after {
        display: none;
    }

    .navbar li a,
    .navbar li a:focus {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #ffffff;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
        padding: 0;
        font-weight: 500;
    }

    .navbar li.current-menu-item a,
    .navbar li.current-menu-item:focus a {
        color: #ffffff;
        font-weight: 500;
    }

    .navbar li a:hover,
    .navbar li:hover a {
        color: #ffffff;
        font-weight: 500;
    }

    .navbar li a:after {
        position: absolute;
        content: '';
        width: 0;
        height: 2px;
        bottom: -7px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--fourth);
        -webkit-transition: width 0.3s ease;
        -moz-transition: width 0.3s ease;
        -ms-transition: width 0.3s ease;
        -o-transition: width 0.3s ease;
        transition: width 0.3s ease;
    }

    .navbar li.current-menu-item a:after,
    .navbar li a:hover:after {
        width: 100%;
    }

    /*.navbar li.menu-item-has-children a:after{content:"\f078"; display:inline-block; font-family:'fontawesome'; position:absolute; top:50%; right:0; transform:translateY(-50%); font-size:12px;}*/

    .navbar li.menu-item-has-children ul.sub-menu {
        display: block;
        position: absolute;
        left: 15px;
        top: 30px;
        margin: 0;
        padding: 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 0;
    }

    .navbar li.menu-item-has-children ul.sub-menu li {
        min-width: 200px;
        padding: 0;
    }

    .navbar li.menu-item-has-children ul.sub-menu a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
    }

    .navbar li.menu-item-has-children ul.sub-menu a i {
        font-size: 12px;
    }

    .navbar li.menu-item-has-children ul.sub-menu a:hover {
        color: #ffffff;
        background: var(--secondaryColor) !important;
        border: none !important;
    }

    .navbar li.menu-item-has-children:hover ul.sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .navbar li.menu-item-has-children ul.sub-menu li a:after {
        display: none;
    }
}

@media (min-width:1199px) and (max-width:1199px) {
    .navbar .menu-item-has-children .menu-item-has-children ul.sub-menu {
        left: -90%;
    }

    .navbar .menu-item-has-children .menu-item-has-children:hover>ul.sub-menu {
        left: -100%;
    }
}

@media (min-width:1199px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width:1199px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: var(--primaryColor);
        opacity: .95;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .current-menu-item a,
    .navbar .current-menu-item:focus a,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .menu-item-has-children ul.sub-menu,
    .navbar .menu-item-has-children .menu-item-has-children ul.sub-menu {
        position: static;
        display: block;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: rgba(20, 35, 51, 0.25);
    }

    .navbar .menu-item-has-children>.submenu-active,
    .navbar .menu-item-has-children .menu-item-has-children>.submenu-active {
        display: block;
    }

    .mobile-nav-show {
        font-size: 20px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        color: #fff;
        padding-right: 30px;
    }

    .mobile-nav-hide {
        color: rgba(255, 255, 255, 0.9);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 30px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: #000000;
        opacity: .7;
        z-index: 9996;
    }
}

@media (min-width:1199px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none !important;
    }
}

.sub-menu-toggle {
    display: none !important;
}

/*--------------------------------------------------------------
#   Header Banner Section
--------------------------------------------------------------*/

.mainBanner {
    position: relative;
}

.mainBanner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

.mainBannerText {
    padding: 300px 0 70px 0;
    position: relative;
    z-index: 1;
}

.mainBannerText h2 {
    text-align: center;
    color: #ffffff;
    font-size: 38px;
    line-height: 38px;
    text-transform: uppercase;
}

.ComingSoonSec {
    padding: 150px 0;
}

/*--------------------------------------------------------------
#  Slider Section
--------------------------------------------------------------*/
.sliderSec {
    position: relative;
    overflow: hidden;
}

.sliderSec:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 35%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.sliderSec .sliderText {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1140px;
    max-width: 100%;
    z-index: 2;
    position: absolute;
    text-align: left;
}

.sliderSec .sliderText img {
    width: 600px;
    max-width: 100%;
    margin-bottom: 30px;
}

.sliderSec .sliderText h1 {
    margin-bottom: 50px;
    font-size: 24px;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 2px 2px 3px rgb(0 0 0 / 70%);
}

.sliderSec .owlSilder .item {
    overflow: hidden;
}

.sliderSec .owlSilder .item img {
    animation: zoomIn 10s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1.1);
    }
}

.sliderSec .owl-carousel .owl-item img {
    width: 100%;
    transition: filter 0.5s ease;
    filter: blur(160px);
    height: 100vh;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.sliderSec .owl-carousel .owl-item.active img {
    filter: none;
}

/*--------------------------------------------------------------
#    Title Section
--------------------------------------------------------------*/
.titleHead h2 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 50px 0;
    color: var(--fourth);
}

.titleHead h2 strong {
    color: var(--secondaryColor);
    font-family: 'SwilyBrightItalic';
}

.titleHeadWhite h2 {
    color: #ffffff;
}

/*--------------------------------------------------------------
#    About Section
--------------------------------------------------------------*/

.aboutSec {
    padding: 100px 0;
    position: relative;
    background: var(--primaryColor);
}

.aboutSec .aboutImg img {
    width: 200px;
    opacity: 0.30;
}

.aboutText {
    width: 991px;
    max-width: 100%;
}

.aboutSec .aboutText h2 {
    font-size: 35px;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 50px;
}

.aboutSec .aboutText h2 strong {
    letter-spacing: 1px;
    font-family: 'SwilyBrightItalic';
}

.aboutSec .aboutSecText a {
    margin-top: 40px;
}

.aboutSec .aboutMission {
    background: var(--primaryColor);
    padding: 60px 40px;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contactSec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contactSec:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(246 245 250 / 40%);
    mix-blend-mode: multiply;
    z-index: -1;
}

.contactLogo {
    float: right;
    margin-top: 50px;
}

.contactLogo img {
    width: 280px;
}

.form-fields,
.form-fields2,
.form-fields3 {
    width: 100% !important;
    box-sizing: border-box;
    padding: 5px 0;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 20px;
    border: none;
    text-transform: uppercase;
    background: none;
    color: var(--third);
    border-bottom: 2px solid #ffffff;
    -webkit-transition: 0.3s ease-in-out !important;
    -moz-transition: 0.3s ease-in-out !important;
    -ms-transition: 0.3s ease-in-out !important;
    -o-transition: 0.3s ease-in-out !important;
    transition: 0.3s ease-in-out !important;
}

.form-fields:focus,
.form-fields2:focus,
.form-fields3:focus {
    border-bottom: 2px solid #ffffff;
    outline: none !important;
}

.form-fields3 {
    height: 130px;
}

.wpcf7-submit,
.ln-widgetBox.search .searchButton a {
    float: left;
    position: relative;
    padding: 15px 45px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    background: #ffffff;
    color: var(--primary);
    border: none;
    -webkit-transition: 0.3s ease-in-out !important;
    -moz-transition: 0.3s ease-in-out !important;
    -ms-transition: 0.3s ease-in-out !important;
    -o-transition: 0.3s ease-in-out !important;
    transition: 0.3s ease-in-out !important;
}

.wpcf7-submit:hover {
    background: var(--primaryColor);
    color: #ffffff;
    border: none;
}

div.wpcf7 img.ajax-loader {
    float: left;
}

.wpcf7-list-item {
    display: inline-block;
    margin-right: 10px;
}

div.wpcf7-response-output {
    float: left;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-not-valid {
    border-bottom: 2px solid #b31926 !important;
}

::placeholder {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--third);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #b31926;
    color: var(--third);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footerSec {
    padding: 0;
}

.footerSec .footerTop {
    padding: 60px 20px;
}

.footerSec .footerTop h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.footerSec .footerLogo {
    width: 220px;
    display: grid;
    gap: 70px;
    justify-items: start;
}

.footerRightCol .footerLogo {
    width: 100%;
}

.footerSec .footerLogo a {
    display: block;
}

.footerSec .footerLogo a img {
    max-width: 100%;
    width: 280px;
}

.footerSec .footerTop .footerLink ul li {
    display: block;
}

.footerSec .footerTop .footerLink ul li a {
    font-size: 15px;
    line-height: 30px;
}

.footerSec .footerTop .footerLink ul li a:hover {
    font-weight: 600;
}

.footerSec .footerTop .footerIcon ul li {
    display: inline-block;
    margin-right: 5px;
}

.footerSec .footerTop .footerIcon ul li a {
    color: var(--primary);
    background: var(--fourth);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: block;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
}

.footerSec .footerTop .footerIcon ul li a:hover {
    background: var(--primaryColor);
    color: #ffffff;
}

.footerSec .footerBottom {
    padding: 30px 0;
    background: var(--primaryColor);
    text-align: center;
}
.footerSec .footerBottom * {
    color: #ffffff;
}

.footerSec .footerBottom .footerSecBottom p {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.footerSec .footerBottom .footerSecBottom p a {
    color: #ffffff;
    font-weight: 400;
}

.footerSec .footerBottom .footerSecBottom p a:hover {
    text-decoration: underline;
}

.footerSec .footerInfo li strong {
    font-weight: 600;
}

.footerSec .footerInfo li a {
    font-size: 15px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.propertiesSec {
    position: relative;
}


.propertiesSec a {
    display: block;
    position: relative;
}

.propertiesSec img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
    min-width: 100%;
}

.propertiesSec a:before {
    content: "";
    position: absolute;
    background: var(--primaryColor);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all .5s ease;
}

.propertiesSec a:hover:before {
    opacity: 0.5;
}

.propertiesSecBtn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 30px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--primaryColor);
    color: #fff;
    font-size: 18px;
    text-align: center;
    min-width: 55%;
    transition: 0.3s ease-in-out;
    z-index: 2;
}

.propertiesSecBtn:hover {
    background: var(--secondaryColor);
}
/* .propetiesBox1 .propertiesSec .propertiesSecBtn {
    background: var(--secondaryColor);
}
.propetiesBox1 .propertiesSec .propertiesSecBtn:hover {
    background: var(--primaryColor);
} */

/*--------------------------------------------------------------
# Availability Section
--------------------------------------------------------------*/
.availabilitySec {
    padding: 100px 0 0 0;
    position: relative;
    background: var(--fourth);
}

ul.master {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

li.floors-container {
    display: flex;
    flex-wrap: wrap;
}

li.floors-container>div {
    width: 50%;
}

li.floors-container .buildingPhoto {
    position: relative;
    background: url('assets/img/building-base-new.png') left top no-repeat;
    background-size: auto;
}

li.floors-container .buildingPhoto::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: grayscale(100%);
    z-index: 2;
    pointer-events: none;
}

.buildingPhoto img {
    max-width: 100%;
    position: relative;
    z-index: -9;
}

li.floors-container ul.floors-data:not(.customFloorModalBody ul) {
    background: #dddddd;
    position: relative;
    position: sticky;
    top: 142px;
}

li.floors-container ul.floors-data li:not(.customFloorModalBody ul li) {
    display: block;
    width: 100%;
    padding: 10px 10% 10px 5%;
    color: var(--primary);
    border-bottom: 2px dashed #ffffff;
    cursor: pointer;
}

li.floors-container .buildingPhoto span.seventeenth-floor {
    position: absolute;
    top: 4%;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
}

li.floors-container>.buildingPhoto>span.seventeenth-floor {
    cursor: pointer;
}

.floor-hover,
.floor-1:hover,
.floor-2:hover {
    background: #3b548e;
    color: #ffffff !important;
}

.floors {
    fill: #ffffff;
    opacity: 0.8;
    cursor: pointer;
    transform: scale(100%);
}

.floors:hover,
.poly-hover {
    fill: #091532;
}

.floors-alt {
    fill: #333333;
    opacity: 0;
    cursor: pointer;
    transform: scale(100%);
}

.floors-alt:hover {
    opacity: 0.8;
}

.floor-svg {
    position: absolute;
    left: 2%;
    top: 7.3%;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.floors-suites {
    padding: 5px 0;
    font-size: 22px;
}

.floors-sf {
    padding: 5px 0;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.floors-data span {
    margin: 0;
}

.floor-na {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    opacity: 0;
    background: #333333 !important;
    transition: 0.3s;
    padding: 5% 10% 5% 5% !important;
}

.floor-na span {
    color: #ffffff !important;
}

.floor-alt-hover {
    opacity: 1;
    top: 0;
}

.customFloorModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.customFloorModal.show {
    display: flex;
}

.customFloorModalContent {
    background: #fff;
    width: calc(100% - 60px);
    max-height: 92%;
    overflow-y: auto;
    padding: 30px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.4s ease;
}

.customFloorModalClose {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 34px;
    cursor: pointer;
    color: #888;
}

.customFloorModalBody {
    margin-top: 20px;
}

.customFloorModalBody h4 {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 20px;
    color: var(--third);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customFloorModalBody h3 {
    margin-bottom: 30px;
}

.customFloorModalBody .customFloorModalCTABox a.custombtnG {
    margin-top: 2px;
    min-width: 380px;
}

.customFloorModalBody h5 {
    margin-top: 30px;
    font-weight: 600;
}

.customFloorModalBody ul.customFloorModalDetails {
    border-top: 1px solid var(--third);
    margin-top: 20px;
    width: 450px;
    max-width: 100%;
}

.customFloorModalBody ul.customFloorModalDetails>li {
    border-bottom: 1px solid var(--third);
}

.customFloorModalBody ul.customFloorModalDetails>li>ul {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0;
}

.customFloorModalBody ul.customFloorModalDetails>li>ul>li:first-child {
    width: 70%;
}

.customFloorModalBody ul.customFloorModalDetails>li>ul>li:last-child {
    width: 30%;
    font-weight: 600;
}

.customFloorModalBody .customFloorModalImgBox img {
    max-height: 600px;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custombtnG {
    margin-top: 50px;
    background: var(--third);
    padding: 20px 50px;
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s ease-in-out;
    border: none;
    text-align: center;
}

.custombtnG:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/************************************ Page Header Section *****************************************/

.pageHeaderSection {
    position: relative;
}

.pageHeaderSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 91 150 / 60%);
    mix-blend-mode: multiply;
    display: block;
}

.pageHeaderText {
    padding: 350px 0 50px 0;
    text-align: center;
    z-index: 1;
    position: relative;
}

.pageHeaderText h2 {
    font-size: 48px;
    color: #ffffff;
    line-height: 58px;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
}


/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/

.clientSlideItem img {
    display: block !important;
    max-width: 100% !important;
    width: auto !important;
}




.innerSec1 {
    padding-top: 136px;
}


/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/
.property-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.property-img {
    overflow: hidden;
    position: relative;
}

.property-img h4 {
    position: absolute;
    top: 10px;
    right: 0;
    background: #ffffff;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    color: #000000;
}

.property-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img img {
    transform: scale(1.08);
}

.property-content {
    padding: 25px 20px;
}

.property-content p {
    font-size: 14px;
}

.property-content h2 {
    font-family: "freight-big-pro", serif;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 10px;
    color: var(--third);
    font-weight: 600;
}

.property-content h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--third);
}

.property-content ul {
    list-style: none;
    padding: 12px;
    margin: 16px 0;
    background: #f9fafb;
    border-radius: 0;
    border: 1px solid #eef2f7;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.property-content ul>li {
    font-size: 14px;
    padding-right: 25px;
    border-right: 1px solid #e5e7eb;
}

.property-content ul>li::before {
    content: "";
    font-size: 14px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.property-content ul>li:last-child {
    border-bottom: none;
    border-right: 0;
    padding-right: 0;
}

.property-content ul>li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
}

.property-content ul>li strong {
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--third);
}

.property-content ul>li p {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-desc p {
    font-size: 14px;
    line-height: 1.7;
}

.property-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.property-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.map-popup img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 6px;
}

.map-popup h3 {
    font-size: 15px;
    margin: 4px 0;
}

.map-popup p {
    font-size: 13px;
    color: #6b7280;
}





.fixedBtn {
    position: fixed;
    top: 50%;
    right: 0;
    font-size: 14px;
    line-height: 14px;
    padding: 30px 20px;
    background: var(--secondaryColor);
    color: #ffffff;
    z-index: 11;
    writing-mode: sideways-lr;
}

.fixedBtn:hover {
    background: #000000;
    color: #ffffff;
}






.property-card-box {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.property-card-box:hover {
    transform: translateY(-5px);
}

.property-thumb {
    position: relative;
    overflow: hidden;
}

.property-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.property-card-box:hover img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    color: var(--third);
}


.property-details {
    padding: 20px;
}

.property-details h2 {
    font-family: "freight-big-pro", serif;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 10px;
    color: var(--third);
    font-weight: 600;
}

.property-details h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--third);
}

.property-details p {
    font-size: 14px;
    margin-bottom: 10px;
}


.property-info-list {
    display: flex;
    list-style: none;
    margin: 16px 0;
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: column;
}

.property-info-list>li {
    display: flex;
    gap: 16px;
    background: #f9fafb;
    padding: 12px;
    border-radius: 0;
    border: 1px solid #eef2f7;
}

.property-info-list>li.property-hours {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.property-info-list>li.property-hours strong {
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    color: var(--third);
}

.property-info-list>li.property-hours button {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.property-info-list>li.property-hours .hours-content {
    display: none;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
    width: 100%;
    flex-direction: column;
}

.property-info-list>li.property-hours .hours-content p strong {
    color: #000000;
}

.property-info-list>li.property-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.property-info-list>li.property-hours ul>li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 14px;
    padding: 3px 0;
    border-bottom: 1px dashed #e5e7eb;
    align-items: center;
}

.property-info-list>li.property-hours ul>li:last-child {
    border-bottom: none;
}






.property-inline-info div {
    padding-right: 25px;
    border-right: 1px solid #cccccc;
}

.property-inline-info div:last-child {
    padding: 0;
    border: 0;
}

.property-inline-info div strong {
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--third);
}

.property-inline-info div p {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
}

.property-link-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    border-radius: 0;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.property-link-btn:hover {
    background: var(--primary);
    color: #fff;
}


.jotAddSec1 {
    background: var(--primaryColor);
}

.jotAddSec1Inner h1 {
    font-family: "freight-big-pro", serif;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 10px;
    color: #ffffff;
}

.jotAddSec1Inner h4 {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
}

.jotAddSec1Inner p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 26px;
    line-height: 28px;
    font-family: "freight-big-pro", serif;
}

.jotAddSec1Inner ul {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.jotAddSec1Inner ul li {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
}

.jotAddSec2Inner h4 {
    font-size: 26px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "freight-big-pro", serif;
}

.jotAddSec2Inner p {
    padding: 0 0 15px 0;
    color: #ffffff;
}

.jotAddSec2Inner ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.jotAddSec2Inner ul li {
    padding: 18px 20px;
    border: 2px solid var(--primaryColor);
    font-weight: 500;
    transition: 0.35s;
    color: #ffffff;
}

.jotAddSec2Inner ul li:hover {
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    color: #ffffff;
}

.jotAddSec2Inner h5 {
    margin-top: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
}

.jotAddSec2Row {
    align-items: stretch;
}

.jotAddSec2Col .jotAddSec2Inner {
    /* height: 100%; */
}

.jotAddSec2ColLeft {}

.jotAddSec2ColLeft .jotAddSec2Inner h5 {
    margin-top: 25px;
}

.jotAddSec2Inner ul.openPositionsList {
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-template-columns: none;
}

@media (max-width: 767px) {
    .jotAddSec2ColRight {
        margin-top: 30px;
    }
}




.jotAddSec3 {
    display: flex;
    justify-content: space-between;
}

.jotAddSec3InnerLeft h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.jotAddSec3InnerLeft p {}

.jotAddSec3InnerRight {}

.jotAddSec3InnerRight h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.jotAddSec3InnerRight p {
    margin: 0;
}

.jotAddSec3InnerRight p a {}


.jotAddSec3 h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}



.jotAddSec4 {
    padding: 60px 0 0;
    background: var(--primary);
}

.jotAddSec4Inner h5 {
    color: #ffffff;
    margin: 35px 0;
}

.jotAddSec4InnerLeft h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.jotAddSec4InnerLeft p {
    color: #ffffff;
}

.jotAddSec4InnerRight {}

.jotAddSec4InnerRight h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.jotAddSec4InnerRight p {
    margin: 0;
    color: #ffffff;
}

.jotAddSec4InnerRight p a {
    color: #ffffff;
}

.jotAddSec4InnerRight p strong {
    font-weight: 600;
    font-family: "freight-big-pro", serif;
    font-size: 20px;
    line-height: 22px;
}

.jotAddSec4Inner h4 {
    color: #ffffff;
    font-family: "freight-big-pro", serif;
    font-size: 26px;
    line-height: 28px;
    font-weight: 600;
    margin-block-start: 20px;
    margin-block-end: 10px;
}

.jotAddSec4Inner .jotContactDetails h4 {
    margin-block-start: 30px;
}

.jotDisclaimerText {
    background: rgb(0 0 0 / 40%);
    color: #ffffff;
    padding: 40px 20px;
    margin-block-start: 30px;
}

.jotDisclaimerText * {
    color: #ffffff;
}

.jotDisclaimerText p {
    margin-block-end: 0;
}

/*--------------------------------------------------------------
# About Page Section
--------------------------------------------------------------*/
.aboutPageIntro h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
    font-family: "freight-big-pro", serif;
    margin-bottom: 15px;
}
.aboutSecPage .aboutSecInner {
    /* padding: 20px 0 20px 0; */
}

.aboutSecPage .aboutSecInner1 {
    padding-bottom: 20px;
}

.aboutSecInner .aboutSecPageText h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
    font-family: "freight-big-pro", serif;
    margin-bottom: 15px;
}

.aboutSecInner .aboutSecPageText h2 strong {
    letter-spacing: 1px;
    font-family: 'SwilyBrightItalic';
}
.aboutSecInner .aboutSecPageImg {
	margin-bottom: 10px;
}

.aboutSecInner .aboutSecPageImg img,
.aboutSecInner1 .aboutSecPageImg img, 
.aboutSecInner2 .aboutSecPageImg img {
	max-width: 100%;
	height: auto;
}

.aboutSecPage p {
    margin-bottom: 15px;
}

.aboutSecPageBtn {
    text-align: center;
    padding: 50px 0;
}

@media (min-width: 992px) {
	.aboutSecInner .aboutSecPageImg,
	.aboutSecInner1 .aboutSecPageImg,
	.aboutSecInner2 .aboutSecPageImg {
		height: 100%;
		position: relative;
		overflow: hidden;
	}

	.aboutSecInner .aboutSecPageImg img,
	.aboutSecInner1 .aboutSecPageImg img, 
	.aboutSecInner2 .aboutSecPageImg img {
		position: absolute;
		inset: 0;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover;
		object-position: center;
	}
}

/*--------------------------------------------------------------
# Financial Institutions Page
--------------------------------------------------------------*/

.financialInstitutionsPage .financialInstitutionsPageInner {
    padding: 80px 0 20px 0;
}

.financialInstitutionsPage .financialInstitutionsPageInner h2 {
    font-size: 42px;
    line-height: 48px;
}

.financialInstitutionsPage .financialInstitutionsPageInner h3 {
    font-size: 24px;
    line-height: 30px;
}

.financialInstitutionsPage p {
    margin-bottom: 8px;
}

.financialInstitutionsPage .financialInstitutionsPageInner1 {
    padding-bottom: 20px;
}

.financialInstitutionsPage .financialInstitutionsPageInner1 ul li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
    width: 50%;
    float: left;
}

.financialInstitutionsPage .financialInstitutionsPageInner1 ul li::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 12px;
}


/***************************** Team Page **************************************/

.teamsSection {
    padding: 80px 0;
}

.teamsBox {
    margin-bottom: 20px;
}

.teamsBox .teamsBoxInner .teamsBoxImg {
    position: relative;
    overflow: hidden;
}

.teamsBox .teamsBoxInner .teamsBoxImg img {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    transition: .5s;
    width: 100%;
}

.teamsBox:hover .teamsBoxImg img {
    transform: scale(1.10);
}

.teamsBox .teamsBoxInner .teamsBoxImg:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(56 65 89 / 70%);
    width: 100%;
    height: 0;
    display: block;
    transition: 0.6s;
}

.teamsBox .teamsBoxInner:hover .teamsBoxImg:after {
    height: 100%;
}

.teamsBox .teamsBoxInner h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 10px 0;
    font-weight: 600;
    font-family: "freight-big-pro", serif;
}

.teamsBox .teamsBoxInner .teamsBoxImg .icon {
    transform: translate(-50%, -50%);
    position: absolute;
    top: -50%;
    left: 50%;
    z-index: 1;
    transition: all 0.6s ease-in-out;
}

.teamsBox .teamsBoxInner .teamsBoxImg .icon i {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.teamsBox .teamsBoxInner:hover .teamsBoxImg .icon {
    top: 50%;
}

.singleTeamSection {
    padding: 80px 0;
}

.single-team-content h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 30px;
}

.single-team-content p a {
    color: var(--primaryColor)
}

.singleTeamDetails img {
    width: 100%;
    margin-bottom: 20px;
}

/*******************************************************************/

.aboutSecPageText p a {
    color: var(--primaryColor);
    text-decoration: underline;
}

.privacySec{    padding-block: 15rem 3rem;} 
.privacySec h1{font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 30px 0;
       color: var(--secondaryColor);
    font-family: 'SwilyBrightItalic';    font-weight: bolder;
}
.privacySecText p a {
    color: var(--primaryColor);
}

/*--------------------------------------------------------------
# Property Page Template Styles (Copied from innovationcentersouth)
--------------------------------------------------------------*/
.prop_page_navigation {
    position: sticky;
    top: 137px;
    z-index: 1009;
    background: #fff;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

/* Desktop Styles */
.prop_nav_desktop {
    gap: 25px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.prop_nav_desktop li {
    list-style: none;
}

.prop_nav_desktop li a {
    text-decoration: none;
    color: var(--primaryColor);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Mobile Styles (Select Field Look) */
.prop_nav_mobile {
    position: relative;
    width: 100%;
}

.selected_option {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    color: var(--primaryColor);
    text-transform: uppercase;
    transition: 0.3s;
}

.selected_option i {
    transition: 0.3s;
}

.prop_nav_mobile.active .selected_option i {
    transform: rotate(180deg);
}

.mobile_nav_options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1010;
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prop_nav_mobile.active .mobile_nav_options {
    display: block;
}

.mobile_nav_options li a {
    padding: 15px 20px;
    display: block;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    text-transform: uppercase;
    font-size: 15px;
}

.mobile_nav_options li:last-child a {
    border-bottom: none;
}

.mobile_nav_options li a:hover {
    background: #f9f9f9;
    color: var(--primaryColor);
}

@media (max-width: 991px) {
    .prop_page_navigation {
        top: 80px;
        /* Adjust based on mobile header height if necessary */
    }
}

.ar_prop_sliderSec {
    position: relative;
    overflow: hidden;
}

.ar_prop_sliderSec:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 91 150 / 60%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.ar_prop_sliderSec .ar_prop_sliderText {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1140px;
    max-width: 100%;
    z-index: 2;
    position: absolute;
    text-align: left;
}

.ar_prop_sliderSec .ar_prop_sliderText img.property_logo {
    margin-bottom: 20px;
    max-width: 300px !important;
    height: auto !important;
}

.ar_prop_sliderSec .ar_prop_sliderText h1 {
    font-size: 56px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "freight-big-pro", serif;
    font-weight: 600;
    text-shadow: 3px 2px rgb(0 0 0 / 80%);
}

.ar_prop_sliderSec .ar_prop_sliderText h3 {
    font-size: 22px;
    color: #ffffff;
    line-height: 38px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.ar_prop_sliderSec .ar_prop_owlSilder .item {
    overflow: hidden;
}

.ar_prop_sliderSec .ar_prop_owlSilder .item img {
    animation: ar_prop_zoomIn 10s ease-in-out infinite;
}

@keyframes ar_prop_zoomIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1.1);
    }
}

.ar_prop_sliderSec .owl-carousel .owl-item img {
    width: 100%;
    transition: filter 0.5s ease;
    filter: blur(160px);
    height: 100vh;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.ar_prop_sliderSec .owl-carousel .owl-item.active img {
    filter: none;
}

.ar_prop_aboutSec {
    padding: 100px 0;
    position: relative;
    background: #d6b585;
}

.page-id-647 .ar_prop_aboutSec,
.page-id-696 .ar_prop_aboutSec {
    background: var(--primaryColor);
}

.ar_prop_aboutSec .ar_prop_aboutImg img {
    width: 200px;
    opacity: 1;
}

.ar_prop_aboutSec .ar_prop_aboutText *:not(a) {
    color: #ffffff;
}

.ar_prop_aboutSec .ar_prop_aboutText h2 {
    font-size: 35px;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

.ar_prop_aboutSec .ar_prop_aboutText h2 strong {
    font-weight: 500;
    font-size: 34px;
    font-family: 'SwilyBrightItalic';
}

.ar_prop_aboutSec .ar_prop_aboutText h3 {
    margin-block: 20px;
}

.page-id-647 .ar_prop_aboutSec .ar_prop_aboutText h3 em,
.page-id-696 .ar_prop_aboutSec .ar_prop_aboutText h3 em {
    font-style: normal;
    display: inline-block;
}

.ar_prop_aboutSec .ar_prop_aboutText p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 50px;
    margin-top: 20px;
    color: #ffffff;
}

.ar_prop_retailers_box * {
    color: #ffffff;
    margin-bottom: 30px;
}

.ar_prop_retailers_box h3 {
    font-style: italic;
    margin-bottom: 20px;
}

.ar_prop_retailers_box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px 20px;
}

.ar_prop_retailers_box ul li {
    margin-bottom: 10px;
}

.ar_prop_retailers_box ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
}

.ar_prop_retailers_box ul li a:hover,
.ar_prop_retailers_box ul li a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.ar_prop_aboutSec .aboutSecText a {
    margin-top: 40px;
}

.ar_prop_aboutSec .aboutMission {
    background: var(--primaryColor);
    padding: 60px 40px;
    color: #ffffff;
}

.ar_prop_buildingfeaturesSec {
    padding: 100px 0;
    position: relative;
}

.ar_prop_buildingfeaturesBox>div {
    padding: 60px 30px 70px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid #d1d1d1;
    transition: 0.3s ease-in-out !important;
}

.ar_prop_buildingfeaturesBox img {
    width: 100px;
}

.ar_prop_buildingfeaturesBox h3 {
    color: var(--third);
    font-size: 16px;
    margin: 0;
}

.ar_prop_buildingfeaturesBox:hover {
    background: #d6b585;
}

.ar_prop_buildingfeaturesBox:hover img {
    filter: brightness(0) invert(1);
}

.ar_prop_buildingfeaturesBox:hover h3 {
    color: #ffffff;
}

.ar_prop_interiorphoto {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ar_prop_interiorSec {
    padding: 100px 0;
    position: relative;
}

.ar_prop_interiorSec .owl-item.active.center {
    transform: scale(1.5);
}

.ar_prop_interiorSec .item {
    padding: 20px;
    margin: 30px;
}

.ar_prop_interiorBtn {
    margin-top: 80px;
    text-align: center;
}

.ar_prop_gallerySec .item {
    border: 1px solid #eeeeee;
}

.ar_prop_gallerySec .ar_prop_galleryItem img {
    width: 100% !important;
    aspect-ratio: 750/550;
    max-width: initial !important;
    height: auto !important;
    object-fit: cover;
    object-position: center;
}

.ar_prop_gallerySec .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
    margin: 0 !important;
}

.ar_prop_gallerySec .owl-nav button {
    margin: 0 !important;
}

.ar_prop_gallerySec .owl-nav button span {
    display: inline-block;
    background: var(--third);
    color: #afadad;
    padding: 35px 35px;
    font-size: 16px;
    transition: 0.3s ease-in-out !important;
}

.ar_prop_gallerySec .owl-nav button span:hover {
    background: var(--primaryColor);
    color: #ffffff;
}

.ar_prop_contactSec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ar_prop_contactSec:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(246 245 250 / 40%);
    mix-blend-mode: multiply;
    z-index: -1;
}

.ar_prop_contactLogo {
    float: right;
    margin-top: 50px;
}

.ar_prop_contactLogo img {
    width: 200px !important;
}

/* Responsive */
@media (min-width: 992px) and (max-width:1199px) {
    .ar_prop_sliderSec .ar_prop_sliderText h1 {
        font-size: 58px !important;
    }

    .ar_prop_interiorSec .item {
        margin: 20px;
    }
}

@media (max-width:1199px) {
    .prop_page_navigation {
        top: 80px;
    }

    .ar_prop_sliderSec .ar_prop_sliderText {
        padding: 0 30px;
    }

    .ar_prop_gallerySec .owl-nav button span {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .ar_prop_buildingfeaturesBox>div {
        padding: 30px 30px 40px 30px;
    }

    .ar_prop_sliderSec .ar_prop_sliderText h1 {
        font-size: 50px !important;
        line-height: 1.1 !important;
    }

    .ar_prop_sliderSec .ar_prop_sliderText {
        padding: 0 30px;
    }

    .ar_prop_retailers_box ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .ar_prop_sliderSec .ar_prop_sliderText h1 {
        font-size: 52px;
    }

    .ar_prop_interiorSec .item {
        margin: 15px;
    }
}

@media (max-width:767px) {
    .ar_prop_sliderSec .ar_prop_sliderText h3 {
        font-size: 18px !important;
        margin-bottom: 25px !important;
    }

    .ar_prop_sliderSec .ar_prop_sliderText .ar_prop_sliderLink .cusBtn {
        padding: 10px 25px;
    }

    .ar_prop_aboutSec {
        padding: 50px 0;
    }

    .ar_prop_gallerySec .owl-nav {
        justify-content: space-between;
        padding: 0 20px;
    }

    .ar_prop_interiorphoto {
        background-attachment: initial !important;
        height: 300px !important;
    }

    .ar_prop_interiorBtn {
        margin-top: 30px;
    }

    .ar_prop_sliderSec .ar_prop_sliderText h1 {
        font-size: 44px !important;
        line-height: 1.1 !important;
    }

    .ar_prop_contactSec {
        padding: 50px 20px;
    }

    .ar_prop_retailers_box ul {
        grid-template-columns: 1fr 1fr;
    }

    .ar_prop_retailers_box ul li a {
        font-size: 14px;
    }
}

@media (max-width:575px) {
    .ar_prop_gallerySec .owl-nav button span {
        padding: 15px;
    }
}

@media (max-width:480px) {
    .ar_prop_sliderSec .ar_prop_sliderText {
        width: 350px;
    }
}

/*--------------------------------------------------------------
# Accessibility Section (Copied from innovationcentersouth accessibility.php)
--------------------------------------------------------------*/
.ar_prop_access_accessibilityPageSec {
    position: relative;
    background: var(--fourth);
}

.ar_prop_access_accessibilityPageSec .ar_prop_access_mapBox {
    min-height: 500px;
}

.ar_prop_access_accessibilityPageSec #map {
    min-height: 100%;
    width: 100%;
    overflow: hidden;
}

.ar_prop_access_accessibilityPageSec .ar_prop_access_accessibilityPageText {
    padding: 100px 80px;
}

.ar_prop_access_accessibilityPageText .ar_prop_access_accessibilityText h2,
.ar_prop_access_accessibilityPageText .ar_prop_access_accessibilityAccess h2 {
    font-size: 34px;
    line-height: 44px;
    margin: 80px 0 30px 0;
}

.ar_prop_access_accessibilityAccess ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
}

.ar_prop_access_accessibilityAccess ul li {
    padding: 0 30px;
    color: var(--primary);
    font-size: 20px;
    position: relative;
}

.ar_prop_access_accessibilityAccess ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    border-right: 1px solid var(--primary);
}

.ar_prop_access_accessibilityText ul li {
    font-size: 22px;
    font-weight: 400;
    border-bottom: 1px solid var(--third);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.ar_prop_access_accessibilityText ul li strong {
    font-weight: 500;
    float: right;
}

.ar_prop_access_accessibilityPageImg {
    position: relative;
}

.ar_prop_access_accessibilityPageImg span {
    position: absolute;
    z-index: 9;
}

.ar_prop_access_accessibilityPageImg .one {
    top: 24%;
    left: 49%;
}

.ar_prop_access_accessibilityPageImg .two {
    top: 45%;
    left: 24%;
}

.ar_prop_access_accessibilityPageImg .three {
    top: 84.5%;
    left: 65.5%;
}

.ar_prop_access_pulse {
    animation: ar_prop_access_pulse-animation 2s infinite;
}

@keyframes ar_prop_access_pulse-animation {
    0% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 0 70px rgba(0, 0, 0, 0);
    }
}

/*--------------------------------------------------------------
# Availability Section (Copied from innovationcentersouth availability.php)
--------------------------------------------------------------*/
.ar_prop_avail_aboutSec {
    padding: 100px 0;
    position: relative;
    background: #d6b585;
}

.ar_prop_avail_aboutSec .ar_prop_avail_aboutText h2 {
    font-size: 35px;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.ar_prop_avail_aboutSec .ar_prop_avail_aboutText h2 strong {
    font-weight: 500;
    font-size: 34px;
    font-family: 'SwilyBrightItalic';
}

.ar_prop_avail_aboutSec .ar_prop_avail_aboutText h3 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.ar_prop_avail_aboutSec .ar_prop_avail_aboutText p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 50px;
    margin-top: 20px;
    color: #ffffff;
}

.clientLogoSec {
    padding: 50px 0;
    position: relative;
}

/* Responsive Additions for Access & Avail */
@media (min-width: 1200px) and (max-width:1366px) {
    .ar_prop_access_accessibilityPageSec .ar_prop_access_accessibilityPageText {
        padding: 100px 40px;
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .ar_prop_access_accessibilityPageSec .ar_prop_access_accessibilityPageText {
        padding: 100px 20px;
    }

    .ar_prop_access_accessibilityAccess ul li {
        padding: 0 25px;
    }
}

@media (max-width:767px) {
    .ar_prop_access_accessibilityAccess ul {
        flex-direction: column;
        gap: 10px;
    }

    .ar_prop_access_accessibilityAccess ul li {
        padding: 7px 10px 16px;
    }

    .ar_prop_access_accessibilityAccess ul li:not(:last-child)::after {
        bottom: 0;
        left: 50%;
        right: initial;
        top: initial;
        transform: translate(-50%, 0);
        height: 1px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--primary);
    }

    .ar_prop_access_accessibilityPageSec .ar_prop_access_accessibilityPageText {
        padding: 50px 30px;
    }

    .ar_prop_access_accessibilityPageText .ar_prop_access_accessibilityText h2,
    .ar_prop_access_accessibilityPageText .ar_prop_access_accessibilityAccess h2 {
        margin: 50px 0 20px;
    }

    .ar_prop_avail_aboutSec {
        padding: 50px 0;
    }
	.privacySec h1 {font-size: 40px;margin: 0 0 10px 0;}
	
	
}

@media (max-width:575px) {
    .ar_prop_access_accessibilityText ul li {
        font-size: 18px;
    }

    .ar_prop_access_accessibilityText ul li strong {
        float: none;
        display: block;
    }
}

.prop_additionalInfoSec {
    padding: 100px 0;
    background: #f5f5f5;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1;
}

.prop_additionalInfoSec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: -1;
}

.prop_additionalLogosStack {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 50px;
}

.prop_logoStackItem {
    width: calc(50% - 10px);
    /* background: #fdfdfd; */
    /* padding: 25px; */
    /* border: 1px solid #f0f0f0; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 0.3s ease;
    /* height: 120px; */
}

.prop_logoStackItem:hover {
    /* border-color: var(--primaryColor);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); */
}

.prop_logoStackItem img {
    max-height: 60px;
    width: auto;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: 0.3s;
}

.page-id-515 .prop_additionalLogosStack .prop_logoStackItem:first-child img {
    max-height: 100px;
    height: 80px !important;
    width: auto !important;
}

.prop_additionalInfoBox {
    padding-left: 50px;
}

.prop_additionalInfoBox h3 {
    font-family: "freight-big-pro", serif;
    font-size: 32px;
    color: var(--third);
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primaryColor);
    display: inline-block;
    padding-bottom: 5px;
}

.prop_additionalInfoBox ul {
    list-style: none;
    padding: 0;
}

.prop_additionalInfoBox ul li {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    position: relative;
    /* padding-left: 30px; */
}

/* Simple CSS icons using dots/bullets if FA is not direct, but assuming FA for icons */
/* .prop_additionalInfoBox ul li::before {
    content: "\f0da";
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
left: 0;
top: 2px;
color: var(--primaryColor);
font-size: 14px;
}

*/
.prop_additionalInfoBox address {
    font-style: normal;
    margin-bottom: 0;
    font-weight: 500;
}

.prop_additionalInfoBox strong:not(.prop_additionalInfoBox h2 strong) {
    /* color: var(--third); */
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.prop_additionalInfoBox a {
    /* color: var(--third);
    font-weight: 600; */
    text-decoration: none;
    transition: 0.3s;
}

.prop_additionalInfoBox a:hover {
    /* color: var(--third); */
    text-decoration: underline;
}

@media (max-width: 991px) {
    .prop_additionalInfoBox {
        padding-left: 0;
        margin-top: 50px;
    }

    .prop_logoStackItem {
        width: calc(33.33% - 14px);
    }

    .prop_additionalInfoSec::before {
        background: none;
    }

    .prop_additionalLogosStack {
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .prop_logoStackItem {
        width: calc(50% - 10px);
    }
}

.blur-container {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    /* Shuru mein blur */
    transition: filter 0.6s ease-in-out;
}

.blur-container img {
    width: 100%;
    height: auto;
    opacity: 0;
    /* Shuru mein asli image chhupi hui */
    transition: opacity 0.6s ease-in-out;
    display: block;
}

/* Jab JS ya onload event trigger ho */
.blur-container.loaded {
    filter: blur(0);
    /* Blur khatam */
}

.blur-container.loaded img {
    opacity: 1;
    /* Asli image nazar aa jaye */
}

.bullet-text ul {
    list-style: disc outside;
    padding-left: 22px;
    margin: 16px 0;
}

.bullet-text ul li {
    list-style: disc;
    color: var(--primary);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.bullet-text ul li::marker {
    color: var(--secondaryColor);
}

.bullet-text ul ul {
    list-style: circle outside;
    margin: 6px 0 6px 0;
}

.bullet-text ul ul li {
    list-style: circle;
}

.page-template-current-projects .property-img {
    position: relative;
}

.page-template-current-projects .project-category-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    z-index: 2;
}

.page-template-current-projects .project-category-badge {
    background: var(--primaryColor);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.page-margin {
    margin-top: 180px;
}
.commercial-properties-page-main .propertiesSec img {
    aspect-ratio: 3/3.3;
}


.page-template-past-projects .pastProjectsSection {
    padding: 80px 0 60px;
    background: #ffffff;
}

.page-template-past-projects .pastProjectsContent h3 {
    font-size: 30px;
    color: var(--primary);
    font-family: "freight-big-pro", serif;
    font-weight: 500;
    line-height: 1.2;
    margin: 55px 0 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primaryColor);
    width: 100%;
}

.page-template-past-projects .pastProjectsContent h3:first-child {
    margin-top: 0;
}

.page-template-past-projects .pastProjectsContent ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    column-count: 2;
    column-gap: 24px;
}

.page-template-past-projects .pastProjectsContent ul li {
    position: relative;
    padding: 14px 16px 14px 34px;
    margin: 0 0 12px;
    background: #f8f9fb;
    border-left: 3px solid var(--primaryColor);
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    display: inline-block;
    width: 100%;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-template-past-projects .pastProjectsContent ul li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondaryColor);
}

.page-template-past-projects .pastProjectsContent ul li:hover {
    background: #eef2f7;
    border-left-color: var(--secondaryColor);
    transform: translateX(3px);
}

.page-template-past-projects .pastProjectsContent ul li strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 3px;
}

@media (min-width: 992px) {
    .page-template-past-projects .pastProjectsContent ul {
        column-count: 3;
    }
}

@media (max-width: 575px) {
    .page-template-past-projects .pastProjectsSection {
        padding: 50px 0 40px;
    }

    .page-template-past-projects .pastProjectsContent ul {
        column-count: 1;
    }

    .page-template-past-projects .pastProjectsContent h3 {
        font-size: 24px;
        margin: 40px 0 22px;
    }
	.contactSec{background-attachment: initial !important;}
	.contactText img{min-width:100%}
	.contactSec {padding: 100px 0 0 0;}
	.contactSec {
        background-attachment: initial !important;
        background-size: 100% 52% !important;
        background-position: top center !important;
    }
}

/* Sirf mobile screens (576px se nichy) ke liye */
@media (max-width: 575.98px) {
    /* Space khatam kar di taake main section target ho, aur sath hi unke andar agar kuch hai to wo bhi target ho jaye */
    .contactText[data-aos],
    .contactForm[data-aos],
    .contactText [data-aos],
    .contactForm [data-aos] {
        
        /* 1. Animation ki duration ko 300ms (ya 200ms) kar diya */
        transition-duration: 600ms !important;
        animation-duration: 600ms !important;

        /* 2. Scroll karte hi bina ruke animation shuru karne ke liye delay 0s */
        transition-delay: 0s !important;
        animation-delay: 0s !important;

        /* 3. 'outset' CSS mein valid nahi hai, is liye hum 'ease-out' ya 'linear' use karenge */
        transition-timing-function: ease-out !important;
    }
}