:root {
    --font-roboto: 'Roboto', sans-serif;
    --heading-font: 'EB Garamond', serif;
    --font-crimson-text: 'Crimson Text', serif;
    --body-font: 'Roboto', sans-serif;

    --primary-color: #1f2122;
    --secondary-color: #1e1f21;
    --secondary-text-color: #ffffff;
    --tertiary-color: #000000;
    --accent-color: #dadada;
    --hover-color: #5c5c5c;
    --primary-text-color: #3d3d3d;
    --header-bg-color: #171717;
    --section-bg-color: #171717;
    --footer-bg-color: #171717;
    --pattern-gradient-color: rgba(23, 23, 23, 1);

    --primary-color-dark : #000;


    --cta-dark-blue : #051e25;

    --header-logo-size : 40px;
    --header-family : 'EB Garamond', serif;
    --header-weight:  400;
    --subtitle-logo-size : 20px;
    --subtitle-family :  'EB Garamond', serif;
    --subtitle-weight:  400;

}


/** Disable all element peek on mobile */
.mobile [data-aios-animation] {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/** End of Disable all element peek on mobile */
/* Global : BEGIN */

body {
    font-family: var(--body-font);
    font-size: 16px;
    background: #FFF;
    color: var(--primary-text-color);
    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; */
}

p {
    font-size: 16px;
}

a,
.slick-slide {
    outline: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

.site-easing {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.site-btn,
a.site-btn {
    display: inline-block;
    vertical-align: middle;
    width: 195px;
    height: 52px;
    background: var(--primary-color);
    text-align: center;
    color: #ffffff;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    font-size: 12px;
    text-transform: uppercase;
}

.site-btn:hover,
a.site-btn:hover {
    background: var( --secondary-color);
}


.site-btn.is-btn-white:hover,
a.site-btn.is-btn-white:hover {
    background: var(--primary-color-dark);
    color: #ffffff;
}

.site-btn::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
}

.site-btn span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {}

.section-title h1,
.section-title h2 {
    font: 400 50px/1 var(--heading-font);
    color: #171717;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title.is-text-white h1,
.section-title.is-text-white h2 {
    color: #ffffff;
}

.section-title.is-text-small h1,
.section-title.is-text-small h2 {
    font-size: 34px;
    letter-spacing: 0.3em;
}

.section-title h1 span,
.section-title h2 span {
    display: block;
    font: 400 20px/1 var(--heading-font);
    letter-spacing: 0.08em;
    margin-bottom: 7px;
}

#main-wrapper {
    overflow: hidden;
}

[data-aios-staggered-parent=true]:not([data-aios-reveal-mobile=true]) {
    overflow: visible;
}


/* Global : END */

/*Properties*/
#properties {
    display: none;
}

/* Main Header : BEGIN */

#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1028;
    font-size: 0;
}

#main-header.show-fh {

    background-color: var( --primary-color);


}

#main-header,
#main-header * {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}



.hdr-logo a {
    display: inline-block;
}

.hdr-logo a span {
    font: var(--header-weight) var(--header-logo-size)/1 var(--header-family);
    color: #ffffff;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.hdr-logo a em {
    display: block;
    font-size: var(--subtitle-logo-size);
    color: #fff;
    font-weight: var(--subtitle-weight);
    font-family: var(--subtitle-family);
    font-style: normal;
    margin-top: 8px;

}
.hdr-logo img {
    width: 100%;
    max-width: 100%;
}

.hdr-navi {
    text-align: right;
}




#nav li {
    display: block;
    position: relative;
}

#nav li a {
    display: block;
    position: relative;
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px !important;
}

#nav > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 clamp(6px, 0.8750000000000001vw, 14px) !important;
}

#nav > li:first-child {
    margin-left: 0;
}

#nav > li:last-child {
    margin-right: 0;
}

#nav > li > a {
    font-size: 13px;
    letter-spacing: .05em;
}

#nav > li > a::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
    background: #ffffff;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

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

#nav .sub-menu {
    display: block;
    position: absolute;
    width: 100%;
    min-width: 200px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

#nav .sub-menu .sub-menu {
    margin-left: 0;
    top: 0;
}

#nav > li > .sub-menu {
    left: -150%;
    right: -150%;
    margin: auto;
    padding-top: 21px;
}

#main-header.show-fh #nav > li > .sub-menu {
    padding-top: 27px;
}

