/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
:root {
    /** Font default */
    --font-family-default: 'Figtree', sans-serif;
    --font-family-title: 'Syncopate', sans-serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #d1b56c;
    --secondary: #20a9c5;
    --hover-gradient: linear-gradient( 90deg, rgb(209,181,108) 0%, rgb(73,154,186) 100%);
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --animate: all .3s ease-in-out;
    --animate2: all .5s ease-in-out;
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body a {
    text-decoration: none !important;
    outline: 0 !important;
    color: var(--font-color-default);
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
}

.home p, #content p, .ftr-form-text p {
    font-size: clamp(14px,0.9375vw,18px);
    letter-spacing: 0.02em;
    line-height: 1.7;
    color: #555555;
    margin: 25px 0 0;
}

.ease {
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
}

.ease2 {
    -webkit-transition: var(--animate2);
    -o-transition: var(--animate2);
    transition: var(--animate2);
}

#main-wrapper {
    overflow: hidden;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.j-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.j-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.j-spacebet {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.j-spacearound {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.a-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.a-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.a-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.pos-fixed {
    position: fixed;
}

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

.img-canvas > canvas {
    display: block;
    width: 100%;
    height: auto;
}

.img-canvas > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
}

.bg-fixed {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-fixed canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: center / cover no-repeat fixed;
}

html.safari .bg-fixed canvas,
html.safari-true .bg-fixed canvas,
.safari-true .bg-fixed canvas {
    background-attachment: scroll!important;
}

.is-mobile {
    display: none;
}

.gsite-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 clamp(15px,1.5625vw,30px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: clamp(200px,18.58vw,280px);
    height: 75px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
}

.gsite-button:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-border-image: -o-linear-gradient(left, var(--secondary) 0%, var(--primary) 100%) 1;
    border-image: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary))) 1;
    border-image: linear-gradient(to right, var(--secondary) 0%, var(--primary) 100%) 1;
    border-radius: 5px;
    border-width: 3px;
    border-style: solid;
    z-index: -1;
}

.gsite-button span {
    font-size: clamp(14px,0.83vw,16px);
    text-transform: uppercase;
    font-family: var(--font-family-title);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.gsite-button span em {
    display: inline-block;
    padding-left: 13px;
}

.gsite-button span i {
    display: inline-block;
    font-size: 10px;
    color: var(--primary);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-weight: bolder;
}

.gsite-button:hover {
    border-width: 0;
}

.gsite-button:hover span, .gsite-button:hover span em i {
    color: #fff;
}

.gsite-button:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--hover-gradient);
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
    opacity: 0;
}

.gsite-button:hover:before {
    opacity: 1;
}

.gsite-title {
    font-size: clamp(17px, 1.25vw, 24px) !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500 !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1;
}

.gsite-title span {
    display: block;
    padding-left: 100px;
    padding-top: 15px;
}

.gsite-title span em {
    font-style: normal !important;
    font-family: var(--font-family-title);
    font-size: clamp(40px, 4.17vw, 80px);
    letter-spacing: normal;
    position: relative;
    background-image: -o-linear-gradient(56deg, #000000 20%, var(--secondary) 100%);
    background-image: linear-gradient(34deg, #000000 20%, var(--secondary) 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gsite-title span em:before {
    position: absolute;
    content: '';
    width: 85px;
    height: 3px;
    right: calc(100% + 15px);
    top: 8px;
    background: var(--primary);
}

/* Header: start */
.header-main {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 99;
}

.header-inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding-top: 42px;
}

.header-logo {
}

.header-logo img.main-nav-logo {
    width: 100%;
    max-width: clamp(200px, 27vw, 520px);
    height: auto;
}

.header-logo img.fxd-nav-logo {
    width: 100%;
    max-width: clamp(170px, 17.239vw, 331px);
    height: auto;
}

.header-mobile-contact {
    display: none;
}

.header-mobile-contact > div {
    display: inline-block;
}

.header-mobile-contact > div  a {
    color: #499aba;
    font-size: 0;
}

.header-mobile-contact > div  a  i {
    font-size: 14px;
}

.header-mobile-contact > div:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px rgb(73 154 186 / 25%) solid;
}

