/*
Theme Name: Drake Realty
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
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 */
    --body-font: 'Montserrat', sans-serif;
    --title-font: 'Ovo', serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #646464;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary-color: #222a3f;
    --secondary-color: #576886;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/
/* Sub Menu */
#nav {
    margin: 0 -35px;
}

#nav > li {
    position: relative;
    display: inline-block;
    padding: 1px 35px;
    border-right: 1px solid rgba(255,255,255,.50);
}

#nav li a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

#nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -23px;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-transform: translateX(-50%) scaleX(0);
    -ms-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    width: 133px;
    height: 4px;
    background: #d5e1ef;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

#nav > li:hover > a:before {
    opacity: 1;
    -webkit-transform: translateX(-50%) scaleX(1);
    -ms-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

#nav li:last-child {
    border: none;
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 203px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 25px;
}

#nav .sub-menu > li:first-child {
    padding-top: 13px;
}

#nav .sub-menu > li:last-child {
    padding-bottom: 13px;
}

#nav .sub-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.050em;
    color: #98afbf;
    text-transform: uppercase;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

#nav .sub-menu > li {
    position: relative;
    display: block;
    margin: 0 auto;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    background: var(--primary-color);
}

#nav .sub-menu li:hover a {
    background: #354264;
}

#nav .sub-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

#nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#nav li > .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    padding-top: 0;
}

#nav > li:last-child .sub-menu > li:last-child, #nav > li:first-child .sub-menu > li:first-child {
    padding: 6px 0;
}

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
/* Global */
body {
    font-family: var(--body-font);
    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; */
}

/*CSS Reset*/
a, a:hover, a:visited, a:focus, textarea {
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

.slick-track * {
    outline: none;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

select::-ms-expand {
    display: none;
}

input:focus, select:focus, textarea:focus {
    outline: none;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

[class*="ai-icon-"] {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#main-wrapper {
    overflow: hidden;
}

.attachment-fixed canvas {
    background-attachment: fixed!important;
}

/* Global Title */
.global-title {
    position: relative;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
}

.global-title span {
    font-size: 33px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #98afbf;
    text-transform: uppercase;
    font-family: var(--title-font);
    position: relative;
    display: inline-block;
}

.global-title h2 {
    font-size: 74px;
    line-height: 1;
    color: #536061;
    display: block;
    position: relative;
    font-family: var(--title-font);
}

.global-title span:before {
    position: absolute;
    content: '';
    top: 50%;
    left: calc(100% + 10px);
    width: 100vw;
    height: 1px;
    background: #536061;
    pointer-events: none;
}

.global-title.is-white span, .global-title.is-white h2 {
    color: #fff;
}

.global-title.is-white span:before {
    background: #fff;
}

/* Global Button */
.global-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 287px;
    height: 60px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff!important;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    background-color: var(--secondary-color);
}

.global-btn:hover, .global-btn:focus {
    background-color: #536061;
    color: #fff;
}

/*Fixed Header*/
#fixed-header {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#fixed-header.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#fixed-header.active .header-wrapper {
    padding: 32px 0;
    background: var(--primary-color);
    min-height: 80px;
}

#fixed-header.active #nav .sub-menu {
    padding-top: 33px;
}

#fixed-header.active #nav > li > a:before {
    bottom: -31px;
}

/* Header */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 87px 0;
}

.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.logo a {
    display: block;
    position: relative;
}

.logo img {
    max-width: 100%;
}

/*Slideshow*/
.slideshow-container {
    position: relative;
}

.slideshow-wrapper {
    position: relative;
}

.slideshow-wrapper canvas,
.slideshow-wrapper #aios-slider-hp-slideshow .aios-slider-splide .aios-slider-img canvas, 
.slideshow-wrapper #aios-slider-hp-slideshow .aios-slider-splide .aios-slider-custom-video canvas {
    min-height: 800px;
}

.slideshow-container .cycloneslider-slide:before,
.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 23%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.65)),to(rgba(0,0,0,0)));
    background: -o-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
    /* IE6-9 */
}

.slideshow-container .cycloneslider-slide:after,
.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.30);
    pointer-events: none;
}

/*Burger Menu*/
.burger-menu-wrap {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 68px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.burger-menu-icon {
    width: auto;
    height: auto;
    cursor: pointer;
    display: block;
    position: relative;
}

.burger-menu-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
}

.bm-lines {
    display: block;
    width: 33px;
    height: 20px;
    position: relative;
    margin: 0 auto;
}

.burger-menu-icon:hover .bm-lines span {
    background: var(--secondary-color);
    width: 100%!important;
}

.burger-menu-icon span:first-child {
    width: 26px;
    right: 0;
    left: auto;
}

.burger-menu-icon span:nth-child(2) {
    top: 8px;
}

.burger-menu-icon span:last-child {
    bottom: 0;
}

.burger-menu-icon.active span:first-child {
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}

.burger-menu-icon.active span:last-child {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

.burger-menu-icon.active span:nth-child(2) {
    opacity: 0;
}

/*Side Menu*/
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    pointer-events: none;
    font-size: 0;
}

.side-menu.active .side-menu-bg {
    opacity: 1;
}

.side-menu-bar, .side-menu-overlay {
    height: 100%!important;
}

.side-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 491px;
    width: 100%;
    height: 100%;
    z-index: 1056;
    background: var(--primary-color);
    -o-transition: all ease .6s;
    -webkit-transition: all ease .6s;
    transition: all ease .6s;
    opacity: 0;
}

.side-menu-bg .simplebar-scrollbar:before {
    background: #eee;
}

.side-menu-container {
    width: 100%;
    position: relative;
    height: 100%;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1054;
    width: 100%;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    opacity: 0;
}

.side-menu-overlay.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.side-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.side-menu-wrapper {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 164px 90px 50px 65px;
}

.side-menu-logo {
    position: fixed;
    bottom: 0;
    right: 0;
    height: calc(100% - 147px);
    padding: 0 11px 67px;
    border-left: 1px solid #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.side-menu-logo a {
    display: inline-block;
    position: relative;
}

.side-menu-logo img {
    max-width: 100%;
}

.sm-exit-btn {
    position: absolute;
    top: 83px;
    right: 68px;
    z-index: 20;
    text-align: right;
}

.sm-exit-btn span {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: block;
    font-weight: 700;
}

.sm-exit-btn span:hover {
    color: var(--secondary-color);
}

.sidemenu-nav > li > a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
}

.sidemenu-nav > li:hover > a {
    color: var(--secondary-color);
}

