/*
Theme Name: Hall Group Properties
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.1
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Open Sans', sans-serif;
    --font-family-title: 'Abhaya Libre', serif;
    --font-size-default: 17px;
    --font-size-title: 18px;
    --font-color-default: #333;
    --font-color-title: #6c757d;

    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4,0,.2,1);
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

.font-opensans{
    font-family: var(--font-family-default);
}

.font-abhaya{
    font-family: var(--font-family-title);
}


#mainnav{
    display: none;
}
.header-nav{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    
}
.header-nav:not(#fixednav){
    width: calc(50% - min(12.993vw,191px));
    padding: min(1.225vw,18px) 0 0;
}
.header-nav.mainnav-r{
/*    justify-content: flex-start;*/
    justify-content: flex-end;
}
.header-nav a{
    color: #fff;
    font-size: min(1.293vw,19px);
    letter-spacing: 0.025em;
}
.header-nav > li{
    margin: 0 0 0 min(2.8vw,45px);
}
.header-nav > li:focus-within > a,
.header-nav > li:hover > a{
    color: #ceac7f;
}
.header-nav > li:first-child{
    margin-left: 0;
}
/* Sub Menu */
.header-nav li {
    position:relative;
    display: inline-block;
}

.header-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    position: absolute;
    width:100%;
    min-width: min(13.605vw,200px);
    text-align: center;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-nav > li > .sub-menu {
    left: -150vw;
    right: -150vw;
    margin: 0 auto;
    padding: min(0.476vw,7px) 0 0;
}
.header-nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: min(1.157vw,17px) min(0.340vw,5px);
    font-size: min(1.020vw,15px);
    color: #333;
    background: #fff;
    letter-spacing: 0.080em;
}
.header-nav .sub-menu li:focus-within > a,
.header-nav .sub-menu li:hover > a {
    color: #fff;
    background: #ceac7f;
    text-decoration: none;
}
.header-nav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}
.header-nav li:focus-within > .sub-menu,
.header-nav li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-nav .sub-menu li {
    position: relative;
    display: block;
    margin: 1px 0 0;
}
.header-nav .sub-menu li:first-child{
    margin: 0 0 0;
}
#fixednav.header-nav a{
    font-size: min(1.468vw,20px);
}
#fixednav.header-nav > li{
    margin: 0 0 0 min(3.304vw,45px);
}
#fixednav.header-nav .sub-menu {
    min-width: min(14.684vw,200px);
}
#fixednav.header-nav .sub-menu a {
    padding: min(1.248vw,17px) min(0.367vw,5px);
    font-size: min(1.101vw,15px);
}
#fixednav.header-nav{
    justify-content: center;
}
#fixednav.header-nav a{
    color: #373536;
}
#fixednav.header-nav > li:focus-within > a,
#fixednav.header-nav > li:hover > a{
    color: #ceac7f;
}
#fixednav.header-nav > li > .sub-menu {
    padding: min(2.570vw,35px) 0 0;
}
#fixednav.header-nav .sub-menu li:focus-within > a,
#fixednav.header-nav .sub-menu li:hover > a {
    color: #fff;
    background: #ceac7f;
    text-decoration: none;
}
.hdr-fixed:not(.active) #fixednav.header-nav > li:focus-within > .sub-menu,
.hdr-fixed:not(.active) #fixednav.header-nav > li:hover > .sub-menu{
    pointer-events: none;
}

.home .header-nav li.menu-item-137569{
    display: none;
}
.header-nav li.menu-item-137569 > a {
    font-size: 0!important;
}
.header-nav li.menu-item-137569 > a:before {
    content: "\b0128";
    position: relative;
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    font-size: 25px;
    line-height: 1;
    margin-top: 10px;
}

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/

/* 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; */
}

#main-wrapper{
    overflow: hidden;
}

/********CSS Post Launch********/
a,
a:hover,
a:focus,
input,
input:hover,
input:focus,
textarea,
textarea:focus,
textarea:hover,
select:hover,
select:focus,
select,
button,
button:focus,
button:hover,
.btn-group.bootstrap-select.show-tick.qs-select,
.bootstrap-select .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus{
    outline: 0px !important;
}
#content .ihf-search .ihf-select-options ul,
#content .ihf-search .ihf-select-options,
#content .ihf-search .ihf-pagination,
#content #ihf-main-container .nav-tabs,
#content #ihf-main-container .chosen-results{
    margin: 0 0 0;
    padding: 0 0 0;
    list-style: none;
}
#content #ihf-main-container #ihf-search-adv2-submit{
    margin: 20px 0 0;
}
#content #ihf-main-container .ihf-grid-result-address{
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
#content #ihf-main-container .ihf-listing-search-results .btn{
    padding: 6px 6px;
}
#content div.wpcf7-response-output,
div.wpcf7-response-output{
    text-align: center;
}

#ihf-main-container #ihf-mortgage-calculator-modal .mc-total-payment-subline,
#content #ihf-main-container .mc-total-payment-subline{
    color:#333;
}