.header-nav {
}

#nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#nav > li {
    position: relative;
    padding: 0 clamp(10px, 1.09375vw, 21px);
}

#nav > li > a {
    font-size: clamp(10px, 0.875vw, 14px);
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.075em;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
    font-weight: 600;
    position: relative;
}

#nav > li > a i.ai-font-magnifying-glass-b {
    font-size: clamp(10px, 0.875vw, 14px);
    display: inline-block;
    top: max(-0.125vw, -2px);
    -webkit-transform: rotateY(180deg) translateY(3px);
    transform: rotateY(180deg) translateY(3px);
    position: relative;
}

#nav > li > a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    left: 50%;
    top: calc(100% + 5px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--primary);
    -webkit-transition: var(--animate2);
    -o-transition: var(--animate2);
    transition: var(--animate2);
}

#nav > li:hover > a:before {
    width: 100%;
}

/* Sub Menu */
#nav .sub-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    min-width: clamp(180px, 15.313vw, 245px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 50px;
    pointer-events: none;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
}

#nav .sub-menu li {
    margin-bottom: 1px;
}

#nav .sub-menu li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 10px;
    background: rgba(0, 0, 0, 0.28);
    font-size: clamp(10px, 0.875vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
    color: #fff;
    position: relative;
}

#nav .sub-menu li a:before {
    position: absolute;
    content: '';
    background: var(--hover-gradient);
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
    opacity: 0;
}

#nav .sub-menu li a:hover:before {
    opacity: 1;
}

#nav .sub-menu li a:hover {
    background: none;
    color: #fff;
}

#nav > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 13px;
}

#nav .sub-menu .sub-menu {
    position: absolute;
    top: 0 !important;
    left: 100% !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    padding-top: 0 !important;
    opacity: 0 !important;
    pointer-events: none;
}

#nav .sub-menu li:hover .sub-menu {
    opacity: 1 !important;
    pointer-events: auto;
}

.sticky .header-main {
    position: fixed;
    -webkit-animation: dropnav 0.7s ease-in-out;
    animation: dropnav 0.7s ease-in-out;
}

@-webkit-keyframes dropnav {
    0% {
        opacity: 0;
        top: -100px
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes dropnav {
    0% {
        opacity: 0;
        top: -100px
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

.sticky .header-logo img.main-nav-logo {
    display: none;
}

.sticky .header-logo img.fxd-nav-logo {
    display: block !important;
}

.sticky .header-main {
    background: #fff;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
}

.sticky #nav > li > a {
    color: #000;
}

.sticky .header-inner {
    padding: 21px 0;
}

.sticky #nav > li:hover .sub-menu {
    padding-top: clamp(26px, 1.938vw, 31px);
}

.header-burger {
    cursor: pointer;
}

.header-burger span {
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    transition: var(--animate);
    margin-left: auto;
}

.header-burger span:nth-child(2) {
    margin: 8px 0 8px auto;
    width: 20px;
}

.header-burger span:last-child {
    width: 30px;
}

.header-burger:hover span {
    width: 40px !important;
}

.sticky .header-burger span {
    background: #000;
}

.ham-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 100%;
    right: auto;
    bottom: 0;
    z-index: 1000;
    /*    background: rgba(0, 0, 0, 0.6);*/
    transition: var(--animate);
    opacity: 0;
}

.expand {
    left: 0 !important;
    opacity: 1;
}

.ham-menu-outer {
    height: 100%;
    width: 100%;
}

.ham-menu-inner {
    width: 100%;
    max-width: 960px;
    max-width: 860px;
    margin-left: auto;
    background: rgba(255,255,255,0.75);
    height: 100%;
    padding: 80px 30px;
    position: relative;
}

.ham-menu-logo img.main-nav-logo {
    display: none;
}

.ham-menu-logo img.fxd-nav-logo {
    display: block !important;
}

.ham-menu-logo img.fxd-nav-logo {
    display: block !important;
    width: 100%;
    height: auto;
    /*    max-width: 560px;*/
    max-width: 280px;
    margin: 0 auto;
}

ul#expnav > li > a {
    font-size: 40px;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

ul#expnav .sub-menu {
    padding-top: 20px;
}