.sidemenu-nav .sub-menu {
    margin-top: 20px;
}

.sidemenu-nav .sub-menu li {
    display: block;
    position: relative;
}

.sidemenu-nav .sub-menu li:not(:last-child) {
    margin-bottom: 13px;
}

.sidemenu-nav .sub-menu li a {
    color: #98afbf;
    font-size: 13px;
    letter-spacing: 0.050em;
    line-height: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
    font-weight: 400;
}

.sidemenu-nav .sub-menu li a:hover {
    color: #fff;
}

.sidemenu-nav {
    position: relative;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

.sidemenu-nav > li {
    display: block;
    position: relative;
    text-align: left;
}

.sidemenu-nav > li:not(:last-child) {
    margin-bottom: 45px;
}

.sidemenu-nav > li > .sub-menu > li:last-child {
    margin-bottom: 0;
}

.side-menu-nav {
    display: block;
    position: relative;
    width: 100%;
}

.side-menu-nav .menu-primary-menu-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidemenu-nav > li > ul {
    display: block;
}

.side-menu.active .sm-exit-btn span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* Slideshow Tagline */
.slideshow-tagline {
    position: absolute;
    top: 59%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    text-align: center;
}

.slideshow-tagline-logo {
    display: block;
    position: relative;
    margin-bottom: 45px;
}

.slideshow-tagline-logo a {
    display: block;
    position: relative;
}

.slideshow-tagline-logo img {
    width: 100%;
    max-width: 240px;
    height: auto;
}

.slideshow-tagline-slide {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.slideshow-tagline-slide:not(.slick-initialized) .slideshow-tagline-item:nth-child(n+2) {
    display: none;
}

.slideshow-tagline-item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 100%;
}

.slideshow-tagline-caption {
    display: block;
    position: relative;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.slick-slide.slick-current.slick-active .slideshow-tagline-caption {
    opacity: 1;
    visibility: visible;
}


.slideshow-tagline-caption span {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.030em;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--title-font);
}

/* Floating Smis */
#floating-contacts {
    position: absolute;
    top: 31vh;
    right: 15px;
    z-index: 100;
}

.floating-contact-info {
    display: block;
    position: relative;
}

.floating-contact-info-label {
    display: block;
    position: relative;
    text-align: center;
    padding-top: 59px;
    overflow: hidden;
    margin-top: 5px;
}

.floating-contact-info-label span {
    display: block;
    position: relative;
    text-align: center;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.100em;
    color: #fff;
    padding-top: 15px;
}

.floating-contact-info > ul {
    display: block;
    text-align: center;
}

.floating-contact-info > ul li {
    width: 38px;
    height: 38px;
    display: block;
    position: relative;
}

.floating-contact-info > ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #536061;
    color: #fff;
    font-size: 22px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.floating-contact-info > ul li:not(:last-child) {
    margin-bottom: 15px;
}

.floating-contact-info > ul li span.ai-font-envelope-f {
    font-size: 12px;
}

.floating-contact-info > ul li span.ai-font-phone-alt {
    font-size: 14px;
}

.floating-contact-info > ul li:nth-child(2) {
    margin-bottom: 26px;
}

.floating-contact-info > ul li:first-child:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    right: 0;
    width: 1px;
    height: 15px;
    background: #fff;
    margin: 0 auto;
    pointer-events: none;
}

.floating-contact-info-label span:before {
    position: absolute;
    content: '';
    bottom: 100%;
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #fff;
    margin: 0 auto;
    pointer-events: none;
}

.floating-contact-info > ul li a:hover {
    background: var(--secondary-color);
}

/* Featured Properties */
.fp-container {
    display: block;
    position: relative;
    font-size: 0;
    padding: 73px 0 85px;
}

.fp-wrapper {
    display: block;
    position: relative;
}

.fp-main {
    display: block;
    position: relative;
}

.fp-main .global-title {
    margin-bottom: 37px;
}

.fp-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: -202px -10px 0;
    /*margin: 50px -10px 0;*/
    position: relative;
    pointer-events: none;
}

.fp-col {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    width: calc(100% / 3);
    pointer-events: auto;
}

.fp-item {
    display: block;
    position: relative;
    padding: 5px;
}

.fp-item a {
    display: block;
    position: relative;
}

.fp-img {
    display: block;
    position: relative;
    background-color: #000;
}

.fp-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: .40;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.fp-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.fp-hover-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%) scale(0.5);
    -ms-transform: translate(-50%,-50%) scale(0.5);
    transform: translate(-50%,-50%) scale(0.5);
    z-index: 2;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.fp-hover-logo img {
    max-width: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    height: auto;
}

.fp-info {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 30px 30px;
}

.fp-price {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.fp-address {
    display: block;
    position: relative;
}

.fp-price span {
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.030em;
    color: #fff;
    font-family: var(--title-font);
}

.fp-address span {
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.030em;
    color: #fff;
}

.fp-item a:hover .fp-hover-logo {
    -webkit-transform: translate(-50%,-50%) scale(1);
    -ms-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
    opacity: 0.60;
    visibility: visible;
}

.fp-item a:hover .fp-img img {
    -webkit-filter: none;
    filter: none;
    opacity: .90;
}

.fp-main-title {
    padding: 0 100px;
    display: inline-block;
    position: relative;
}

.fp-col:first-child .fp-item:first-child .fp-img canvas {
    height: 352px;
}

.fp-col:first-child .fp-item:last-child .fp-img canvas {
    height: 310px;
}

.fp-col:nth-child(2) .fp-item:first-child .fp-img canvas {
    height: 440px;
}

.fp-col:nth-child(2) .fp-item:last-child .fp-img canvas {
    height: 365px;
}

.fp-col:last-child .fp-item:first-child .fp-img canvas {
    height: 470px;
}

.fp-col:last-child .fp-item:last-child .fp-img canvas {
    height: 440px;
}

/* Quick Search */
.qs-container {
    display: block;
    position: relative;
    font-size: 0;
    background: var(--primary-color);
    padding: 85px 0 73px;
}

.qs-wrapper {
    display: block;
    position: relative;
}

.qs-wrapper > .custom-container {
    display: block;
    width: 100%;
    padding: 0 15px;
    max-width: 1370px;
    margin: 0 auto;
}

.qs-main {
    display: block;
    width: 100%;
}

.qs-title {
    position: relative;
    width: 19.21%;
    display: inline-block;
    vertical-align: middle;
}

.qs-main form {
    width: 100%;
    display: block;
    position: relative;
}

.qs-field select, .qs-field input#maxprice, .qs-field input#minprice, .qs-field button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 37px;
    border: 1px solid rgba(255,255,255,.40);
    padding: 0 8px;
    background: transparent url(images/qs-select-arrow.png) no-repeat scroll right 10px center;
    font-size: 12px;
    line-height: normal;
    color: #fff;
    font-weight: 300;
    border-radius: unset;
    outline: none!important;
    box-shadow: none!important;
}