#ihf-main-container .pagination>li>a,
#ihf-main-container .pagination>li>span{
    padding: 6px 9px;
}
#ihf-main-container #ihf-schedule-showing-request-form .form-control{
    padding: 6px 7px;
}
#content #ihf-main-container #ihf-search-location-tab{
    margin: 8px 5px 0 0;
}
#ihf-main-container #ihf-advsearch-features label{
    font-size: .8em;
}
html.name-Microsoft_Edge .ai-default-cf7wrap input[type="submit"],
html.name-Microsoft_Edge .ai-default-cf7wrap input.wpcf7-submit{
    margin: 6px 0 0;
}
#ws-walkscore-tile{
    background:#fff !important;
}
#hero .quick-search form select[name="propertyType"]{
    margin-left: 2%;
}
#content ul.ihf-navbar-nav{
    list-style: none;
    margin: 0 0 0;
}
#content .ihf-eureka .ihf-navbar{
    padding: 4px 14px;
}
#content #ihf-main-container .ihf-listing-open-home-text-grid,
#content #ihf-main-container .ihf-map-info-window-content{
    color:#777;
}
#content #ihf-main-container label{
    color:inherit;
}
#content #ihf-main-container .ihf-polygon-reset{
    color:#000;
}
#ihf-main-container .modal-body {
    color: #000;
}
body.page-id-0 > img,
body.page-id-0 > iframe{
    display: none !important;
}
#content #ihf-main-container #ihf-market-report-nav-container.row,
#content #ihf-main-container #ihf-market-report-nav-container.row .row,
#content #ihf-main-container .row #areaPickerContainer.row,
#content #ihf-main-container .row #ihf-search-location-tab .row,
#content #ihf-main-container .row #ihf-refine-map-search-form .row,
#content #ihf-main-container .row .ihf-grid-result-container .row,
#content #ihf-main-container .row #ihf-search-location-tab.row{
    margin-left: -15px;
    margin-right: -15px;
}
#content #ihf-main-container .row .row{
    margin-left: 0;
    margin-right: 0;
}
#ihf-main-container  .ihf-social-share .dropdown-menu > li > a{
    color:#000 !important;
}
#ihf-main-container  .ihf-social-share .dropdown-menu > li > a:hover{
    color:#fff !important;
}
#ihf-main-container #ihf-refine-map-search-form label{
    color:#fff !important;
}
#ihf-main-container #ihf-refine-map-search-form .checkbox {
    padding-left: 0px;
}
#ihf-main-container ul.chosen-results {
    margin-left: 0 !important;
}
#content .ihf-eureka ul.ihf-dropdown-menu{
    margin: 0 0 0;
    padding: 0 0 0 0;
    list-style: none;
}
#content #ihf-detail-navrow .ihf-detail-navigation .pull-right{
    float: none !important;
    text-align: right;
}
#content #ihf-main-container .map-infobox-img{
    max-width: 100% !important;
}
#ihf-main-container #ihf-map-canvas .ihf-map-info-box-title{
    padding: 0 15px 0 0;
}
.grecaptcha-badge{
    z-index: 91;
}
#content #IDX-main{}
#content #IDX-main #IDX-boxLabel_remarksConcat input{
    display: block;
    width: 100%;
}
#content #IDX-main ul.select2-choices,
#content #IDX-main ul.IDX-navbar-nav{
    margin: 0 0 0 0;
}
.areaPickerExpandAllTopBar:after{
    content:'';
    display: block;
    clear: both;
}
#ihf-main-container #ihf-main-search-form fieldset > div:nth-child(14) .checkbox{
  padding-left: 0px;
}
#ihf-main-container #ihf-main-search-form fieldset > div:nth-child(14) .checkbox label{
    padding-right: 30px;
    white-space: break-spaces;
}
#ihf-main-container #ihf-detail-features-tab > .row.mt-10{
    margin-left: 0;
    margin-right: 0;
}
#ihf-agent-sellers-rep-own-listing{
    max-width: 100%;
}
#ihf-main-search-form fieldset div[data-ihf-geographic-field="true"] .checkbox{
    padding-left: 0;
}
#content ul#IDX-searchNavList{
    margin: 0 0 0;
}
#content ul#IDX-searchNavList li:first-child{
    padding-left: 0px;
}
#content ul#IDX-searchNavList li:last-child{
    padding-right: 0px;
}
#IDX-formSubmit.IDX-formSubmit {
    font-size: 16px;
    margin-right: 20px;
    line-height: 18px;
}
#IDX-formSubmit.IDX-formSubmit {
    font-size: 16px;
    margin-right: 20px;
    line-height: 18px;
    font-weight:400;
}
#IDX-ccz-group .IDX-controls span{
    vertical-align: middle;
    margin: 0 0 0 10px;
}
#IDX-ccz-group .IDX-controls span:first-child{
    margin: 0 0 0 0;
}
#ihf-main-container #ihf-map-canvas{
    position: relative;
    z-index: 0;
}
#ihf-main-container #ihf-refine-map-search-form{
  margin: 0 0;
}
#ihf-main-container .ihf-mapsearch-refine-overlay-inner{
  padding: 8px 15px;
}
#ihf-main-container .ihf-grid-result{
    margin-bottom: 15px;
}
#ihf-main-container .ihf-grid-result:after{
    content: '';
    display: block;
    clear: both;
}
#listings-results .listings-map{
    position: relative;
    z-index: 0;
}
#content ul#idx-mlm-nav-links{
  list-style: none;
  margin: 0 0 0 0;
}
#ihf-map-canvas .leaflet-div-icon{
    background: none;
    border: 0px solid #666;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    width: auto;
    font-size: 11px;
    white-space: nowrap;
    display: none;
}
.use-floating-validation-tip .wpcf7-not-valid-tip:nth-of-type(1){
    display: block;
}
#ihf-main-container #areaPickerClearAll .glyphicon{
    color: #fff !important;
}
#content .leaflet-control-layers form.leaflet-control-layers-list{
    margin: 0 0;
}
#IDX-main.IDX-wrapper-standard .IDX-navbar-collapse{
    padding-left: 0;
    padding-right: 0;
}
/********CSS Post Launch End********/

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.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,.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%;
        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;
            }

.custom-ip-banner-bc {
    display: none;
}

body.page-id-4 .custom-ip-banner-bc,
body.page-id-2756 .custom-ip-banner-bc,
body.page-id-124 .custom-ip-banner-bc,
body.page-id-137225 .custom-ip-banner-bc,
body.page-id-137031 .custom-ip-banner-bc,
body.category-our-blog .custom-ip-banner-bc,
body.page-id-137212 .custom-ip-banner-bc {
    display: block;
}