#nav li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#nav .sub-menu li {}

#nav .sub-menu li a {
    padding: 10px;
    background: #ffffff;
    color: #333333;
}

#main-header.show-fh #nav .sub-menu li a {
    background: var(--primary-color);
    color: #ffffff;
}

#nav .sub-menu li:hover > a,
#main-header.show-fh #nav .sub-menu li:hover > a {
    background: var( --secondary-color);
    color: #ffffff;
}


/* Main Header : END */


/* Call To Action : START */

#call-to-action {
    background: #e9e9e9;
    padding: 78px 0;
    font-size: 0;
}

#call-to-action,
#call-to-action * {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.cta-holder {
    display: flex;
    flex-direction: row;
    margin: 0 -7px;
}

.cta-col {
    position: relative;
    width: calc( 33.3333% - 14px);
    margin: 20px 7px;
}

.cta-col a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 343px;
    position: relative;
}

.cta-col a::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
   /*  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--cta-dark-blue) 85%, var(--cta-dark-blue) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--cta-dark-blue) 85%, var(--cta-dark-blue) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--cta-dark-blue) 85%, var(--cta-dark-blue) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='var(--cta-dark-blue)', endColorstr='var(--cta-dark-blue)', GradientType=0); */

    z-index: 2;
    /*opacity: 0.8;*/
    opacity: 0;
}

.cta-col a::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 31px;
    bottom: -13px;
    z-index: 0;
    background: url(../../images/cta-shadow.png) repeat-x center top;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.cta-col a:hover::after {
    bottom: -31px;
}

.cta-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #e3b373;;
}

.cta-pattern::before,
.cta-pattern::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: repeat;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.cta-pattern::before {
    background-image: url(/wp-content/themes/aix-hamilton/frontend/images/Footer-background-new.jpg);
    /*opacity: 0.15;*/
    opacity: 1;
    background-size: cover;
}

.cta-col a:hover .cta-pattern::before {
    opacity: 0.7;
}

.cta-pattern::after {
    /* background-image: url(/wp-content/themes/aix-hamilton/frontend/images/Footer-background-new.jpg); */
    opacity: 0;
    /* background-size: cover; */
	background-color: #e3b373;
}

.cta-col a:hover .cta-pattern::after {
    opacity: 0.3;
}

.cta-txt {
    position: relative;
    text-align: center;
    z-index: 3;
}

.cta-col strong {
    display: block;
    font: 400 16px/1 var(--heading-font);
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-col strong span {
    display: block;
    font: 500 32px/1 var(--heading-font);
    color: #ffffff;
    margin-top: 5px;
}

.cta-col em {
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.cta-col a:hover em {
    height: 27px;
    opacity: 1;
    transform: translateY(27px);
}

.cta-col em::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-top: 13px;
}


/* Call To Action : END */


/* Communities : START */

#communities {
    background: #e9e9e9;
    position: relative;
    padding: 93px 0 110px;
    font-size: 0;
    overflow: hidden;
}

#communities::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	z-index: 1;
    opacity: 0.06;
	background-size: cover;
}

/*#communities::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 140%;
    top: 0;
    left: 0;

	z-index: 2;


    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,227890+100&0+0,0.84+100 */

	/*background: -moz-radial-gradient(center, ellipse cover, rgba(23,23,23,0) 0%, rgba(23,23,23,0) 50%, var( --cta-dark-blue) 70%, var( --cta-dark-blue) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(23,23,23,0) 0%,rgba(23,23,23,0) 50%,var( --cta-dark-blue) 70%,var( --cta-dark-blue) 100%);
    background: radial-gradient(ellipse at center, rgba(23,23,23,0) 0%,rgba(23,23,23,0) 50%,var( --cta-dark-blue) 70%,var( --cta-dark-blue) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00171717', endColorstr='var(--primary-text-color)',GradientType=1 );*/


#communities .container {
    position: relative;
    z-index: 3;
}

.communities-title {
    margin-bottom: 58px;
}

.communities-title::before,
.communities-title::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: calc( 50% - 357px);
    height: 1px;
    background: #000;
    opacity: 0.4;
}

.communities-title h2 {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.3em;
    text-align: center;
    width: 714px;
    max-width: 100%;
    color: var(--tertiary-color) !important;
}

.fc-holder {}

.fc-holder .row {
    margin: 0 -10px;
}

.fc-col {
    padding: 10px;
}