ul#expnav .sub-menu li {
    margin-bottom: 10px;
}

ul#expnav .sub-menu li a {
    font-size: 18px;
    color: #656565;
}

ul#expnav > li {
    padding: 25px 0;
}

ul#expnav li a:hover {
    color: var(--primary);
}

.ham-menu-nav {
    padding-top: 70px;
    text-align: center;
    overflow: scroll;
    height: 100%;
}

.ham-menu-nav::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.ham-menu-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(https://cdn.agentimagehosting.com/KJ1jKVJReLqVNxH5j5wmH/2024/12/ham-menu-bg.jpg) center / cover no-repeat;
    z-index: -2;
    filter: grayscale(1);
}

.ham-close-btn {
    font-size: 35px;
    top: 30px;
    right: 20px;
    padding: 30px;
    cursor: pointer;
    transition: var(--animate);
}

.ham-close-btn:hover {
    opacity: 0.6;
}

body.expand {
    overflow: hidden;
}

body.expand:before {
    opacity: 0.7;
    position: absolute;
    content: '';
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: #000;
    z-index: 100;
}

/* Footer Main: Start */
.footer-main {
    padding: 0 40px;
}

.footer-main-inner {
    padding: 45px 0 150px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.ftr-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ftr-site-logo img {
    width: 100%;
    max-width: clamp(200px, 23.80vw, 457px);
    height: auto;
}

.ftr-broker-logo img {
    width: 100%;
    max-width: clamp(180px, 21.66vw, 416px);
    height: auto;
}

.ftr-logo-divider {
    width: 1px;
    height: 110px;
    background: #009cbd;
    margin: 0 23px;
}

.ftr-smi {
    padding-top: 14px;
}

.ftr-smi a {
    font-size: 27px;
    display: inline-block;
    margin: 20px 25px;
}

.ftr-smi a:hover i {
    background-image: var(--hover-gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.footer-column {
    padding-top: 60px;
}

.footer-form {
    width: calc((550 / 1300)* 100%);
}

.git-fields {
    padding-top: 18px;
}

.git-field {
    width: 49%;
    margin-bottom: 7px;
}

.git-field.git-long {
    width: 100%;
    margin-top: 20px;
}

.git-field input, .git-field textarea {
    border: none;
    width: 100%;
    border-bottom: 1px solid #000;
    font-size: 14px;
    letter-spacing: 0.025em;
    height: 55px;
    padding: 0 7px;
    outline: none;
    resize: none;
}

.git-sumbit {
    padding-top: 10px;
    text-align: center;
}

.git-sumbit .gsite-button {
    margin: 0 auto;
    background: none;
    border: none;
}

.footer-links {
    width: calc((520 / 1300)* 100%);
}

.footer-contact {
}

.ftr-con-col {
    padding-top: 28px;
}

.ftr-con-left {
    padding-right: 15px;
    width: 55%;
}
.ftr-con-right {
    width: 45%;
}


.ftr-con-col > div div {
    font-size: clamp(14px, 0.9375vw, 18px);
    letter-spacing: 0.025em;
    line-height: 1.7;
}

.footer-nav {
    padding-top: 50px;
}

.footernav {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    padding-top: 25px;
}

.footernav li {
    margin-bottom: 3px;
}

.footernav li a {
    font-size: clamp(14px, 0.9375vw, 18px);
    line-height: 1.7;
}

.footernav li a i {
    display: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.ftr-form-title h2, .ftr-con h2, .footer-nav h2 {
    text-transform: uppercase;
    font-family: var(--font-family-title);
    font-size: clamp(24px,1.823vw,35px);
    background-image: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(50%, var(--secondary)));
    background-image: -o-linear-gradient(left, #000000 0%, var(--secondary) 50%);
    background-image: linear-gradient(to right, #000000 0%, var(--secondary) 50%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
}

.ftr-form-title h2:before, .ftr-con h2:before, .footer-nav h2:before {
    position: absolute;
    content: '';
    width: clamp(50px, 4.6875vw, 90px);
    top: 100%;
    left: 0;
    background: var(--primary);
    height: 3px;
}

.footer-text {
    padding: 0 20px;
    background: #000;
}

.footer-text-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 0 60px;
}

.footer-disclaimer p {
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

.footer-disclaimer p a {
    color: #fff;
}

.footer-copy p, .footer-copy p a {
    color: #ffff;
    text-align: center;
}

.footer-copy p span {
    text-transform: uppercase;
}

.footer-mls {
    padding-top: 30px;
}

.footer-mls.flex.j-center i {
    color: #fff;
    font-size: 25px;
    display: inline-block;
    margin: 0 5px;
}

.footer-mls.flex.j-center i.ai-font-realtor-mls {
    font-size: 28px;
}

.footer-text-inner a:hover {
    color: var(--primary);
}

/* Global */
/* Testimonials */
.testi-wrap {
    padding: 0 20px;
}

.testi-bg {
    overflow: hidden;
}

.testi-bg canvas {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.testi-bg::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgb(89, 95, 97)), to(rgb(53, 53, 53)));
    background: -o-linear-gradient(left, rgb(89, 95, 97) 0%, rgb(53, 53, 53) 100%);
    background: linear-gradient(90deg, rgb(89, 95, 97) 0%, rgb(53, 53, 53) 100%);
    z-index: 1;
    opacity: 0.75;
}

.testi-inner {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 135px 0;
}

.testi-left {
    width: calc(100% - calc((935 / 1700)* 100%));
    padding-top: 35px;
}

.testi-title .gsite-title, .testi-title .gsite-title span em {
    color: #fff;
}

.testi-btn {
    padding-top: 40px;
}

.testi-btn .gsite-button {
    color: #fff;
}

.testi-right {
    width: calc((935 / 1700)* 100%);
}

.testi-slides:not(.slick-initialized) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: ;
}

.testi-slides:not(.slick-initialized) .testi-slide {
    width: 50%;
}

.testi-slides:not(.slick-initialized) .testi-slide:nth-child(n+2) ~ div {
    display: none !important;
}

.testi-slider .slick-list, .testi-slides:not(.slick-initialized) {
    margin: 0 -35px;
}

.slick-slide > div, .testi-slides:not(.slick-initialized) .testi-slide {
    padding: 0 35px;
}

.testi-slider .testi-slide p {
    color: #ffff;
    line-height: 1.9;
}

.testi-slide h3 {
    text-transform: uppercase;
    font-size: clamp(17px, 1.146vw, 22px);
    position: relative;
    font-family: var(--font-family-title);
    color: #fff;
    padding-top: 30px;
    margin-top: 30px;
}

.testi-slide h3:before {
    position: absolute;
    content: '';
    width: clamp(50px, 4.427vw, 85px);
    height: 3px;
    top: 0;
    left: 0;
    background: var(--primary);
}

/*******************************************************
    *
    * 4. IP Styles
    *
    *******************************************************/
#content .entry-title {
}

.ip-banner {
    position: relative;
    width: 100%;
}

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar, #content-full {
    min-height: 500px;
    margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
    width: 77.08%;
}