body.page-id-4 .custom-ip-banner-bc .custom-ip-banner,
body.page-id-2756 .custom-ip-banner-bc .custom-ip-banner,
body.page-id-124 .custom-ip-banner-bc .custom-ip-banner,
body.page-id-137225 .custom-ip-banner-bc .custom-ip-banner,
body.page-id-137031 .custom-ip-banner-bc .custom-ip-banner,
body.category-our-blog .custom-ip-banner-bc .custom-ip-banner,
body.page-id-137212 .custom-ip-banner-bc .custom-ip-banner {
    display: none;
}
.page-id-137082 .custom-ip-banner {
    display: block;
}
body.page-id-4 .custom-ip-banner-bc {
    display: none;
}
.single-aios-communities ul {
    padding-left: 20px;
}
/* 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;
    }

/* 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 }

#inner-page-wrapper {
    margin-bottom: 0;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#inner-page-wrapper .agent-entry-title,
#inner-page-wrapper .entry-title,
#content .entry-title,
#content .archive-title {
    font-family: var(--font-family-title);
    font-size: 55px;
    margin: 0.67em 0;
    color: #333;
    text-transform: none;
    font-weight: 400;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-family: var(--font-family-title);
}

p#breadcrumbs{
    line-height: 1.7;
    margin: calc(1.12em + 3px) 0 1.12em;
}
p#breadcrumbs.custom {
    margin: 21px 0;
    font-size: 16px;
    color: #333;
    letter-spacing: 0.100em;
    line-height: 1;
}

p#breadcrumbs.custom span.breadcrumb_last strong {
    font-weight: 400;
}

:after,
:before{
    pointer-events: none;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

a,
a *,
img,
.global-button,
.global-button *,
.ease,
input[type="submit"],
button{
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

section{
    position: relative;
    background: #fff;
}

.img-cover{
    position: relative;
    display: block;
    z-index: 0;
}
.img-cover > canvas{
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
}
.img-cover > img{
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
canvas{
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
}

.mw-container{
    max-width: calc(100% - 30px);
    margin: 0 auto;
}

.ease{
    transition: all ease .5s;
    -moz-transition: all ease .5s;
    -webkit-transition: all ease .5s;
}
.ease-f{
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
}
.ease-s{
    transition: all ease .8s;
    -moz-transition: all ease .8s;
    -webkit-transition: all ease .8s;
}

.header{
    position: absolute;
    z-index: 80;
    top: 0;
    left: 0;
    right: 0;
}
.hdr-main{
    padding: min(2.517vw,37px) 0 0;
    position: relative;
    z-index: 0;
}
.hdr-container{
    width: 1332px;
}
.hdr-container.main{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 1440px;
    flex-direction: row-reverse;
}
.hdr-container.main > .hdr-logos{
    display: none;
}
.hdr-container.main .navigation{
    width: calc(100% - min(2.041vw,30px));
}
.hdr-logos{
    max-width: 290px;
}
.hdr-logo.main{
    margin: 0 auto 15px;
    max-width: 279px;
}
.mob-logos{
    max-width: 220px;
    margin: 0 auto;
}
.mob-logo.main{
    margin: 0 auto 15px;
    max-width: 210px;
}

.hdr-burger{
    cursor: pointer;
}
img.lazyload{
    opacity: 0 !important;
}
.hdr-burger > div{
    width: min(2.041vw,30px);
    height: 2px;
    background: #fff;
}
.hdr-burger > div:nth-child(2){
    width: min(0.680vw,10px);
    margin: min(0.340vw,5px) auto;
}
.hdr-burger:hover > div:nth-child(2){
    width: min(2.041vw,30px);
}
.hdr-burger.main{
    margin: min(1.293vw,19px) 0 0;
}
.hdr-fixed{
    position: fixed;
    z-index: 1;
    top: max(-7.342vw,-100px);
    left: 0;
    right: 0;
    background: #fff;
    padding: min(1.395vw,19px) 0;
    opacity: 0;
    pointer-events: auto;
}
.fhdr-inner{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
#fixednav.header-nav > li:first-child {
    margin-left: 0;
}
.fhdr-logo{
    max-width: min(3.891vw,53px);
}
.hdr-burger.fixed > div{
    background: #ceac7f;
}
.hdr-burger.fixed > div{
    width: min(2.203vw,30px);
}
.hdr-burger.fixed > div:nth-child(2){
    width: min(0.734vw,10px);
    margin: min(0.367vw,5px) auto;
}
.hdr-burger.fixed:hover > div:nth-child(2){
    width: min(2.203vw,30px);
}
.sliding-panel{
    position: fixed;
    z-index: 81;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
}
.sliding-panel .sp-bd{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.2;
}
.sliding-panel .sp-inner{
    position: absolute;
    z-index: 1;
    top: 0;
    left: -500px;
    height: 100vh;
    overflow: auto;
    width: 500px;
    background: rgba(255,255,255,0.98);
    padding: 80px 0 72px;
}
.sp-close{
    position: absolute;
    top: 40px;
    right: 40px;
    color: #000;
    font-size: 23px;
    cursor: pointer;
}
.sp-close:hover{
    color: #ceac7f;
}
.sp-navigation{}
#spnav{
    text-align: center;
}
#spnav li{}
#spnav a{
    display: inline-block;
}
#spnav > li{
    margin: 8px 0 0;
}
#spnav > li:first-child{
    margin: 0 0 0;
}
#spnav > li > a{
    font-family: var(--font-family-title);
    font-size: 28px;
    letter-spacing: 0.200em;
    background: rgba(0,0,0,0);
    padding: 11px 26px;
}
#spnav > li > a:hover{
    background: #415a7d;
    color: #fff;
}
#spnav .sub-menu{
    padding: 2px 0 13px;
}
#spnav .sub-menu li {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.080em;
}
#spnav .sub-menu li:first-child{
    margin: 0 0 0;
}
#spnav .sub-menu a{}
#spnav .sub-menu a:hover{
    color: #ceac7f;
}
.sp-logos{
    max-width: 245px;
    margin: 34px auto 0;
}
.sp-logo{
    
}
.sp-logo.main{}
.sp-logo:not(.main){
    max-width: 225px;
    margin: 15px auto 0;
    filter: brightness(0) invert(0.28);
    -webkit-filter: brightness(0) invert(0.28);
}
.sp-sm{
    text-align: center;
    font-size: 0;
    margin: 35px 0 0;
}
.sp-sm a{
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #415a7d;
    margin: 0 0 0 35px;
}
.sp-sm a.asis-mailto-obfuscated-email{
    font-size: 13px;
}
.sp-sm a:first-child{
    margin: 0 0 0;
}
.sp-sm a:hover{
    color: #ceac7f;
}
#hp-hero{}
.hp-ss{
    position: relative;
    z-index: 0;
}
.ss-canvas{
    position: relative;
    z-index: 0;
    pointer-events: none;
}
.ss-canvas canvas{
    min-height: 400px;
}
.ss-holder{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.ss-holder.from-clone{
    background: #000;
    clip-path: inset(0 0 0 0);
    -moz-clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    overflow: hidden;
}
.ss-holder.from-clone iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: scale(1.15);
}
.hp-tagline{
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.tagline-wrap{
    color: #fff;
    font-size: min(5.133vw,46px);
    font-weight: 500;
    letter-spacing: 0.020em;
    line-height: 1.2;
    pointer-events: auto;
    opacity: 1;
}
.tagline-wrap.done{
    opacity: 0;
    pointer-events: none;
}
.hp-tagline-list:not(.slick-initialized) .hp-tagline-item:nth-child(1) ~ div {
    display: none;
}
.hp-tagline-item {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hp-stats{
    background: url(images/accent-bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 112px 0 70px;
}
#hp-stats:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.stats-wrap{
    position: relative;
    z-index: 1;
}
.stats-list{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}
.stats-single{
    text-align: center;
    color: #c9ae85;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 0.100em;
    
    font-weight: 500;
}
.stats-single:first-child{
    margin: 0 0 0;
}
.stats-single .stats-lg{
    font-family: var(--font-family-title);
    font-size: 2.4em;
    color: #333;
    font-weight: 400;
    margin: 0 0 11px;
}
.stats-single .stats-lg:after{
    content:'';
    display: block;
    position: relative;
    width: 50px;
    height: 2px;
    background: #415a7d;
    margin: 0 auto 0;
}
.stats-single .stats-sm{
    text-transform: uppercase;
}
button.global-button,
input.global-button,
a.global-button,
.global-button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    vertical-align: middle;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    color: #c9ae85;
    border: 1px solid #c9ae85;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.200em;
    text-transform: uppercase;
    min-width: 230px;
    text-align: center;
    min-height: 55px;
    padding: 5px 30px;
}

button.global-button.alt:not(:hover),
input.global-button.alt:not(:hover),
a.global-button.alt:not(:hover),
.global-button.alt:not(:hover){
    color: #c9ae85;
}
.global-button-parent:hover button.global-button.alt:not(:hover),
.global-button-parent:hover input.global-button.alt:not(:hover),
.global-button-parent:hover a.global-button.alt:not(:hover),
.global-button-parent:hover .global-button.alt:not(:hover),
.global-button-parent:hover button.global-button,
.global-button-parent:hover input.global-button,
.global-button-parent:hover a.global-button,
.global-button-parent:hover .global-button,
button.global-button:hover,
input.global-button:hover,
a.global-button:hover,
.global-button:hover{
    background: #415a7d;
    color: #fff;
    border: 1px solid #415a7d;
}
button.global-button.rev:not(:hover),
input.global-button.rev:not(:hover),
a.global-button.rev:not(:hover),
.global-button.rev:not(:hover){
    background: #c9ae85;
    color: #fff;
}
#hp-wc{
    padding: 75px 0 0;
}
#hp-wc:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255,255,255);
    background: linear-gradient(-180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 100%);
}
.wc-container{
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
}
.wc-wrap{}
.wc-inner{}
.wc-content{
    background: #fff;
    padding: 0 15px;
}
.wc-content h2{
    font-size: 60px;
    font-family: var(--font-family-title);
    letter-spacing: 0.075em;
    color: #333;
    text-align: center;
}
.wc-content h2:after{
    content:'';
    display: block;
    position: relative;
    background: #415a7d;
    width: 88px;
    height: 2px;
    margin: 15px auto 0;
}
.wc-det{
    padding: 21px 0 0;
}
.wc-set{
    margin: 42px 0 0;
}
.wc-set:first-child{
    margin: 0 0 0;
}
.wc-set h3{
    font-size: 35px;
    letter-spacing: 0.200em;
    color: #c9ae85;
    text-align: center;
    margin: 0 0 22px;
    font-weight: 500;
}
.wc-desc{
    font-size: 17px;
    line-height: 1.177;
    text-align: center;
}
.wc-desc p:not(:nth-of-type(1)){
    margin: 18px 0 0;
}
.wc-desc span {
    white-space: nowrap;
}
.wc-sm{
    text-align: center;
    font-size: 0;
    margin: 19px 0 0;
}
.wc-sm a{
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #415a7d;
    margin: 0 0 0 35px;
}
.wc-sm a.asis-mailto-obfuscated-email{
    font-size: 13px;
}
.wc-sm a:first-child{
    margin: 0 0 0;
}
.wc-sm a:hover{
    color: #ceac7f;
}
.wc-button{
    margin: 20px 0 0;
    padding: 0 0 50px;
}
.wc-agent{
    text-align: center;
}
.wc-img{
    padding: 0 15px;
}
.wc-img img{
    margin: 0 auto;
}
.wc-info{
    padding: 45px 0 24px;
    background: #fff;
    position: relative;
}
.wc-info h3{
    font-family: var(--font-family-title);
    font-size: 40px;
    color: #333;
    letter-spacing: 0.075em;
}
.wc-info h3:after{
    content:'';
    display: block;
    width: 120px;
    height: 2px;
    background: #c9ae85;
    margin: 14px auto 0;
}
.wc-position{
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.020em;
    line-height: 1.294;
    margin: 18px 0 0;
}
.wc-contact{
    margin: 8px 0 0;
}
.wc-contact > div{
    font-size: 15px;
    line-height: 1.333;
    letter-spacing: 0.040em;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.wc-contact > div em {
    font-size: 0.867em;
    margin: 0 6px 0 0;
}
.wc-contact > div em.ai-font-envelope-filled-a{}
.wc-contact a:hover, 
.wc-info a:hover{
    color: #c9ae85;
}

#hp-fv{
    padding: 103px 0 50px;
}
.fv-container{
    width: 1473px;
}
.fv-wrap{}
.fv-slides{}
.fv-slides:not(.slick-initialized) .fv-slide:not(:first-child){
    display: none;
}
.fv-slide a{
    display: block;
    position: relative;
}
.fv-slide a:before{
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.2;
}
.fv-slide a:hover:before{
    opacity: 0.4;
}
.fv-slide a:after{
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/fv-play.png) center center no-repeat;
    background-size: 19.674% auto;
}
.fv-content{
    padding: 0 0 29px;
}
.fv-title {
    background: #fff;
    padding: 66px 60px;
}
.fv-title h2{
    font-size: 60px;
    font-family: var(--font-family-title);
    letter-spacing: 0.075em;
    color: #333;
    text-align: center;
}
.fv-title h2:after {
    content: '';
    display: block;
    position: relative;
    background: #415a7d;
    width: 88px;
    height: 2px;
    margin: 15px auto 0;
}
.site-navigation.fv{
    margin: 49px 0 0;
}
.site-navigation{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.site-nav-arrow{}
.site-nav-button{
    margin: 0 68px;
}
.site-nav-arrow button{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    vertical-align: middle;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #555;
    letter-spacing: 0.080em;
    text-transform: uppercase;
    background: none;
    padding: 0 0;
    border: 0;
}
.site-navigation.light .site-nav-arrow button{
    color: #fff;
}

.site-nav-arrow button:hover{
    color: #c9ae85;
}
.site-nav-arrow button em {
    color: #c9ae85;
    font-size: 2.083em;
    margin: 0 20px 0 0;
}
.site-nav-arrow.next button em{
    margin: 0 0 0 20px;
}
.site-nav-arrow button span{}
.site-navigation.light .site-nav-arrow button:hover em,
.site-navigation.light .site-nav-arrow button:hover{
    color: #415a7d;
}
.section-title{}
.section-title h2{
    color: #c9ae85;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.200em;
}
.section-title h2 span{
    display: block;
    font-family: var(--font-family-title);
    color: #333;
    letter-spacing: 0.075em;
    position: relative;
    font-size: 1.714em;
    margin: 24px 0 0;
}
.section-title h2 span:before {
    content: '';
    display: block;
    position: relative;
    background: #415a7d;
    width: 88px;
    height: 2px;
    margin: 0 auto 27px;
}
.section-title.light h2 span{
    color: #fff;
}
.section-title.rev h2 span{
    margin: 0 0 24px;
}
.section-title.rev h2 span:before{
    display: none;
}
.section-title.rev h2 span:after{
    content: '';
    display: block;
    position: relative;
    background: #415a7d;
    width: 88px;
    height: 2px;
    margin: 27px auto 0;
}
#hp-fp{
    padding: 90px 0 0;
}
.fp-wrap{}
.fp-top{}
.site-navigation.fp{
    margin: 30px 0 20px;
    padding: 0 15px;
}
.site-navigation.fp a.global-button{
    font-size: min(3.5vw, 16px);
    min-width: 14.375em;
    padding: 0.3125em 1.875em;
    min-height: 3.4375em;
}
.fp-title{
    padding: 0 0 25px;
}
.fp-slides{
    font-size: 0;
}
.fp-slides .slick-list {
    padding: 20px 0;
}
.fp-single{}
.fp-single a{
    display: block;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.fp-single a:hover{
    z-index: 2;
    transform: scale(1.05);
}
.fp-single a .fp-img {
    overflow: hidden;
}

.fp-single a .fp-img img {
    transform: scale(1.5);
}

.fp-single a .fp-img:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(-180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    opacity: 0.55;
}
.fp-single a:hover .fp-img:before{
    opacity: 0.9;
}

.fp-single a .fp-info{
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: max(-10.0625vw,-161px);
    padding: 0 min(2.5vw,40px) min(3.125vw,50px);
}
.fp-single a:hover .fp-info{
    bottom: 0;
}
.fp-single a .fp-add{
    font-size: min(1.125vw,18px);
    letter-spacing: 0.100em;
    text-transform: uppercase;
    font-weight: 300;
}
.fp-single a .fp-add span{
    display: block;
    font-family: var(--font-family-title);
    letter-spacing: 0.050em;
    font-size: 1.667em;
    text-transform: none;
    font-weight: 400;
    margin: 0 0 min(0.438vw,7px);
}
.fp-single a .fp-det{
    border-top: 1px solid #415a7d;
    padding: min(1.125vw,18px) 0 0;
    margin: min(1.125vw,19px) 0 0;
    max-width: 400px;
    opacity: 0;
}
.fp-single a:hover .fp-det{
    opacity: 1;
}
.fp-single a .fp-bb{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}
.fp-single a .fp-bb > div{
    font-size: min(0.875vw,14px);
    letter-spacing: 0.040em;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 0 0 min(1.3125vw,21px);
}
.fp-single a .fp-bb > div:first-child{
    margin: 0 0 0;
}
.fp-single a .fp-price{
    font-size: min(1.5vw,24px);
    font-weight: 500;
    letter-spacing: 0.040em;
    margin: min(0.438vw,7px) 0 0;
}
.fp-single a .fp-button{
    pointer-events: none;
    margin: min(1.313vw,21px) 0 0;
}
#hp-omo {
    padding: 60px 0;
    background: #5A5A5a;
}
#content .omo-wrap{
    padding: 75px 0;
}
.omo-wrap{
    text-align: center;
}
.omo-wrap h2{
    font-size: 50px;
    font-family: var(--font-family-title);
    letter-spacing: 0.075em;
    color: #fff;
}
#content-full .omo-wrap h2{
    font-size: 50px;
    font-weight: 400;
    margin: 0 0;
    color: inherit;
}
.omo-wrap p {
    color: #fff;
    line-height: 1.5;
    max-width: 800px;
    margin: 30px auto 20px;
}
#content-full .omo-wrap p{
    color: inherit;
    max-width: none;
}
.omo-button{
    margin: 30px 0 0;
}

/** HP MAp **/