.fc-col a {
    display: block;
    position: relative;
}

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

.fc-img::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 0.1;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.fc-col a:hover .fc-img::before {
    opacity: 0.82;
}

.fc-surrounding-areas .fc-img::before {
    opacity: 0;
}

.fc-surrounding-areas a:hover .fc-img::before {
    opacity: 0.5;
}

.fc-img::after {
    content: '';
    display: block;
    position: absolute;
    width: calc( 100% - 40px);
    height: calc( 100% - 50px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.27);
    opacity: 0;
    transform: scale(1.2);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.fc-col a:hover .fc-img::after {
    opacity: 1;
    transform: scale(1);
}

.fc-img canvas {
    display: block;
    width: 100%;
    background-color: var( --secondary-text-color);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fc-surrounding-areas .fc-img canvas {
    background-color: var(--secondary-color);
}

.fc-txt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-txt span {
    font-size: 20px;
    color: #fefeff;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.fc-surrounding-areas .fc-txt span {
    color: var( --secondary-text-color);
}


/* Communities : END */


/* Main Footer : START */

#main-footer {
    background: var(--primary-color);
    position: relative;
    font-size: 0;
    overflow: hidden;
    z-index: 0;
}

#main-footer::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../../images/Footer-background-new.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 1;
}

#main-footer::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 160%;
    top: 0;
    left: 0;
    background: -moz-radial-gradient(center, ellipse cover, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 40%, var(--secondary-color ) 60%, var( --secondary-color) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 40%, var( --secondary-color) 60%, var( --secondary-color) 100%);
    background: radial-gradient(ellipse at center, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 40%, var( --secondary-color) 60%, var(  --secondary-color) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00171717', endColorstr='#171717', GradientType=1);
    z-index: 2;
    display: none;
}

.ftr-top {
    position: relative;
    z-index: 3;
    padding: 90px 0 75px;
}

.ftr-left {}

.ftr-logo,
a.ftr-logo {
    display: inline-block;
    margin-bottom: 22px;
}

a.ftr-logo img {
    filter: invert(1);
    max-width: 100%;
}

.ftr-logo span {
    font: var(--header-weight) 46px/1 var(--header-family);
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ftr-logo em {
    color: #ffffff;
    letter-spacing: 0.04em;
    display: block;
    font-size: 16px;
    font-style: normal;
    margin-top: 7px;
}

.page-id-57 #inner-page-wrapper .col-md-6 img {
    margin: 0 auto !important;
    display: block;
    float: none;
    margin-top: -70px !important;
}

.ftr-contact-smis-brokerage {}
.ftr-contact-smis-brokerage img {
    max-width: 260px;
}
.ftr-contact {
    margin-bottom: 20px;
}

.ftr-contact ul {}

.ftr-contact li {
    font-size: 15px;
    font-weight: 300;
    color: var(--tertiary-color);
    text-shadow: 0 0 0 #000, 0 0 0 #000;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 9px;
}