.qs-field select option {
    color: #fff;
    background: #536061;
}

.qs-field input#maxprice, .qs-field input#minprice {
    background-image: none;
}

.qs-field {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 0.438%;
}

.qs-field .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 200px!important;
}

.qs-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    text-overflow: ellipsis;
}

.qs-form-main {
    display: block;
    position: relative;
}

.qs-form-main form.qs-form {
    width: 100%;
    position: relative;
    display: block;
}

.qs-field.submit input[type=submit] {
    width: 100%;
    height: 37px;
    border: none;
    background: #536061;
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 1;
    position: relative;
}

.qs-field.submit a.qs-adv {
    width: 100%;
    height: 37px;
    border: none;
    background: #948f8c;
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.qs-field.submit a.qs-adv:hover {
    background: #98afbf;
}

.qs-field.submit input[type=submit]:hover {
    background: var(--secondary-color);
}

.qs-field.submit:last-of-type {
    margin-right: 0;
}

.qs-field.long {
    width: 17.105%;
}

.qs-field.mlong {
    width: 16.991%;
}

.qs-field.short-b {
    width: 9.561%;
}

.qs-field.short-i {
    width: 8.859%;
}

.qs-field.submit {
    width: 12.631%;
}

.qs-main-title {
    display: block;
    position: relative;
    text-align: center;
}

.qs-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0.10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.qs-bg {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.qs-form-disclaimer {
    display: block;
    text-align: right;
    position: relative;
    margin: 17px 0 0;
}

.qs-form-disclaimer span {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
}

.qs-field.short-i.fl-r {
    margin-right: 1.060%;
}

.qs-main-title .global-title {
    text-align: left;
    margin-bottom: 35px;
}

.qs-main-title .global-title h2 {
    padding-left: 44px;
}

/*Featured Areas*/
.fa-map-container {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 3;
    font-size: 0;
    background: #fff;
    padding-top: max(3.313vw, 53px);
    padding-bottom: max(6.063vw, 97px);
}

.fa-map-wrapper {
    display: block;
    position: relative;
}

.fa-map-map-wrap {
    display: block;
    position: relative;
}

.fa-map-content {
    z-index: 2;
    width: 100%;
    margin-left: 5.500vw;
    max-width: 85%;
    margin-top: -18.125vw;
}

.fa-map-content .global-title span {
    font-size: 2.063vw;
}

.fa-comm-areas {
    display: block;
    position: relative;
}

.fa-map-transparent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.fa-map-main {
    position: relative;
    width: 1600px;
}

.fa-map-hovers {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

.fa-map-pin span {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    display: block;
    letter-spacing: 0.020em;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-family: var(--title-font);
    text-shadow: rgb(49, 59, 84) 2px 0px 0px, rgb(49, 59, 84) 1.75517px 0.958851px 0px, rgb(49, 59, 84) 1.0806px 1.68294px 0px, rgb(49, 59, 84) 0.141474px 1.99499px 0px, rgb(49, 59, 84) -0.832294px 1.81859px 0px, rgb(49, 59, 84) -1.60229px 1.19694px 0px, rgb(49, 59, 84) -1.97998px 0.28224px 0px, rgb(49, 59, 84) -1.87291px -0.701566px 0px, rgb(49, 59, 84) -1.30729px -1.5136px 0px, rgb(49, 59, 84) -0.421592px -1.95506px 0px, rgb(49, 59, 84) 0.567324px -1.91785px 0px, rgb(49, 59, 84) 1.41734px -1.41108px 0px, rgb(49, 59, 84) 1.92034px -0.558831px 0px;
    text-transform: uppercase;
}

.fa-map-pin.is-font-lg span {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.020em;
}

.fa-comm-areas li.fa-comm-title {
    z-index: 1;
    font-size: 1vw;
    line-height: 1;
    letter-spacing: 0.020em;
    color: #545f60;
    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;
    padding-left: 1.750vw;
    font-weight: 500;
    text-transform: uppercase;
}

.fa-comm-areas li.fa-comm-title:not(:last-child) {
    margin-bottom: 1.563vw;
}

.fa-comm-areas ul {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    position: relative;
}

.fa-comm-areas li.fa-comm-title.active a, .fa-comm-areas li.fa-comm-title:hover a {
    color: #98afbf;
}

.fa-comm-areas li.fa-comm-title a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fa-map-content .global-title {
    margin-bottom: 2.063vw;
    padding-right: 0.938vw;
}

.fa-map-hovers > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
}

.fa-map-pin h2 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: block;
    text-shadow: rgb(152, 152, 152) 1px 0px 0px, rgb(152, 152, 152) 0.540302px 0.841471px 0px, rgb(152, 152, 152) -0.416147px 0.909297px 0px, rgb(152, 152, 152) -0.989992px 0.14112px 0px, rgb(152, 152, 152) -0.653644px -0.756802px 0px, rgb(152, 152, 152) 0.283662px -0.958924px 0px, rgb(152, 152, 152) 0.96017px -0.279415px 0px;
    line-height: 1.1;
}

.fa-map-icons {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

.fa-map-icons > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
}

.fa-map-pin {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    text-align: center;
    white-space: nowrap;
}

.fa-map-pin > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
}

.fa-map-hovers > div.active .fa-map-img {
    opacity: 1;
    visibility: visible;
}

.fa-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 4;
}

.fa-map-img > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
}