.non-fixed-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    font-size: 0;
}
    .non-fixed-bg canvas {
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

#hp-map{

    position: relative; 
    overflow: hidden; 
    padding: 0 15px;  
}

#hp-map .section-title h2 span:before {
    display: none;
}

#hp-map .section-title h2 span {
    font-size: 45px; 
    padding-bottom: 10px;
}

.map-bg.non-fixed-bg {
    width: 50%;
}

 .map-bg.non-fixed-bg canvas {
    background-position: top;
 }


 .map-wrapper {
    width: 100%;
    padding: 0 min(4.375vw,70px);
    font-size: 0;
    letter-spacing: 0;
    margin: 0 auto;
    max-width: 1440px; 
    display: flex;
    align-items: center; 
    flex-wrap: wrap;
}

.map-link-btn .title-wrap {
   text-align: left; 
   padding-left: 18px; 
   margin-bottom: 20px;
}

.map-link-btn .title-wrap span {
   margin-left: 120px;
}

.map-right {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    text-align: center;
    margin: 0 auto; 
    position: relative;
}

.map-area-link {
    display: inline-block;
    width:  50%; 
    position: relative;
    z-index: 3; 
}

.map-link-btn {
    display: inline-block;
    font-size: 0;
    width: 100%; 
    max-width: 475px;
}