.ftr-contact a {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.ftr-contact a:hover {
    color: #ffffff;
    opacity: 0.8;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
}

.ftr-smis {
    display: flex;
    flex-direction: row;
}

.ftr-smis a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    margin-right: 10px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.ftr-smis a:hover {
    background: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

.ftr-smis a i,
.ftr-smis a em{
    font-size: 18px;
}

.ftr-right {
    padding-top: 5px;
/*    padding-left: 38px;*/
}
.delogo {

    display: block;
    margin: 20px auto 0;
    margin-bottom: 44px;
    width: 100%;
    max-width: 400px;
}

.ftr-right .head-title {
    font: 400 30px/1 var(--heading-font);
    color: var(--tertiary-color);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footernav {
    column-count: 2;
    padding: 0 10px;
}

.footernav li {
    display: block;
    margin-bottom: 16px;
}

.footernav li a {
    display: inline-block;
    font-size: 14px;
    color: var(--tertiary-color);
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    text-shadow: 0 0 0 #000, 0 0 0 #000;
}

.footernav li a:hover {
    color: #ffffff;
    opacity: 0.8;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
}

.ftr-middle {
    position: relative;
    z-index: 3;
}

.ftr-middle-inner {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.33);
    border-bottom: 1px solid rgba(255, 255, 255, 0.33);
    padding: 50px 0 32px;
}

.ftr-copyright {
    font-size: 13px;
    color: var(--tertiary-color);
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-bottom: 23px;
}

.ftr-copyright a {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.ftr-copyright a:hover {
    color: #ffffff;
    opacity: 0.8;

}

.ftr-realtors {}

.ftr-realtors i {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    color: var(--tertiary-color);
    margin: 0 3px;
}

.ftr-bottom {
    position: relative;
    z-index: 3;
    padding: 43px 0 47px;
}

.ftr-disclaimer {
    font-size: 8pt;
    color: var(--tertiary-color);
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin: 0 40px;
    text-align: center;
}


/* Main Footer : END */


/* Testimonials : START */

#testimonials {
    text-align: center;
    padding: 118px 0 88px;
    font-size: 0;
}

.testimonials-title {
    margin-bottom: 45px;
}

.testimonials-title::before,
.testimonials-title::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: calc( 50% - 209px);
    height: 1px;
    background: rgba(192, 192, 192, 0.7);
}

.testimonials-title h2 {
    display: inline-block;
    vertical-align: middle;
    width: 418px;
    max-width: 100%;
}

.ts-holder {
    max-width: 900px;
    margin: auto;
}

.ts-slick {
    margin-bottom: 42px;
}

.ts-slide {}

.ts-slick:not(.slick-initialized) .ts-slide {
    display: none;
}

.ts-slick:not(.slick-initialized) .ts-slide:first-child {
    display: block;
}

.ts-ratings {}

.ts-ratings i {
    display: inline-block;
    vertical-align: middle;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 3px;
}

.ts-slide p {
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--primary-text-color);
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin: 30px 0 28px;
}

.ts-slide span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-text-color);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ts-arrows {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.ts-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    margin: 0 2px;
    cursor: pointer;
}

.ts-arrow:hover {
    background: var( --secondary-color);
}

.ts-arrow i {
    font-size: 10px;
    color: #ffffff;
}

.ts-prev {}

.ts-next {}


.show-fh #nav > li > a {
    color: #fff;
}



/* popup form */

#capture-form {
    background: #fff;
    display: block;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    color: var(--primary-color);
    position: relative;
    text-align: center;
}

    #capture-form img {
        margin: 0 auto;
    }

    #capture-form h2 {
        font-size: 30px;
        font-weight: 700;
        display: block;
        margin: 50px 0 20px;
        text-align: center;
    }

    #capture-form p.sub-text {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        display: block;
        margin-bottom: 30px;
    }

    #capture-form form {
        position: relative;
    }

        #capture-form input {
            width: 100%;
            border: 1px solid #333;
            font-size: 14px;
            color: var(--primary-color);
            padding: 0 10px;
            height: 35px;
        }

            #capture-form input[type="submit"] {
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                border: 0;
                width: 192px;
                height: 50px;
                font-size: 14px;
                color: #ffffff;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                background: var(--primary-color);
                display: block;
                margin: 30px auto auto;
            }

            #capture-form div.wpcf7-response-output {
                margin: 0;
                width: 100%;
                text-align: center;
            }

    #capture-form .trigger-close {
        cursor: pointer;
    }





.ihf-grid-result-address {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-transform: uppercase;
}


/* Testimonials : END */

.grecaptcha-badge{
    z-index: 1010 !important;
}
div.wpcf7-response-output{
    text-align: center;
}

.ihf-grid-result-address {
    display: block;
}

#ihf-main-container #ihf-map-canvas .ihf-map-info-box-title a {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 284px;
    white-space: nowrap;
}

.ftr-contact-smis-brokerage img {
    margin:  0;
}

.aios-roadmaps {
    justify-content: center;
}

#nav {
	text-align: right;
}

.ip-community-listings-txt span {
	text-align: center;
}

.page-id-132 .col-md-6 img {
	width: 100%;
}

.single-aios_agent .single-thumbnail {
    display: none;
}

#aios-testimonials .aios-testimonials-lists h3 {
    display: none;
}












.ss-holder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 2;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
}

header#main-header > div > .row {
    display: flex;
    align-items: flex-end;
}

header#main-header > .container {
    padding: 30px 0;
    width: 100% !important;!i;!;
    max-width: 79.375vw;
}

#nav li a {
    font-size: clamp(12px, 0.9375vw  ,15px)!important;
}



#main-header.show-fh > div > .row {
    align-items: center;
}











.ip-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
    opacity: 85%;
}