#content-full #content {
    width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
    margin-left: -15px;
    margin-right: -15px;
}

/*Pojo*/
body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}

button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

#pojo-a11y-toolbar .pojo-a11y-btn-grayscale, #pojo-a11y-toolbar .pojo-a11y-btn-light-background, #pojo-a11y-toolbar .pojo-a11y-btn-high-contrast, #pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

body.pojo-a11y-readable-font [class*=ai-font-], body.pojo-a11y-readable-font em[class*=ai-font-] {
    font-family: agentimage!important;
}

/*Pojo*/
/* cf7 Tooltip / loader */
.ajax-loader, .wpcf7-spinner {
    position: absolute;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: auto !important;
    right: 0 !important;
    z-index: 1 !important;
}

.wpcf7-response-output {
    position: absolute;
    width: 100%;
    text-align: center;
    margin: 0 !important;
    top: calc(100% + 15px);
}

form {
    position: relative;
}

/* cf7 Tooltip / loader */
/* Adjust line height of page elements */
#content h4, aside h4, #content p, aside p, #content blockquote, aside blockquote, #content ul, aside ul, #content fieldset, aside fieldset, #content form, aside form, #content ol, aside ol, #content dl, aside dl, #content dir, aside dir, #content menu, aside menu {
    line-height: 1.7;
}

/*Home Valuation Page*/
.git-form {
}

.git-form-inner {
}

.git-form-row {
    display: flex;
    margin: 0 -11px;
}

.git-form-col {
    width: 100%;
    padding: 0 11px;
}

.git-form-row:not(:last-child) .git-form-col {
    margin: 0 0 22px;
}

.git-form-row:nth-child(3) .git-form-col {
    margin: 0 0 33px;
}

.git-form-row.col-2 .git-form-col {
    width: 50%;
}

.git-form-col span {
    display: block;
}

.git-form-col input:not([type="submit"]), .git-form-col textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
    text-transform: uppercase;
    padding: 20px 0;
}

.git-form-col textarea {
    resize: none;
    height: 79px;
}

.git-form .section-button {
    justify-content: center;
    position: relative;
}

.git-form .section-button input {
    width: 194px;
}

.git-form .ajax-loader, .git-form .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
}

.git-form .wpcf7 form .wpcf7-response-output {
    width: 560px;
    margin: 15px auto 0;
    padding: 5px 10px;
    text-align: center;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-width: 1px;
    position: absolute;
    left: 0;
    right: 0;
    max-width: calc(100% - 30px);
}

#inner-page-wrapper .git-form .wpcf7 form .wpcf7-response-output {
    margin: 54px auto 0;
}

.git-form .wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 90%;
    max-width: 195px;
    height: 31px;
    padding: 5px 10px !important;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-width: 1px !important;
}

.aios-home-valuation-step-wrap .aios-home-valuation-map h3 {
    color: #fff !important;
}

.aios-home-valuation-step-wrap .git-form-col select {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
    text-transform: uppercase;
    padding: 20px 0;
}

.aios-home-valuation-step-wrap .git-form-col select option {
    color: #000;
}

.aios-home-valuation-step-wrap .git-form-col input:not([type="submit"]), .aios-home-valuation-step-wrap .git-form-col textarea, .aios-home-valuation-step-wrap .git-form-col select {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.aios-home-valuation-step-wrap .section-button a, .aios-home-valuation-step-wrap .section-button input {
    display: flex ;
    justify-content: center;
    align-items: center;
    width: 308px;
    height: 60px;
    background: transparent;
    border: 1px solid #000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0 0 0 0.2em;
    color: #3d6964;
    text-align: center;
    text-transform: uppercase;
    border-color: #fff;
    color: #fff;
}

.aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a {
    border: 1px solid;
}

.aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-button a:hover {
    border-color: var(--aios-valuation-accent);
    background: transparent !important;
    color: var(--aios-valuation-accent);
}

.site-opt-in-checkbox label span.wpcf7-list-item-label {
    display: block;
    padding-left: 25px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: left;
    color: #fff;
}

.site-opt-in-checkbox {
    clear: both;
    margin: 10px 0;
}

.site-opt-in-checkbox .wpcf7-form-control-wrap {
    display: block;
}

.site-opt-in-checkbox .wpcf7-form-control-wrap .wpcf7-list-item {
    margin: 0;
}

.site-opt-in-checkbox label {
    display: block;
    position: relative;
}

.site-opt-in-checkbox label input {
    position: absolute;
    top: 0;
    left: 0;
    width: auto!important;
    height: auto!important;
    opacity: 0;
}

.site-opt-in-checkbox label span.wpcf7-list-item-label {
    display: block;
    padding-left: 25px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: left;
}

.site-opt-in-checkbox label span.wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(0, 0, 0, .5);
}

.site-opt-in-checkbox label input:checked ~ span.wpcf7-list-item-label:before {
    background: #3d6964!important;
    border-color: #3d6964!important;
}

.site-opt-in-checkbox.is-white {
    color: #fff;
}

.site-opt-in-checkbox.is-white label span.wpcf7-list-item-label:before {
    border-color: #fff;
}

.use-floating-validation-tip .site-opt-in-checkbox .wpcf7-not-valid-tip {
    display: block;
    margin: 0;
    left: 25px;
    top: 0;
}

#IDX-main.IDX-type-moreinfo {
    max-width: 1280px;
}

#content #IDX-main.IDX-type-moreinfo h2#IDX-moreinfoHeader {
    text-transform: uppercase;
    font-size: clamp(20px, 1.458vw, 28px);
    font-weight: 700;
    font-family: var(--font-family-title);
}

#IDX-main.IDX-type-moreinfo .IDX-propertyInfoList li {
    font-size: clamp(14px, 0.885vw, 17px);
    font-family: var(--font-family-title);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding-bottom: 5px;
}

#IDX-main.IDX-type-moreinfo #IDX-previousPage a.IDX-btn, #IDX-main.IDX-type-moreinfo #IDX-moreinfoFormActions button.IDX-btn {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    padding: 19px 10px;
    color: #fff !important;
    background: #000;
    letter-spacing: 0.05em;
    font-weight: 500;
    -webkit-transition: var(--animate);
    -o-transition: var(--animate);
    transition: var(--animate);
}

#IDX-main.IDX-type-moreinfo #IDX-previousPage a.IDX-btn:hover, #IDX-main.IDX-type-moreinfo #IDX-moreinfoFormActions button.IDX-btn:hover {
    background-color: var(--primary) !important;
}

#IDX-main.IDX-type-moreinfo.IDX-wrapper-standard label.IDX-control-label {
    font-size: clamp(14px, 1vw, 17px);
    font-family: var(--font-family-title);
    display: block;
    font-weight: 500;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.welc-desc p {
    font-size: 18px;
    line-height: 34px;
    margin-top: 30px;
    color: #646567;
}

.ip-about-wrap .ip-about-listings a {
    pointer-events: none;
}

/*Home Valuation Page*/
.ip-custom-banner {
    position: relative;
    display: block;
    background-color: #000;
}

.ip-custom-breadcrumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}

.ip-custom-breadcrumbs p#breadcrumbs {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    text-transform: uppercase;
    color: #fff;
}

.ip-custom-breadcrumbs p#breadcrumbs a {
    color: #fff;
}

.ip-custom-banner .img-canvas canvas {
    min-height: 250px;
}

.ip-custom-banner .img-canvas img {
    filter: brightness(0.7);
}

body.idx-more-info #content-full #content p#breadcrumbs {
    display: none;
}

body.idx-more-info #content .entry-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 41px auto;
    text-align: left;
}

.idx-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0;
}

body.page-id-23869 #inner-page-wrapper {
    margin-bottom: 0;
}

body.page-id-23869 #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

body.page-id-23869 .ip-custom-banner {
    display: none;
}

#content-full #content p#breadcrumbs {
    display: none;
}

.page-id-23869 .gsite-title span em {
    color: #fff;
}

.type-post.category-luxury-communities .gsite-title {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
}

#aios-testimonials #content #breadcrumbs {
    display: none;
}

#aios-testimonials .gsite-title {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
}


body.error404 #content p#breadcrumbs {
    display: none;
}

.page_item.page-item-2080,
.page_item.page-item-767,
.page_item.page-item-22742,
.page_item.page-item-22744,
.page_item.page-item-23878,
.page_item.page-item-2086,
.page_item.page-item-1630,
.page_item.page-item-2083{
	display: none;
}


/* updates */

h2#IDX-photoGalleryHeader {
    padding-left: 40px;
}
/*body:has(#IDX-photoGalleryContainer) .entry-title{
     padding-left: 40px;
}*/
body:has(#IDX-photoGalleryContainer) .entry-title {
    padding: 0;
    margin: 0 auto;
}

body.idx-more-info .addtoany_content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}
.select2-choices::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.IDX-wrapper-standard .select2-container.select2-container-multi .select2-choices input {
    padding: 0 !important;
}

.select2-drop.select2-drop-active {
    z-index: 9999 !important;
}

li.page_item.page-item-23425,
li.page_item.page-item-37,
li.page_item.page-item-40,
li.page_item.page-item-29,
li.page_item.page-item-723,
li.page_item.page-item-9,
li.page_item.page-item-805,
li.page_item.page-item-39,
li.page_item.page-item-23289,
li.page_item.page-item-36,
li.page_item.page-item-12,
li.page_item.page-item-30,
li.page_item.page-item-13,
li.page_item.page-item-31,
li.page_item.page-item-47,
li.page_item.page-item-22782,
li.page_item.page-item-38,
li.page_item.page-item-14,
li.page_item.page-item-1216,
li.page_item.page-item-10,
li.page_item.page-item-2164,
li.page_item.page-item-23514,
li.page_item.page-item-11,
li.page_item.page-item-2009,
li.page_item.page-item-2012,
li.page_item.page-item-34,
li.page_item.page-item-33,
li.page_item.page-item-1327,
li.page_item.page-item-635,
li.page_item.page-item-1353 {
    display: none;
}

body:has(.category-luxury-communities) .entry-content {
    padding-top: 70px;
}

ul.IDX-propertyInfoList {
    list-style: none !important;
}

p#breadcrumbs a:hover {
    color: #1fa9c5;
}
.ip-contact-smi ul li a:hover i {
    color: #3bb0ca;
}

.aios-home-valuation-step-wrap .aios-home-valuation-form .wpcf7 form .wpcf7-response-output {
    position: relative;
    margin-top: 10px !important;
}

.ipsearch-field-btn.flex {
	justify-content: center;
}

.ip-fc-list .img-canvas {	
	background: #dfdfdf;
}

@media only screen and (min-width: 992px) {
    body .aios-home-valuation-form-steps-wrap .aios-home-valuation-title {
        padding-top: 100px;
    }
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 1199px) {
    .bg-fixed canvas {
        background-attachment: scroll !important;
    }
}

@media only screen and (max-width: 1080px) {
}

@media only screen and (max-width: 991px) {
	
    .testi-slides:not(.slick-initialized) .testi-slide,
    .ftr-con-left,
    .ftr-con-right {
        width: 100%;
    }
    .home p {
        text-align: justify;
    }

    .is-mobile {
        display: block;
    }

    .is-desktop {
        display: none;
    }

    #pojo-a11y-toolbar {
        display: none;
    }

    .gsite-title span em:before {
        display: none;
    }

    .gsite-title span {
        padding-left: 0;
    }

    .gsite-title {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        text-align: center;
    }

    .gsite-button {
        margin: 0 auto !important;
        height: 55px;
    }

    .header-nav {
        display: none;
    }

    .header-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header-logo img.fxd-nav-logo {
        display: block !important;
        min-width: 240px;
        min-width: 150px;
        filter: drop-shadow(1px 1px 2px rgb(0 0 0 / .50));
    }

    .header-logo img.main-nav-logo {
        display: none;
    }

    .header-main {
        position: relative!important;
        background: #fff;
        margin-top: 51px;
    }

    .header-inner {
        padding: 25px 0;
    }

    .footer-main {
        padding: 0 20px;
    }

    .ftr-logos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .ftr-logo-divider {
        height: 0;
        width: 100px;
        margin: 15px 0;
    }

    .ftr-smi {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 30px;
    }

    .ftr-smi a {
        font-size: 26px;
        margin: 10px 15px;
    }

    .footer-column {
        display: block;
    }

    .footer-form {
        width: 100%;
        text-align: center;
        max-width: 650px;
        margin: 0 auto;
    }

    .ftr-form-text p {
        text-align: center;
    }

    .ftr-form-title h2, .ftr-con h2, .footer-nav h2 {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }

    .ftr-form-title h2:before, .ftr-con h2:before, .footer-nav h2:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .footer-links {
        width: 100%;
        padding-top: 70px;
    }

    .ftr-con-col {
        display: block;
    }

    .ftr-con-col > div div {
        text-align: center;
    }

    .footernav {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        text-align: center;
    }

    .footer-disclaimer p br {
        display: none;
    }

    .testi-inner {
        display: block;
        padding: 70px 0;
    }

    .testi-left {
        padding: 0;
        width: 100%;
    }

    .testi-right {
        width: 100%;
    }

    .testi-slider .testi-slide p {
        text-align: center;
    }

    .testi-slide h3 {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 30px auto 0;
    }

    .testi-slide h3:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .testi-slides:not(.slick-initialized) .testi-slide:nth-child(n+2) {
        display: none !important;
    }

    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

    #content-sidebar, #content-full {
        width: 100%;
    }

    .outer {
        width: 100%;
        min-width: 100%;
    }

    #content-sidebar #content {
        width: 100%;
    }

    /* .ham-menu {
        display: none;
    } */

    body.expand {
        overflow: scroll;
    }

    body.expand:before {
        display: none;
    }

    /* .header-burger {
        display: none !important;
    } */
    .header-main {
        margin-top: 0;
    }
    .header-inner {
        justify-content: space-between
    }
    .header-burger span {
        background: #499aba;
        width: 35px;
    }
    .header-mobile-contact {
        display: block;
        margin-left: auto;
        margin-right: 25px;
    }
    .header-burger span:nth-child(2) {
        width: 15px;
        margin: 7px 0 7px auto
    }
    .header-burger span:last-child {
        width: 25px;
    }
    .ham-menu-inner {
        padding: 25px 30px;
        position: relative;
    }
    .ham-close-btn {
        font-size: 20px;
        padding: 5px;
    }
    .ham-menu-logo {
        border-bottom: 1px rgb(30 30 30 / 7%) solid;
        padding-bottom: 25px;
    }
    .ham-menu-nav {
        padding-top: 30px;
    }
    ul#expnav > li {
        padding: 15px 0
    }
    ul#expnav > li > a {
        font-size: 20.33px;
    }
    ul#expnav .sub-menu {
        line-height: normal;
        padding-top: 10px;
    }
    ul#expnav .sub-menu li {
         margin-bottom: 0;
     }
    ul#expnav .sub-menu li a {
        font-size: 11px;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
	body .ipsearch-field.ipsearch-field-btn input[type="reset"] {
		margin-left: auto;
	}
    .ip-banner .container {
        width: 100%;
    }
    body:has(#IDX-main) #IDX-map {
        min-height: 700px;
    }

}

@media only screen and (max-width: 480px) {
    .ip-banner .container {
        width: 100%;
    }

    .git-field {
        width: 100%;
    }

    .gsite-title span em {
        font-size: 31px;
    }
    .ip-contact-content .wpcf7-response-output {
        font-size: 10px;
        top: 102%;
    }

    #IDX-coreSearchFields .IDX-control-group {
         width: 100% !important; 
    }
    .aios-home-valuation-step-wrap .section-button a, .aios-home-valuation-step-wrap .section-button input {
        width: 100%;
    }

}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