.map-left {
   display: block;
}
.map-left ul {
    display: block;  
    width: 100%;
}
.map-left li {
  position: relative;
}

.map-left li a {
    display: inline-block;
    font-size: 30px;
    text-transform: capitalize;
    padding: 1em 0.833em;  
    color: #333333;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out; 
    font-weight: 400;  
    position: relative; 
    width: 100%; 
    display: flex; 
    align-items: center;
    cursor: pointer; 
    background: #fff; 
    margin: 0.5em 0; 
    letter-spacing: 0.02em;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
}

.map-left li a > i.dott {
   margin-right: 0.833em; 
   font-size: 0.6em; 
   color: #37999a; 
   position: relative;
}

.map-left li a > i {
    font-size: 1em;
    margin-right: 0.333em;
    color: #c9ae85;
    position: relative;
    top: 0.166em;
} 
.map-blurb{
    font-size: 18px;
    margin: 0.6em 0;
    line-height: 1.4;
    letter-spacing: 0.025em;
    font-family: var(--font-family-title);
}
/*.map-left li a > i.dott:after {
   position: absolute; 
   left: 0;
   right: 0;
   width: 10px;
   height: 10px;
   background: #515151; 
   border-radius: 50%; 
   content: ''; 
   top: 55%; 
   transform: translateY(-50%);

}*/

.map-left li a.active,
.map-left li a:hover {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#415a7d+0,6a8ec0+56,415a7d+100 */
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#415a7d+0,6a8ec0+56,415a7d+100 */
background: rgb(65,90,125); /* Old browsers */
background: -moz-linear-gradient(left,  rgba(65,90,125,1) 0%, rgba(106,142,192,1) 56%, rgba(65,90,125,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(65,90,125,1) 0%,rgba(106,142,192,1) 56%,rgba(65,90,125,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(65,90,125,1) 0%,rgba(106,142,192,1) 56%,rgba(65,90,125,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#415a7d', endColorstr='#415a7d',GradientType=1 ); /* IE6-9 */

color: #fff;
}

.map-left li a.active > i.dott:after,
.map-left li a:hover > i.dott:after {
   color: #fff; 
   background: #fff;
}


.map-view {
   position: relative; 
   display: block;  
   padding-left: 40px;
}

.map-view a.hp-link {
  background: transparent;
}

.map-view a.hp-link span {
   color: #fff;
}

.map-view a.hp-link:hover {
      background: rgba(55, 153, 154,1);
}

.map-main {
    position: relative;
    width: 682px;
  }

  #transparent {

    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

  }

  #trueMap {
    z-index: 1;
  }

  .map-main .hovers {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   

  }

  .map-main .hovers div, .map-main .hovers div p {
    position: absolute;
    margin: 0;
  }

  .map-main .hovers div img {

    opacity: 0;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;

  }

  /* MAP island */
            .map-main .hovers div p.main-area,
            .map-main .hovers div p.main-area-two {

                font-size: 14px;
                font-weight: 500;
                text-shadow: rgb(0, 0, 0) 2px 0px 0px, rgb(0, 0, 0) 1.75517px 0.958851px 0px, rgb(0, 0, 0) 1.0806px 1.68294px 0px, rgb(0, 0, 0) 0.141474px 1.99499px 0px, rgb(000, 000, 000) -0.832294px 1.81859px 0px, rgb(000, 000, 000) -1.60229px 1.19694px 0px, rgb(000, 000, 000) -1.97998px 0.28224px 0px, rgb(000, 000, 000) -1.87291px -0.701566px 0px, rgb(000, 000, 000) -1.30729px -1.5136px 0px, rgb(000, 000, 000) -0.421592px -1.95506px 0px, rgb(000, 000, 000) 0.567324px -1.91785px 0px, rgb(000, 000, 000) 1.41734px -1.41108px 0px, rgb(000, 000, 000) 1.92034px -0.558831px 0px;
                text-transform: capitalize;
                color: #fff;
                white-space: nowrap;
                z-index: 2; 
                letter-spacing: 0.2em;

            }

                #dunthorpe {
                    top: 502px;
                    left: 357px;
                }
                
                    #dunthorpe p.main-area {
                        left: 32px;
                        top: 69px;
                    }
                    
                #lakeoswego {
                    /*top: 579px;
                    left: 152px;*/
                    top: 571px;
                    left: 164px;
                }
                
                    #lakeoswego p.main-area {
                        left: 34px;
                        top: 93px;
                    }

                #westlinn {
                    top: 739px;
                    left: 273px;
                }
                
                    #westlinn p.main-area {
                        left: 133px;
                        top: 109px;
                    }

                #stafford {
                    top: 783px;
                    left: 88px;
                }
                
                    #stafford p.main-area {
                        left: 127px;
                        top: 207px;
                    }

                #portlandkings,
                #portlandandkingsheights {
                    /*top: 141px;
                    left: 167px;*/
                    top: 77px;
                    left: 40px;
                }
                
                    #portlandkings p.main-area,
                    #portlandandkingsheights p.main-area{
                        /*left: 38px;
                       top: 140px;*/
                        left: 165px;
                        top: 230px;
                    }

                #downtown {
                    /*top: 117px;
                    left: 264px;*/
                    top: 142px;
                    left: 280px;
                }
                
                    #downtown p.main-area {
                        /*left: 53px;
                        top: 99px;*/
                        left: 34px;
                        top: 79px;
                        text-align: left;
                    }

      .cont-flex {
        display: flex;  
        justify-content: flex-start;
      }

      .map-tagline {
        position: absolute;
        z-index: 2;
        font-size: 38px; 
        font-weight: 700;
        /* text-shadow: rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px; */
        color: #c9ae85;
        line-height: 0.9;
        top: 34%;
        transform: translateY(-50%);
        -webkit-text-stroke: 2px #ffffff;
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7), 0px 0px 3px rgba(0, 0, 0, 0.7), 0px 0px 3px rgba(0, 0, 0, 0.7);
        left: 0;
        right: 0;
        text-align: center;
      }