.fa-comm-areas li.fa-comm-title em.ai-cirle-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    pointer-events: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 30px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fa-comm-areas li.fa-comm-title em.ai-cirle-icon:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0 auto;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fa-map-area-links {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

.fa-map-area-links > div {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
}

.fa-map-link {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    text-align: left;
    white-space: nowrap;
}

.fa-map-link a {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.020em;
    color: #fff;
    text-shadow: rgb(49, 59, 84) 1px 0px 0px, rgb(49, 59, 84) 0.540302px 0.841471px 0px, rgb(49, 59, 84) -0.416147px 0.909297px 0px, rgb(49, 59, 84) -0.989992px 0.14112px 0px, rgb(49, 59, 84) -0.653644px -0.756802px 0px, rgb(49, 59, 84) 0.283662px -0.958924px 0px, rgb(49, 59, 84) 0.96017px -0.279415px 0px;
    line-height: 1.1;
    display: block;
    position: relative;
    z-index: 4;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    text-transform: capitalize;
    text-align: center;
}

.fa-map-link em.ai-cirle-icon {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    background-color: #fff;
}

.fa-map-link.is-left em.ai-cirle-icon {
    top: 2px;
    left: -10px;
    right: auto;
}

.fa-map-link.is-right em.ai-cirle-icon {
    top: 1px;
    left: auto;
    right: -7px;
}

.fa-map-area-links > div.active .fa-map-link em.ai-cirle-icon {
    border-color: #999999;
}

.fa-map-area-links > div.active .fa-map-link em.ai-cirle-icon:before {
    background: #999999;
}

.fa-map-area-links > div.active .fa-map-link a {
    color: #fff;
    text-shadow: rgb(53, 63, 88) 1px 0px 0px, rgb(53, 63, 88) 0.540302px 0.841471px 0px, rgb(53, 63, 88) -0.416147px 0.909297px 0px, rgb(53, 63, 88) -0.989992px 0.14112px 0px, rgb(53, 63, 88) -0.653644px -0.756802px 0px, rgb(53, 63, 88) 0.283662px -0.958924px 0px, rgb(53, 63, 88) 0.96017px -0.279415px 0px;
}

.fa-map-hovers > div.active .fa-map-pin span {
    color: #fff;
    text-shadow: rgb(32, 41, 43) 2px 0px 0px, rgb(32, 41, 43) 1.75517px 0.958851px 0px, rgb(32, 41, 43) 1.0806px 1.68294px 0px, rgb(32, 41, 43) 0.141474px 1.99499px 0px, rgb(32, 41, 43) -0.832294px 1.81859px 0px, rgb(32, 41, 43) -1.60229px 1.19694px 0px, rgb(32, 41, 43) -1.97998px 0.28224px 0px, rgb(32, 41, 43) -1.87291px -0.701566px 0px, rgb(32, 41, 43) -1.30729px -1.5136px 0px, rgb(32, 41, 43) -0.421592px -1.95506px 0px, rgb(32, 41, 43) 0.567324px -1.91785px 0px, rgb(32, 41, 43) 1.41734px -1.41108px 0px, rgb(32, 41, 43) 1.92034px -0.558831px 0px;
}

.fa-map-area-links > div .fa-map-link a:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.fa-map-content.is-mobile {
    display: none;
}

/*Pin*/
.fa-map-hovers > div.cherokee .fa-map-pin {
}

/*Map Image*/
.fa-map-hovers > div.cherokee .fa-map-img {
}

/*Area Links*/
.fa-map-area-links > div.waleska .fa-map-link {
}

.fa-map-row {
    display: block;
    position: relative;
    padding-left: 3.125vw;
}

.fa-map-col {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 50%;
}

.fa-map-caption span {
    font-size: 1.563vw;
    line-height: 1.8;
    letter-spacing: 0.050em;
    color: #536061;
    font-family: var(--title-font);
    display: block;
    width: 100%;
}

.fa-map-caption {
    display: block;
    position: relative;
    border-left: 4px solid #98afbf;
    padding-top: 0.188vw;
    padding-bottom: 0.188vw;
    padding-left: 1.875vw;
    width: 100%;
}

.fa-map-col:first-child {
    width: 35%;
}

.fa-map-col:last-child {
    width: 65%;
}

.fa-comm-areas li.fa-comm-title a:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0.750vw;
    height: 0.125vw;
    background: #98afbf;
}

.fa-map-content .global-title h2 {
    padding-left: 2.750vw;
    line-height: normal;
    margin-top: -0.313vw;
    font-size: 4.625vw;
}

.fa-map-area-links > div.vinings .fa-map-link.is-right em.ai-cirle-icon {
    top: 2px;
    right: -11px;
}

.fa-map-area-links > div.alpharetta .fa-map-link.is-left em.ai-cirle-icon {
    left: -4px;
}

.fa-map-area-links > div.sandy-springs .fa-map-link a {
    text-align: center;
}

.fa-map-area-links > div.hapeville .fa-map-link em.ai-cirle-icon {
    top: auto;
    bottom: -7px;
}

.fa-map-area-links > div.college-park .fa-map-link.is-right em.ai-cirle-icon {
    top: 3px;
    right: -9px;
}

.fa-map-area-links > div.stonecrest .fa-map-link em.ai-cirle-icon {
    top: -6px;
}

.fa-map-area-links > div[data-map-target="dekalb"] .fa-map-link a {
    font-size: 8px;
    letter-spacing: 0.020em;
}

.fa-map-area-links > div.redan .fa-map-link.is-left em.ai-cirle-icon {
    left: -8px;
    top: 3px;
}

.fa-map-area-links > div.avondale-estates .fa-map-link.is-left em.ai-cirle-icon {
    left: -7px;
    top: 1px;
}

.fa-map-area-links > div.pine-lake .fa-map-link.is-left em.ai-cirle-icon {
    left: -8px;
    top: 3px;
}

.fa-map-area-links > div.decatur .fa-map-link.is-left em.ai-cirle-icon {
    left: -8px;
    top: 3px;
}

.fa-map-area-links > div.scottdale .fa-map-link em.ai-cirle-icon {
    top: -4px;
}

.fa-map-area-links > div.druid-hills .fa-map-link.is-left em.ai-cirle-icon {
    left: -6px;
    top: 2px;
}

.fa-map-area-links > div.tucker .fa-map-link em.ai-cirle-icon {
    top: -4px;
}

.fa-map-area-links > div.clarkston .fa-map-link em.ai-cirle-icon {
    right: -10px;
}

.fa-map-area-links > div.brookhaven .fa-map-link.is-left em.ai-cirle-icon {
    left: -8px;
    top: 4px;
}

.fa-map-area-links > div.chamblee .fa-map-link.is-left em.ai-cirle-icon {
    left: -6px;
    top: 4px;
}

.fa-map-area-links > div.eatonton .fa-map-link em.ai-cirle-icon {
    top: -5px;
}

.fa-map-area-links > div.little-river .fa-map-link em.ai-cirle-icon {
    top: -6px;
}

.fa-map-area-links > div.rutledge .fa-map-link em.ai-cirle-icon {
    top: -5px;
}

.fa-map-area-links > div.buckhead .fa-map-link em.ai-cirle-icon {
    top: -5px;
}