.ip-container  .hdr-logo {
    display: none !important;
}

.ip-container .hdr-navi {
    width: 100%;
    text-align: center;
}

.ip-container #nav {
    text-align: center;
}

.ip-container header#main-header > .container {
    padding-top: 57px;
}

.ip-container header#main-header.show-fh > .container {
    padding-top: 30px;
}

.col-md-12.ftr-left {
	text-align: center;
}

.ftr-smis {
	justify-content: center;
}

a.ftr-logo img {
    filter: brightness(0) invert(1);
}

.ftr-contact * {
    color: #fff;
    font-weight: 600;
}

a.ftr-logo, a.ftr-logo img {
	width: 100%;
	max-width: 500px;
}

#aios-testimonials .aios-testimonials-lists .star_rating_display img {
	display: none;
}

.star_rating_display img {
	display: none;
}

/******************************************************* * * Mobile styles and other media queries * *******************************************************/

@media (min-width: 768px) {
    .container-expander {
        margin-left: calc((100vw - 720px) / -2);
        margin-right: calc((100vw - 720px) / -2);
    }
}

@media (min-width: 992px) {
    .container-expander {
        margin-left: calc((100vw - 940px) / -2);
        margin-right: calc((100vw - 940px) / -2);
    }
    .navi li a {
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .container-expander {
        margin-left: calc((100vw - 1140px) / -2);
        margin-right: calc((100vw - 1140px) / -2);
    }
}

@media only screen and (min-width: 1366px) {
    .custom-container {
        width: 1330px;
    }
    .container-expander {
        margin-left: calc((100vw - 1300px) / -2);
        margin-right: calc((100vw - 1300px) / -2);
    }
    .navi > li {
        margin: 0 22px;
    }
    .hdr-logo a span {
        font: var(--header-weight) var(--header-logo-size)/1 var(--header-family);
    }
}

@media only screen and (min-width: 1500px) {
    .custom-container {
        width: 1480px;
    }
    .container-expander {
        margin-left: calc((100vw - 1465px) / -2);
        margin-right: calc((100vw - 1465px) / -2);
    }
}

@media only screen and (max-width:1500px) {
	#nav > li {
		margin: 0 5px;
	}

}


@media only screen and (max-width: 1365px) {
    #main-header {}
    .hdr-logo a span {
        font-size: 34px;
    }
    #nav > li {
        margin: 0 6px;
    }
    #nav > li > a {
		font-size: .8vw;
	}
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */

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


  header#main-header > .container{

    max-width: 85.375vw;
  }

    .hdr-logo a span {
        font-size: 28px;
    }



    #nav > li {
        margin: 0 3px;
    }
    #call-to-action {}
    .cta-col a {
        height: 300px;
    }
    .cta-col strong span {
        font-size: 28px;
    }
    #main-footer {}
    .ftr-logo span {
        font-size: 42px;
    }

    .ftr-contact-smis-brokerage img {
        margin: -75px 0 0 auto;
    }
}


/* iPad(portrait) | Galaxy Tab 4(portrait)  */

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

  header#main-header > div > .row {
    justify-content: center;
}

.ip-container .hdr-logo {
    display: block !important;
}

.ip-container header#main-header > .container {
    padding-top: 30px !important;
}
    #main-header {
        z-index: 5;
    }
    #main-wrapper {
        padding-top: 52px;
    }
    #main-header {
        position: relative;
        background: var(--primary-color);
        text-align: center;
    }
    #call-to-action {}
    .cta-holder {
        flex-direction: column;
    }
    .cta-col {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    #main-footer {}
    .ftr-top {
        text-align: center;
    }
    .ftr-smis {
        justify-content: center;
    }
    .ftr-contact-smis-brokerage img {
        margin: 20px auto 50px;
    }
    .ftr-right {
        padding-left: 15px;
    }
    .footernav {
        column-count: 1;
    }
    .ftr-disclaimer {
        margin: 0;
    }
    #testimonials {}
    .testimonials-title::before,
    .testimonials-title::after {
        display: none;
    }

    .aios-roadmaps .aios-roadmap-link {
        margin: 0 10px 10px;
    }
}


/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */

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


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

@media only screen and (max-width: 480px) {
    .section-title.is-text-small h1,
    .section-title.is-text-small h2 {
        font-size: 24px;
    }
    .hdr-logo a span {
        font-size: 22px;
    }
}