/*#hp-map img.map-dummy{
    display: block;
    width: 100%;
    height: auto;
}*/
#hp-smj{}
.smj-container{
    width: 1480px;
}
.smj-wrap {
    padding: 75px 0;
}
.smj-inner{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
}
.smj-col{}
.smj-col:not(.title){
    width: 21.014%;
}
.smj-col.title{}
.smj-link{}
.smj-link a{
    display: block;
    position: relative;
}
.smj-link a .smj-img{}
.smj-link a .smj-img:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    opacity: 0.6;
}
.smj-link a:hover .smj-img:before{
    opacity: 0.78;
    background: #415a7d;
}
.smj-link a .smj-icon{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}
.smj-link a .smj-icon span{
    color: #c9ae85;
    font-size: 46px;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    display: inline-block;
}
.smj-link a:hover .smj-icon span{
    transform: scale(1.0869);
    -moz-transform: scale(1.0869);
    -webkit-transform: scale(1.0869);
    color: #fff;
}
#hp-testi{
    background: none;
}
.testi-container{
    width: 1480px;
}
.testi-wrap{
    background: #333;
    position: relative;
}
.testi-wrap:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/testi-bg.jpg) center center no-repeat;
    background-size: cover;
}
.testi-wrap:after{
    content:'';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(51,51,51);
    background: linear-gradient(0deg, rgba(51,51,51,0.55) 0%, rgba(51,51,51,1) 100%);
}
.testi-inner {
    position: relative;
    z-index: 2;
    padding: 102px 0;
    background: url(/wp-content/uploads/2025/01/testi-bg.jpg) center center no-repeat;
}
.testi-title{
    padding: 0 0 46px;
}
.testi-content{
    width: 1200px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}
.testi-slide{
    font-size: 0;
}
.testi-single{}
.testi-slide:not(.slick-initialized){
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.testi-slide:not(.slick-initialized) .testi-single{
    width: 100%;
    max-width: 580px;
}
.testi-slide:not(.slick-initialized) .testi-single:not(:first-child){
    display: none;
}
.testi-single .testi-block {
    color: #fff;
    padding: 54px 25px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.testi-single .testi-stars{
    text-align: center;
    color: #c9ae85;
    margin: 0 0 33px;
    font-size: 22px;
}
.testi-single .testi-stars em {
    display: inline-block;
    padding: 0 5px;
}
.testi-single .testi-desc{
    font-size: 17px;
    line-height: 1.177;
    font-weight: 300;
    text-align: center;
}
.testi-single .testi-author{
    font-family: var(--font-family-title);
    font-size: 24px;
    letter-spacing: 0.400em;
    text-align: center;
    margin: 16px 0 0;
}
.site-navigation.testi{
    margin: 65px 0 0;
}
#hp-sp{
    padding: 90px 0 54px;
}
.sp-wrap{}
.sp-top{}
.sp-title{
    padding: 0 0 25px;
}
.sp-slides{
    font-size: 0;
}
.sp-slides .slick-list {
    padding: 20px 0;
}
.sp-single{}
.sp-single a{
    display: block;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.sp-single a:hover{
    z-index: 2;
    transform: scale(1.05);
}
.sp-single a .sp-img{}
.sp-single a .sp-img:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(-180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    opacity: 0.55;
}
.sp-single a:hover .sp-img:before{
    opacity: 0.9;
}
.sp-single a .sp-info{
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: max(-10.0625vw,-161px);
    padding: 0 min(2.5vw,40px) min(3.125vw,50px);
}
.sp-single a:hover .sp-info{
    bottom: 0;
}
.sp-single a .sp-add{
    font-size: min(1.125vw,18px);
    letter-spacing: 0.100em;
    text-transform: uppercase;
    font-weight: 300;
}
.sp-single a .sp-add span{
    display: block;
    font-family: var(--font-family-title);
    letter-spacing: 0.050em;
    font-size: 1.667em;
    text-transform: none;
    font-weight: 400;
    margin: 0 0 min(0.438vw,7px);
}
.sp-single a .sp-det{
    border-top: 1px solid #415a7d;
    padding: min(1.125vw,18px) 0 0;
    margin: min(1.125vw,19px) 0 0;
    max-width: 400px;
    opacity: 0;
}
.sp-single a:hover .sp-det{
    opacity: 1;
}
.sp-single a .sp-bb{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}
.sp-single a .sp-bb > div{
    font-size: min(0.875vw,14px);
    letter-spacing: 0.040em;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 0 0 min(1.3125vw,21px);
}
.sp-single a .sp-bb > div:first-child{
    margin: 0 0 0;
}
.sp-single a .sp-price{
    font-size: min(1.5vw,24px);
    font-weight: 500;
    letter-spacing: 0.040em;
    margin: min(0.438vw,7px) 0 0;
}
.sp-single a .sp-button{
    pointer-events: none;
    margin: min(1.313vw,21px) 0 0;
}

#hp-blog{
    padding: 95px 0 43px;
    display: none;
}
#hp-blog:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 30px);
    max-height: 800px;
    background: url(images/accent-bg.jpg) center center no-repeat;
    background-size: cover;
}
#hp-blog:after{
    content:'';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 30px);
    max-height: 800px;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.blog-wrap{
    position: relative;
    z-index: 2;
}
.blog-top{
    padding: 0 0 35px;
}
.blog-row{}
.blog-single{
    box-shadow: 0 0 22px rgba(0,0,0,0.08);
}
.blog-single a{
    display: block;
    position: relative;
    color: #333;
}
.blog-single a .blog-img{}
.blog-single a .blog-det{
    text-align: center;
}
.blog-single a .blog-info {
    padding: 0 20px;
}
.blog-single a .blog-date{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.100em;
    text-transform: uppercase;
    color: #c9ae85;
    padding: 25px 0 0;
}
.blog-single a .blog-title{
    font-family: var(--font-family-title);
    font-size: 24px;
    color: #333;
    line-height: 1.25;
    letter-spacing: 0.050em;
    margin: 17px 0 0;
}
.blog-single a .blog-title:before {
    content: '';
    display: block;
    position: relative;
    background: #415a7d;
    width: 50px;
    height: 2px;
    margin: 0 auto 20px;
}
.blog-single a .blog-desc{
    font-size: 17px;
    line-height: 1.177;
    font-weight: 300;
    margin: 17px 0 0;
}
.blog-single a .blog-button{
    margin: 29px 0 0;
    padding: 0 0 40px;
}
#hp-expval{
    padding: 60px 0;
    background: #5A5A5A;
}
.expval-wrap{}
.expval-wrap h2{
    font-size: 50px;
    font-family: var(--font-family-title);
    letter-spacing: 0.075em;
    /* color: #333; */
    color: #fff;
}
.expval-buton{
    margin: 41px 0 0;
}
.footer{
    position: relative;
    z-index: 0;
}
#ftr-git{
    background: #333;
    padding: 95px 0 76px;
    position: relative;
}
#ftr-git:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/git-bg.jpg) center center no-repeat;
    background-size: cover;
}
#ftr-git:after{
    content:'';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(51,51,51);
    background: linear-gradient(0deg, rgba(51,51,51,0.55) 0%, rgba(51,51,51,1) 100%);
}
.git-wrap{
    position: relative;
    z-index: 2;
}
.git-wrap .wpcf7 form .wpcf7-response-output{
    color: #fff;
}
.git-wrap ::-webkit-input-placeholder {
  text-transform: uppercase;
}
.git-wrap :-ms-input-placeholder {
  text-transform: uppercase;
}
.git-wrap ::placeholder {
  text-transform: uppercase;
}
.git-title{
    padding: 0 0 25px;
}
.git-intro {
    color: #fff;
    margin: 0 0 45px;
    line-height: 1.177;
    letter-spacing: 0.020em;
    font-weight: 300;
    font-size: 1.1em;
}
.git-content{
    margin: 0 auto 0;
    max-width: 1010px;
}
.git-form{}
.git-form .wpcf7-form-control-wrap{
    display: block;
}
.git-row{
    margin: 10px 0 0;
}
.git-row:first-child{
    margin: 0 0 0;
}
.git-row.dual{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}
.git-row.dual > div{
    width: calc(50% - 5px);
}
.git-row.dual > div:first-child{
    margin: 0 0 0;
}
.git-row input:not([type="submit"]):not([type="button"]){
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 70px;
    font-size: 14px;
    letter-spacing: 0.080em;
    background: rgba(255,255,255,0.8);
    color: #333;
    border: 0;
    padding: 0 38px;
    outline: none;
}
.git-row textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 100px;
    resize: none;
    font-size: 14px;
    letter-spacing: 0.080em;
    background: rgba(255,255,255,0.8);
    color: #333;
    border: 0;
    padding: 28px 38px 10px;
    outline: none;
}
.git-row input[type="submit"]{}
.git-row.button{
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    margin: 45px 0 0;
}
.ftr-content{
    background: #fff;
    padding: 0 0 81px;
}
.ftr-logos{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    padding: 81px 0 0;
}
.ftr-logo{}