.fa-map-area-links > div.madison .fa-map-link.is-left em.ai-cirle-icon {
    left: -7px;
    top: 4px;
}

.fa-map-area-links > div.bostwick .fa-map-link em.ai-cirle-icon {
    top: -5px;
}

.fa-map-area-links > div[data-map-target="oconee"] .fa-map-link em.ai-cirle-icon {
    top: auto;
    bottom: -7px;
}

.fa-map-area-links > div.north-high-shoals .fa-map-link em.ai-cirle-icon {
    bottom: -6px;
}

.fa-map-area-links > div.doraville .fa-map-link.is-right em.ai-cirle-icon {
    top: 3px;
    right: -8px;
}

.fa-map-area-links > div.north-decatur .fa-map-link.is-left em.ai-cirle-icon {
    left: -7px;
}

.fa-map-area-links > div.lithonia .fa-map-link em.ai-cirle-icon {
    top: -6px;
}

/*Our Story*/
.os-container {
    display: block;
    position: relative;
    padding: 88px 0 72px;
}

.os-wrapper {
    display: block;
    position: relative;
    z-index: 2;
}

.os-main {
    display: block;
    position: relative;
}

.os-main .global-title {
    display: block;
    margin-bottom: 40px;
}

.os-content-container {
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.os-content-container p {
    font-size: 14px;
    line-height: 1.858;
    font-weight: 300;
    letter-spacing: 0.030em;
    color: #646464;
    display: block;
}

.os-content-container p:not(:last-child) {
    margin-bottom: 20px;
}

.os-content-btn a {
    max-width: 300px;
    margin: 0 auto;
}

.os-main .global-title h2 {
    padding-left: 44px;
    line-height: normal;
    margin-top: -5px;
}

.os-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #fff;
}

.os-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.os-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    /* IE6-9 */
    z-index: 1;
}

/*Testimonials*/
.testi-container {
    display: block;
    position: relative;
    padding: 90px 0 139px;
    font-size: 0;
}

.testi-wrapper {
    display: block;
    position: relative;
    z-index: 2;
}

.testi-main {
    display: block;
    position: relative;
}

.testi-content {
    display: block;
    position: relative;
    text-align: center;
}

.testi-content p {
    font-size: 14px;
    line-height: 1.858;
    font-weight: 300;
    letter-spacing: 0.030em;
    color: #fff;
    display: block;
}

.testi-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: var(--primary-color);
}

.testi-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testi-main-title {
    display: block;
    text-align: center;
    margin-bottom: 75px;
}

.testi-main-title .global-title {
    text-align: left;
}

.testi-slide {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.testi-slide:not(.slick-initialized) .testi-item:nth-child(n+2) {
    display: none;
}

.testi-slide button.slick-arrow {
    position: absolute;
    top: 20%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    font-size: 40px;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.testi-slide button.slick-arrow:hover {
    color: var(--secondary-color);
}

.testi-slide button.slick-prev.slick-arrow {
    left: -25%;
}

.testi-slide button.slick-next.slick-arrow {
    right: -25%;
}

.testi-slide ul.slick-dots li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 8px;
    height: 8px;
}

.testi-slide ul.slick-dots {
    display: block;
    text-align: center;
    margin: 75px auto 0;
}

.testi-slide ul.slick-dots li button {
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    font-size: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.testi-slide ul.slick-dots li:not(:last-child) {
    margin-right: 12px;
}

.testi-slide ul.slick-dots li.slick-active button {
    background-color: #fff;
}

/*Call to Action*/
.cta-container {
    display: block;
    position: relative;
    padding: 100px 0 83px;
    font-size: 0;
}

.cta-wrapper {
    display: block;
    position: relative;
}

.cta-main {
    display: block;
    position: relative;
}

.cta-list {
    display: block;
    position: relative;
    margin: 0 -15px;
}

.cta-item {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% / 3);
    position: relative;
    padding: 0 15px;
}

.cta-item a {
    display: block;
    position: relative;
    padding: 35px 0 0 23px;
}

.cta-img {
    display: block;
    position: relative;
}

.cta-img-holder > img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    opacity: .50;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-img-holder > canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.cta-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 7;
}

.cta-title {
    display: block;
    position: relative;
    padding: 27px 0;
    text-align: center;
}

.cta-title span {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #98afbf;
    text-transform: uppercase;
    display: block;
    font-family: var(--title-font);
}

.cta-title h2 {
    font-size: 50px;
    line-height: 1;
    color: #536061;
    display: block;
    font-family: var(--title-font);
}

.cta-img:before {
    position: absolute;
    content: '';
    top: -35px;
    left: -23px;
    width: calc(100% - 57px);
    height: 100%;
    background: #98afbf;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-img-holder {
    display: block;
    position: relative;
    background-color: #000;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-icon img {
    max-width: 100%;
    width: 100%;
    display: block;
}

.cta-item a:hover .cta-img:before {
    background: #948f8c;
}

.cta-item a:hover .cta-img-holder {
    background-color: #98afbf;
}

.cta-item a:hover .cta-img-holder img {
    opacity: .10;
}

/*Sold Properties*/
.sp-container {
    display: block;
    position: relative;
    padding: 170px 0 130px;
    font-size: 0;
}

.sp-wrapper {
    display: block;
    position: relative;
    z-index: 2;
}

.sp-main {
    display: block;
    position: relative;
}

.sp-content {
    display: block;
    position: relative;
}

.sp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: var(--primary-color);
}

.sp-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sp-img-holder a {
    display: block;
    position: relative;
}

.sp-img-holder img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
}

.sp-img-holder canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sp-col {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.sp-row {
    display: block;
    position: relative;
}

.sp-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.sp-content-slide:not(.slick-initialized) .sp-content-item:nth-child(n+2), .sp-img-slide:not(.slick-initialized) .sp-img-item:nth-child(n+2) {
    display: none;
}

.sp-img-item .sp-content-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.sp-slide {
    display: block;
    position: relative;
}

.sp-img-holder {
    display: block;
    position: relative;
}

.sp-content-container {
    display: block;
    position: relative;
    padding-left: 53px;
}

.sp-content-btns {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sp-price {
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.sp-address {
    margin-bottom: 35px;
    display: block;
    position: relative;
}

.sp-desc {
    margin-bottom: 40px;
    display: block;
    position: relative;
}

.sp-price span {
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.030em;
    color: #fff;
    font-family: var(--title-font);
}

.sp-address span {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.030em;
}

.sp-content-container .global-title {
    margin-bottom: 35px;
}

.sp-desc p {
    font-size: 14px;
    line-height: 1.858;
    letter-spacing: 0.030em;
    color: #fff;
}

.sp-content-btns .sp-content-btn:first-child a {
    background-color: #536061;
}

.sp-content-btns .sp-content-btn:last-child a {
    background-color: #948f8c;
}

.sp-content-btns .sp-content-btn a {
    max-width: 100%;
    letter-spacing: normal;
}

.sp-content-btn {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 5px);
    position: relative;
}

.sp-col:first-child {
    width: 51.316%;
}

.sp-col:last-child {
    width: 48.684%;
}

.sp-content-btns .sp-content-btn:first-child a:hover {
    background-color: #98afbf;
}

.sp-content-btns .sp-content-btn:last-child a:hover {
    background-color: var(--secondary-color);
}

.sp-slide .sp-control-arrows {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    z-index: 5;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sp-slide .sp-control-arrows button {
    font-size: 40px;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.sp-slide .sp-control-arrows button:hover {
    color: var(--secondary-color);
}

.sp-slide .sp-control-arrows button.sp-control-prev {
    left: -10%;
}

.sp-slide .sp-control-arrows button.sp-control-next {
    right: -10%;
}

/*Videos*/
#hh-videos {
    position: relative;
    overflow: hidden;
    font-size: 0;
    letter-spacing: normal;
    line-height: 1;
}

#hh-videos .hh-videos-info {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    padding-bottom: 67px;
}

#hh-videos .hh-videos-info.active {
    bottom: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

#hh-videos .hh-videos-main-title.active {
    bottom: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

#hh-videos .container ul {
    display: block;
    margin: 0 -50px;
    position: relative;
}

#hh-videos .container ul li {
    text-align: left;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    line-height: 1.734;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 50px;
    width: calc(100% / 3);
    min-height: 78px;
}

#hh-videos .container ul:not(.slick-initialized) li:nth-child(n+3) ~ li {
    display: none;
}

#hh-videos .container ul li a::before {
    content: '';
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .41);
    position: absolute;
    top: 0;
    right: 0;
}

#hh-videos .container ul li a {
    display: block;
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

#hh-videos .container ul li a:hover {
    color: #ccc;
}

#hh-videos .container ul li strong {
    display: block;
    font-weight: 500;
}

#hh-videos .paginate-wrap {
    position: relative;
}

#hh-videos .swiper-container {
    width: 100%;
}

#hh-videos iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hh-slide-control {
    color: #fff !important;
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    font-size: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1380px;
    padding: 0 15px;
    margin: 0 auto;
    right: 0;
    left: 0;
    pointer-events: none;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.hh-slide-control.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#hh-videos .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 0;
}

#hh-videos .plyr--paused iframe {
    opacity: 0;
}

#hh-videos .plyr--paused .plyr__poster {
    opacity: 1;
}

#hh-videos .plyr--paused .plyr__video-wrapper {
    opacity: .70;
}

#hh-videos .plyr--paused.plyr--stopped .plyr__controls {
    opacity: 0;
}

#hh-videos .plyr--paused .plyr__controls {
    opacity: 0;
}

#hh-videos button.plyr__control.plyr__control--overlaid {
    background-image: url(images/ai-play-btn.png)!important;
    background-position: center!important;
    background-size: contain!important;
    background-color: transparent!important;
    width: 117px;
    height: 117px;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#hh-videos button.plyr__control.plyr__control--overlaid svg {
    display: none;
}

#hh-videos button.plyr__control.plyr__control--overlaid:hover {
    opacity: 0.65;
}

#hh-videos .plyr__poster {
    background-size: cover;
}

#hh-videos .container ul li:last-child:before {
    display: none;
}

#hh-videos h2.default-heading {
    color: #fff;
    font-size: 48px;
    font-family: var(--title-font);
    display: block;
    margin-bottom: 48px;
    line-height: 1;
    padding-bottom: 21px;
    border-bottom: 1px solid #fff;
}

#hh-videos .hh-videos-main-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 83px 0 0;
    z-index: 2;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

#hh-videos .hh-videos-title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

#hh-videos .hh-videos-col .global-title h2 {
    padding-left: 44px;
}

#hh-videos .hh-videos-col {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

#hh-videos .hh-more-btn a {
    width: 247px;
    max-width: 100%;
}

#hh-videos .swiper-button-prev {
    left: 0;
    pointer-events: auto;
}

#hh-videos .swiper-button-next {
    right: 0;
    pointer-events: auto;
}

#hh-videos .hh-slide-control>div em:hover {
    opacity: 0.65;
}

#hh-videos .hh-slide-control div em {
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#hh-videos .plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
    display: block;
}

.hh-video-container * {
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
}

/*Get in Touch*/
.git-container {
    display: block;
    position: relative;
    font-size: 0;
    padding: 96px 0 78px;
}

.git-wrappper {
    display: block;
    position: relative;
}

.git-main {
    display: block;
    position: relative;
}

.git-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: var(--primary-color);
}

.git-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.git-tagline {
    display: block;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 45%;
    margin: 0 auto 70px;
}

.git-tagline p {
    font-size: 14px;
    line-height: 1.786;
    letter-spacing: 0.020em;
    color: #fff;
}

.git-form-widget {
    display: block;
    position: relative;
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
}

.git-form-widget form {
    display: block;
    position: relative;
}

.git-form {
    display: block;
    position: relative;
}

.git-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.git-row.full {
    display: block;
    position: relative;
}

.git-col {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 10px);
    position: relative;
}

.git-row.full .git-col {
    display: block;
    width: 100%;
    position: relative;
}

.git-col input:not([type=submit]), .git-col textarea {
    width: 100%;
    height: 39px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.020em;
    color: #fff;
    padding: 0 5px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.30);
}

.git-row:not(:last-child) {
    margin-bottom: 70px;
}

.git-col textarea {
    resize: none;
    height: 115px;
    padding: 20px 5px;
}

.git-submit input[type=submit] {
    display: block;
    text-align: center;
    width: 100%;
    height: 60px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: none;
    padding: 0;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.100em;
    background-color: #948f8c;
}

.git-submit {
    margin: 60px auto 0;
    display: block;
    width: 100%;
    max-width: 300px;
}

.git-form-widget div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -18px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.git-submit input[type=submit]:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.git-main .global-title {
    margin-bottom: 65px;
    text-align: left;
}

.git-form-widget div.wpcf7-response-output {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.git-form-widget span.wpcf7-not-valid-tip {
    font-size: 12px;
}

.git-main .global-title-main {
    display: block;
    text-align: center;
}

.git-main .global-title h2 {
    padding-left: 44px;
}

.git-row:nth-child(2) {
    margin-bottom: 40px;
}

/*Footer*/
.footer-copyright {
    display: block;
    position: relative;
}

.footer-copyright-wrap {
    display: block;
    position: relative;
    padding: 50px 0 0;
}

.footer-info-container {
    display: block;
    position: relative;
    background: #fff;
    font-size: 0;
    padding: 100px 0 111px;
}

.footer-info-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-color: #fff;
}

.footer-info-bg canvas {
    width: 100%;
    height: 100%;
    background: url(images/footer-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    position: relative;
    opacity: 0.11;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.footer-copyright-wrap:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: rgba(37,37,37,.16);
    margin: 0 auto;
}

.footer-info-main {
    display: block;
    position: relative;
    padding-bottom: 52px;
}

.footer-info-wrapper {
    display: block;
    position: relative;
}

.footer-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -35px;
}

.footer-info-col {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 35px;
}

.footer-info-col:first-child {
    width: 26.445%;
}

.footer-info-col:nth-of-type(3) {
    width: 19%;
}

.footer-info-col:not(:first-child) {
    padding-top: 10px;
}

.footer-info-col:last-child {
    width: 33.72%;
}

.footer-logo {
    display: block;
    position: relative;
}

.footer-logo a {
    display: block;
    position: relative;
}

.footer-logo img {
    width: 100%;
    max-width: 224px;
    height: auto;
}

.footer-sec-title {
    display: block;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dbdbdb;
}

.footer-sec-title span {
    font-size: 32px;
    line-height: 1;
    color: #536061;
    font-family: var(--title-font);
}

#footer-nav > li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-contacts {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.footer-contacts span em.ai-font-location-c {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: #98afbf;
    font-size: 27px;
}

.footer-contacts span em.ai-font-envelope-f {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #98afbf;
    font-size: 13px;
}

.footer-contacts span em.ai-font-phone-alt {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #98afbf;
    font-size: 14px;
}

.footer-contacts span {
    display: block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #252525;
}

.footer-contacts span a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-contacts span a:hover {
    color: var(--secondary-color);
}

.footer-contacts span:not(:last-child) {
    margin-bottom: 20px;
}

#footer-nav > li {
    display: block;
    position: relative;
}

#footer-nav {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    width: 100%;
    min-width: 380px;
}

.footer-nav-wrap {
    display: block;
    position: relative;
    padding-left: 12px;
}

#footer-nav > li > a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #646464;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

#footer-nav > li > a:hover {
    color: #697c9f;
}

.footer-contacts-smi a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 21px;
    border-radius: 50%;
    color: #fff;
    background: #536061;
    font-size: 22px;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-contacts-smi a:not(:last-child) {
    margin-right: 13px;
}

.footer-contacts-smi a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.footer-contacts-smi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-contacts-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -10px;
}

.footer-contacts-col {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
    padding: 0 10px;
}

.footer-info-col:nth-child(2) {
    width: 39.835%;
}

.footer-contacts-col:first-child .footer-contacts span em {
    position: absolute;
    top: 4px;
    left: 0;
    margin: 0;
}

.footer-contacts-col:first-child .footer-contacts span {
    padding-left: 31px;
    line-height: 1.715;
    margin-top: -5px;
}

.footer-info-col:last-child .footer-sec-title {
    padding-left: 13px;
}

.footer-disclaimer p {
    display: block;
    font-size: 12px;
    line-height: 2.084;
    color: #646464;
}

.footer-disclaimer {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}

.footer-disclaimer p a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-disclaimer p a:hover {
    color: #697c9f;
}

/*Copyright*/
.copyright {
    font-size: 13px;
    line-height: 1;
    color: #646464;
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.copyright span {
    text-transform: uppercase;
}

.copyright a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.copyright a:hover {
    color: #697c9f;
}

.mls-logo {
    position: relative;
    display: block;
    text-align: center;
}

.mls-logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    color: #536061;
    margin: 0 5px;
}

.mls-logo span:first-child {
    margin-left: 0;
}

.mls-logo span:last-child {
    margin-right: 0;
}

.mls-logo span.ai-font-realtor-mls {
    font-size: 29px;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-container #floating-contacts {
    display: none;
}

.ip-container #breadcrumbs {
    font-size: 14px;
}

.ip-container #breadcrumbs span.breadcrumb_last {
    color: var(--primary-color);
    font-weight: 700;
}

.ip-banner {
    position: relative;
    overflow: hidden;
}

.ip-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,.4);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 300px;
    background: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.ip-banner .container {
    position: absolute;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 400;
    font-size: 45px;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
}

.ip-banner-logo a {
    display: block;
    position: relative;
}

.ip-banner-logo {
    display: block;
    position: relative;
}

.ip-banner-logo img {
    margin: 0 auto;
    display: block;
    max-width: 150px;
}

/* 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: 74.08%;
}

#content-full #content {
    width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
    width: 23.83%;
    margin-top: 80px;
}

/* 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
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title, #content .archive-title {
    font-size: 74px;
    line-height: 1;
    color: #536061;
    font-family: var(--title-font);
    font-weight: 400;
}

#content .entry {
    font-size: 14px;
    line-height: 1.858;
    font-weight: 300;
    letter-spacing: 0.030em;
    color: #646464;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 32px;
    line-height: 1;
    color: #536061;
    font-family: var(--title-font);
    font-weight: 400;
}

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

#content .archive-list:before, #content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail, #content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

/** End of Archive Default Layout (Archive Page) */
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;
    background: var(--primary-color);
    color: #fff;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
    background: #fff;
}

body.pojo-a11y-readable-font [class*="ai-font"] {
    font-family: agentimage !important;
}

body.page-id-19 #inner-page-wrapper {
    margin-bottom: 0;
    padding-bottom: 30px;
}

body.page-id-19 #inner-page-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/commercial.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: .10;
}

body #agents-results .agent-top form input[type="submit"] {
    background: #EA795A;
    border-color: #EA795A;
}

body #agents-results .agent-top form input[type="text"] {
    border-color: #EA795A;
}

body #agents-results .agent-top form input[type="submit"]:hover {
    background: #e16949;
    border-color: #e16949;
}

body #agents-single .agents-contact li a:hover, body #agents-results .agents-contact li a:hover, body #agents-results .agents-name a:hover {
    color: #EA795A;
}

body #agents-single .agents-smi li a, body #agents-results .agents-smi li a {
    background: #EA795A;
    color: #fff;
}

body #agents-single .agents-smi li a:hover, body #agents-results .agents-smi li a:hover {
    background: #EA795A;
    color: #fff;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: #EA795A;
}

body #agents-single .agents-contact li.agent-email-address {
    margin: 0 auto 20px;
}

body #agents-single .agents-right .agents-description-line {
    opacity: .10;
    background: #EA795A;
}

body #agents-single .agents-button:hover, body #agents-results .agents-button:hover {
    background: #EA795A;
    border-color: #EA795A;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body {
    width: 555px;
    max-width: calc(100% - 30px);
    min-height: 0;
    padding: 30px;
}

body.single-aios-agents.ip-container #breadcrumbs {
    margin: 20px 0;
}

.about-bg-wrap {
    position: relative;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    margin: 0 auto;
}

.about-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .10;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
}

/* Partnership */
.ip-our-partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ip-our-partner-logo {
    width: 33.333333%;
    padding: 15px;
}

.ip-our-partner-logo {
    max-width: 474px;
    padding: 15px;
    width: 100%;
}

.ip-our-partner-logo img {
    width: 100%;
    height: auto ;
}

body.page-id-17.ip-container #breadcrumbs {
    margin: 20px 0;
}

/* IDX FIX */
ul#ihf-detail-extrainfotabs, #ihf-search-tabs > ul.nav-tabs, #ihf_select_property_type_chosen ul.chosen-results, #ihf_select_bedrooms_homes_chosen ul.chosen-results, #ihf_select_baths_homes_chosen ul.chosen-results {
    margin-left: 0!important;
    padding-left: 0;
}

.ihf-advanced-property-search ul.chosen-results {
    padding-left: 0 !important;
    margin-left: 0!important;
}

body #listings-details .listings-slideshow .listings-slideshow-slide:after {
    background: linear-gradient(to top, rgba(14, 14, 14, 0) 35%, rgba(14, 14, 14, 1) 100%) !important;
    z-index: 3;
}

body #listings-details .listings-slideshow-text span {
    text-shadow: 0 2px 3px #000;
}

.grecaptcha-badge {
    z-index: 999;
}

body #listings-results .listings-disclaimer, body #listings-results .listings-poweredby {
    margin-bottom: 30px;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

body.page-id-0.ihf-results-template #content-full .entry-title {
    text-align: center;
}

body.page-id-0 div[data-ihf-client-id] .mt-10 a {
    word-break: break-all;
    display: block;
    text-align: left;
    white-space: normal;
}

.listing-details-logo {
    display: none;
}

.page-id-26 #ihf-board-disclaimers .ihf-board-disclaimer-text{
    display: none;
}


body #listings-results .listings-disclaimer img,
body #listings-results .ihf-board-update-text {
    display: block;
    margin-bottom: 15px;
}

body #ihf-main-container.ihf-modal-container .modal input[type=submit],
body #ihf-main-container.ihf-modal-container .modal button[type=submit],
body #ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout {
    background: #000;
}

#ihf-main-container.ihf-modal-container .modal input[type=submit].active,
#ihf-main-container.ihf-modal-container .modal input[type=submit]:hover,
#ihf-main-container.ihf-modal-container .modal button[type=submit].active,
#ihf-main-container.ihf-modal-container .modal button[type=submit]:hover,
#ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout:hover{
    background: #666!important;
    color: #fff!important;
}

body #ihf-main-container.ihf-modal-container .modal .row.mt-10:nth-of-type(3) > [class*=col-],
body #ihf-main-container.ihf-modal-container .modal .row.mt-10:last-of-type > [class*=col-] {
    width: 100%;
}

body.ihf-details-template .wpcf7-not-valid-tip {
    font-size: 12px;
    right: auto;
}
body.ihf-details-template #listings-details .listings-form div.wpcf7-response-output {
    font-size: 12px;
}
body.ihf-details-template #listings-details .listings-form .wpcf7-not-valid-tip {
    font-size: 12px;
    left: auto;
}
body.ihf-details-template #listings-details .listings-form .wpcf7-spinner {
    position: absolute;
    right: 0%;
    top: 105%;
    margin: 0;
}
body.ihf-container-modal #ihf-main-container.ihf-modal-container .nav-tabs > li:not(.active) > a:hover {
    background: #ccc;
}



























.op-tp-logo {
    width: 100%;
    max-width: 440px;
    margin: 0px auto;
    display: block;
}

.op-tp-logo img {
    margin-bottom: 30px !important;
}

.op-tp-logo a:nth-child(2) img, .op-tp-logo a:nth-child(3) img , .op-tp-logo img:nth-child(4) {
    max-width: 384px !important;
    display: block;
    margin: 0px auto !important;
    margin-bottom: 30px !important;
}

#content .op-bt-logo h2 {
    font-size: 60px;
    line-height: 1;
    color: #536061;
    font-family: var(--title-font);
    font-weight: 400;
    text-align: center;
}

.page-id-22 #inner-page-wrapper > .container {
    width: 100%;
    max-width: 1416px;
    position: relative;
    z-index: 2;
}

.op-bt-cont {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    padding-bottom: 84px;
}

.op-lg {
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgb(0 0 0 / 14%);
    background: #fff;
}

.op-lg img {
    width: auto;
    height: auto;
}




.page-id-22 #inner-page-wrapper:before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(https://cdn.agentimagehosting.com/xD4jm4dB2LyHUazuykW5R/2022/12/opbg-1.jpg);
}

.page-id-22 #inner-page-wrapper:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 50%;

    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

    opacity: 66%;
}


#content .op-tp-logo h2 {
    font-size: 60px;
    line-height: 1;
    color: #536061;
    font-family: var(--title-font);
    font-weight: 400;
    text-align: center;
}

a.rtl img{
    filter: brightness(0);
    width: auto;
    margin: 0px auto;
    display: block;
}
 a.aig img{

   width: auto;
   margin: 0px auto;
   display: block;
 }


.banner-logos {
	position: absolute;
	bottom: 30px;
	right: 20px;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
}
.banner-logos img {
	margin: 0 15px;
	max-width: 100%;
	height: auto;
	max-height: 62px;
}

#listings-results .listings-sort ul li.active a, #listings-results .listings-sort ul li a:hover,
#listings-results .listings-grid .listings-col:hover .listings-footer {
    background: #000 !important;
}

.show-on-scroll {
    display: none !important;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