.ftr-logo.broker{
    max-width: 290px;
}
.ftr-info{
    margin: 45px 0 0;
}
.ftr-info-inner{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;

}
.ftr-info-col{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.ftr-info-col:first-child{
    margin: 0 0 0;
}
.ftr-info-hdr{
    color: #c9ae85;
    font-family: var(--font-family-title);
    font-size: 30px;
    margin: 0 38px 0 0;
}
.ftr-info-content{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
}
.ftr-info-agent{}
.ftr-info-agent:first-child{
    margin: 0 0 0;
}
.ftr-info-agent h3{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.040em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.ftr-info-phone{
    font-size: 15px;
    letter-spacing: 0.040em;
    color: #333;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.ftr-info-phone em{
    margin: 0 8px 0 0;
}
.ftr-info-phone a:hover{
    color: #c9ae85;
}
.ftr-info-add{
    font-size: 15px;
    letter-spacing: 0.040em;
    color: #333;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
}
.ftr-info-add em {
    font-size: 1.2em;
    margin: 2px 0 0;
}
.ftr-info-add a{
    display: inline-block;
    line-height: 1.333;
}
.ftr-info-add a:hover{
    color: #c9ae85;
}
.ftr-disclaimer{
    font-size: 14px;
    line-height: 1.2;
    color: #333;
}
.ftr-disclaimer a:hover{
    color: #c9ae85;
}
.ftr-disclaimer{
    margin: 38px 0 0;
}
.copyright{
    font-size: 14px;
    line-height: 1.2;
    color: #333;
    margin: 17px 0 0;
}
.copyright a[target]{
    font-weight: 600;
    text-decoration: underline;
}
.copyright a:hover{
    color: #c9ae85;
}
.re-logos{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 25px 0 0;
}
.re-logos em{}
.re-logos em.ai-font-eho {
    font-size: 0.75em;
    margin: 0 5px 0 0;
}

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;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

.ipcustom-form{}
.ipcustom-form .wpcf7-form-control-wrap{
    display: block;
}
.ipcustom-row{
    margin: 10px 0 0;
}
.ipcustom-row:first-child{
    margin: 0 0 0;
}
.ipcustom-row.dual{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}
.ipcustom-row.dual > div{
    width: calc(50% - 5px);
}
.ipcustom-row.dual > div:first-child{
    margin: 0 0 0;
}
.ipcustom-row input:not([type="submit"]):not([type="button"]){
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 70px;
    font-size: 14px;
    letter-spacing: 0.080em;
    background: rgba(255,255,255,0.8);
    color: #333;
    border: 1px solid #d7d7d7;
    padding: 0 38px;
    outline: none;
}
.ipcustom-row textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 100px;
    resize: none;
    font-size: 14px;
    letter-spacing: 0.080em;
    background: rgba(255,255,255,0.8);
    color: #333;
    border: 1px solid #d7d7d7;
    padding: 28px 38px 10px;
    outline: none;
}
.ipcustom-row input[type="submit"]{}
.ipcustom-row.button{
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    margin: 45px 0 0;
}


/****Global Custom Listings Layout****/

.props-feed{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 -2px;
}

.props-single{}
.props-single a{
    display: block;
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.props-single a:hover{
    z-index: 2;
}
.props-single a .props-img {}

.props-single a .props-img:before{
    content:'';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(-180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    opacity: 0.55;
}
.props-single a:hover .props-img:before{
    opacity: 0.9;
}

.props-single a .props-info{
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: max(-10.0625vw,-161px);
    padding: 0 min(2.5vw,40px) min(3.125vw,50px);
}
.props-single a:hover .props-info{
    bottom: 0;
}
.props-single a .props-add{
    font-size: min(1.125vw,18px);
    letter-spacing: 0.100em;
    text-transform: uppercase;
    font-weight: 300;
}
.props-single a .props-add span{
    display: block;
    font-family: var(--font-family-title);
    letter-spacing: 0.050em;
    font-size: 1.667em;
    text-transform: none;
    font-weight: 400;
    margin: 0 0 min(0.438vw,7px);
}
.props-single a .props-det{
    border-top: 1px solid #415a7d;
    padding: min(1.125vw,18px) 0 0;
    margin: min(1.125vw,19px) 0 0;
    max-width: 400px;
    opacity: 0;
}
.props-single a:hover .props-det{
    opacity: 1;
}
.props-single a .props-bb{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}
.props-single a .props-bb > div{
    font-size: min(0.875vw,14px);
    letter-spacing: 0.040em;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 0 0 min(1.3125vw,21px);
}
.props-single a .props-bb > div:first-child{
    margin: 0 0 0;
}
.props-single a .props-price{
    font-size: min(1.5vw,24px);
    font-weight: 500;
    letter-spacing: 0.040em;
    margin: min(0.438vw,7px) 0 0;
}
.props-single a .props-button{
    pointer-events: none;
    margin: min(1.313vw,21px) 0 0;
}

.props-vmp{
    padding: 0 0 82px;
    margin: 77px 0 0;
}
.global-button.vmp{
    padding: 0 20px;
}
/****Global Custom Listings Layout End****/

.custom-banner{
    clip-path: inset(0 0 0 0);
    -moz-clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.custom-banner > div{
    content: '';
    display: block;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.55;
    pointer-events: none;
}
.custom-banner canvas{
    display: block;
    width: 100%;
    height: auto;
    min-height: 210px;
    background: #000;
    position: relative;
    z-index: 0;
}

.custom-bc{
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #b7b7b7;
}
.recaptcha-holder{
    display: none !important
}



/* Our Specialized Approach Page */
.page-id-137082 .ip-banner {
    display: none;
}

.page-id-137082 .custom-ip-banner-bc {
    display: block;
}

.page-id-137082 .wp-image-137091 {
    margin-top: 100px !important;
}

.custom-ip-banner-bc {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.custom-ip-banner > div {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.55;
}

.custom-ip-banner canvas {
    display: block;
    width: 100%;
    height: auto;
    min-height: 210px;
    background: #000;
    position: relative;
    z-index: 0;
}

.custom-ip-bc {
    position: relative;
    background: #fff;
    z-index: 10;
} 

/* Custom Entry Title */
#inner-page-wrapper .entry-title.entry-custom-title {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    color: #c9ae85;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.200em;
    line-height: 1;
    font-family: var(--font-family-default);
}

#inner-page-wrapper .entry-title.entry-custom-title span {
    display: block;
    font-family: var(--font-family-title);
    color: #333;
    letter-spacing: 0.075em;
    position: relative;
    font-size: 1.714em;
    margin: 0 0 24px;
}

#inner-page-wrapper .entry-title.entry-custom-title span:after {
    content: '';
    display: block;
    position: relative;
    background: #415a7d;
    width: 88px;
    height: 2px;
    margin: 27px auto 0;
}

.single-aios-communities ul {
    list-style: unset;
}

.page-id-137031 #aios-testimonials.aios-testimonials-page .aios-testimonials-content {
    padding: 0 0 20px !important;
}
    
    .page-id-137031 #aios-testimonials.aios-testimonials-page .aios-testimonials-content h3,
    .page-id-137212 h3.sm-blurb {
        font-size: 1.1em !important;
        text-align: center;
        font-weight: 500 !important;
    }

/* social media page */

.page-id-137212 .smj-inner {
    flex-flow: unset;
}
    
    .page-id-137212 .smj-col { 
        width: 30%;
    }


body.page-id-4 .dpl-banner canvas,
body.page-id-2756 .ip-banner canvas,
body.page-id-124 .ip-banner canvas,
body.page-id-137225 .ip-banner canvas,
body.page-id-137031 .ip-banner canvas,
body.category-our-blog .ip-banner canvas,
body.page-id-137212 .ip-banner canvas{
    min-height: 210px;
}
body.active-popup {
    overflow: hidden;
}
.site-popup.show {
    display: block !important;
}
.hp-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    z-index: 81;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.hp-popup-inner {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    background: #fff;
    padding: 90px 75px;
    position: relative;
}
.hp-popup-title {
    text-align: center;
    font-size: 50px;
    font-family: var(--font-family-title);
    letter-spacing: 0.075em;
}
.hp-popup-form {
    position: relative;
    max-width: 500px;
    margin: 30px auto 0;
    font-size: 0;
}
.hp-popup-form .field-input {
    margin-bottom: 10px;
}
.hp-popup-form .field-input input {
    appearance: none;
    background: none;
    padding: 0 15px;
    border: 0;
    width: 100%;
    height: 50px;
    font-size: 14px;
    letter-spacing: 0.080em;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid #333;
}
.hp-popup-form .global-button {
    display: block;
    margin: 0 auto;
}
.hp-popup-form .wpcf7-form-control-wrap {
    display: block;
}
.hp-popup-form div.wpcf7 .ajax-loader,
.hp-popup-form div.wpcf7 .wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    margin: 0 auto;
}
.hp-popup-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    width: 100%;
    margin: 5px 0 0;
    font-size: 12px;
}
.hp-popup-btn {
    text-align: center;
    padding-top: 30px;
}
.hp-popup-close {
    position: absolute;
    color: #fff;
    bottom: calc(100% + 30px);
    right: 0;
    font-size: 16px;
    transition: 0.3s;
}
.hp-popup-close:hover {
    transform: rotate(180deg);
}
.page-id-137269 .abt-top-img {
    margin-bottom: 0;
    padding-bottom: 100px;
}
.page-id-137269 .abt-top-label {
    bottom: 40px;
}
.page-id-137269 .abt-top-img:before {
    filter: invert(100%);
}
.page-id-137269 .abt-top-label span {
    color: #fff;
}


.dpl-top .custom-bc,
#lcomm-ip .custom-bc {
    visibility: hidden;
    pointer-events: none;
}
.commdet-inner .custom-bc,
#ip-luxury .custom-bc,
#ip-portland-luxury .custom-bc,
.abt-bc .custom-bc {
    display: none;
}

#content a:not(.global-button){
    color: #23527c;
}
#content a:not(.global-button):hover{
    color: #c9ae85;
}

.aiosp-container[class*="aiosp-ref-#popup10"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup9"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup8"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup7"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup6"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup5"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup4"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup3"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup2"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup1"] .aios-popup-body,
.aiosp-container[class*="aiosp-ref-#popup0"] .aios-popup-body {
    max-width: 654px;
    width: 100%;
    padding: 30px!important;
}

.aiosp-content .itn-single-bottom{
	margin-top: 20px;
}

.blog-popup-form{
	margin-top: 10px;
}

.aiosp-content .img-cover > canvas{
	width: auto;
}
#content .ap-radiance-blog-archive__item h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    font-family: var(--font-family-title);
    padding: 8px 0 0;
    margin: 0;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */