/*
Theme Name: California Real Estate Broker Theme
Theme URI: http://aios2-staging.agentimage.com/c/cary4homes.com/htdocs
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.0.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. Custom CSS
2.	IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/
/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/
/* Sub Menu */
.site-menu li {
    position: relative;
    display: inline-block;
}

.sb-qs-field #cityzipmls {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #878787;
    border: 1px solid #d8d8d8;
    outline: none;
    padding: 2px 14px 0 33px;
    background: transparent url(images/qs-magnifying-icon-b.png) no-repeat;
    background-position: center left 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#ihf-main-container .pull-right {
    z-index: 9999999;
}

.qs-form #cityzipmls {
    height: 72px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 72px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    border-radius: 0;
    letter-spacing: 0.28px;
    color: #fff;
    border: 2px solid #fff;
    outline: none;
    padding: 2px 24px 0 55px;
    background: transparent url(images/qs-magnifying-icon-a.png) no-repeat;
    background-position: center left 24px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.site-menu .sub-menu {
    list-style: none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 200px;
    left: calc(50% - 100px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.site-menu .sub-menu a {
    display: block;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: rgba(48, 48, 48, 0.75);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-menu .sub-menu a:hover {
    background: #1281ac !important;
    color: #fff !important;
}

.site-menu .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
}

.site-menu .sub-menu li {
    position: relative;
    display: block;
}

/** End of Sub Menu */
/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/
/* Global */
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background: #fff;
    color: #000;
    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; */
}

.white-background {
    background: #fff;
}

.global-section-title {
    display: block;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2.16px;
    text-transform: uppercase;
    text-align: center;
    color: #1281ac;
}

.global-section-title span {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.6px;
    text-transform: none;
    color: #878787;
    margin-top: 19px;
}

/* End of Global */
/** Header */
.header {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(48, 48, 48, 0.75);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header.active {
    background: #fff;
}

.header.active .header-wrap {
    padding: 12px 0;
}

.header.active .header-logo a img {
    -webkit-filter: none;
    filter: none;
}

.header.active .header-navigation,
.header.active .header-toggle {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header.active .header-navigation .site-menu>li>a {
    color: #434343;
}

.header.active .header-navigation .site-menu>li>.sub-menu {
    padding-top: 38px;
}

.header.active .header-navigation .site-menu>li>.sub-menu li a {
    color: #434343;
    background: #fff;
}

.header.active .header-toggle span {
    background: #434343;
}

.header.active .header-buttons {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.header .header-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 26px 0;
    position: relative;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .header-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header .header-logo a {
    display: block;
    outline: none;
    position: relative;
}

/*.header .header-logo a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: inherit;
    background: url(images/website-logo-b-blue.png) center center no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.header .header-logo a:hover:after {
    opacity: 1;
}*/

.header .header-logo a img {
    display: block;
    margin: 0 auto;
    max-width: 115px;
    /*-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);*/
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
    opacity: 1;
}

/*.header .header-logo a:hover img {
    opacity: 0;
}*/

.header .header-navigation {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: auto;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-navigation .site-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -10px;
}

.header .header-navigation .site-menu>li {
    display: block;
    padding: 0 12px;
}

.header .header-navigation .site-menu>li>a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.28px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-navigation .site-menu>li>.sub-menu {
    padding-top: 42px;
}

.header .header-navigation .site-menu>li:hover>a {
    color: #1281ac;
}

.header .header-toggle {
    margin-left: 25px;
    cursor: pointer;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .header-toggle span {
    display: block;
    width: 36px;
    height: 3px;
    background: #fff;
    margin-top: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-toggle span:nth-child(1) {
    margin-top: 0;
}

.header .header-toggle:hover span {
    background: #1281ac;
}

.header .header-buttons {
    position: absolute;
    top: 10px;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .header-buttons .header-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-buttons .header-button:focus,
.header .header-buttons .header-button:active,
.header .header-buttons .header-button:hover {
    border-color: #1281ac;
    color: #1281ac;
}

.header .header-buttons .header-translate .ai-translator-dropdown {
    left: auto;
    right: 0;
    background: #303030;
    border-radius: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 211px;
    max-height: 200px;
}

.header .header-buttons .header-translate .ai-translator-dropdown .simplebar-scrollbar:before {
    background: #fff;
}

.header .header-buttons .header-translate .ai-translator-dropdown .simplebar-track .simplebar-scrollbar.visible:before,
.header .header-buttons .header-translate .ai-translator-dropdown .simplebar-track:hover .simplebar-scrollbar:before {
    opacity: 1;
}

.header .header-buttons .header-translate .ai-translator-dropdown ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    border-radius: 0 !important;
}

.header .header-buttons .header-translate .ai-translator-dropdown ul li:hover {
    background: #1281ac;
}

.header .header-buttons .header-translate-button {
    border-left: none;
    padding-right: 31px;
}

.header .header-buttons .header-translate-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background: #1281ac;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-buttons .header-translate-button:after {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 13px;
    width: 12px;
    height: 8px;
    background: transparent url(images/header-translate-arrow-a.png) no-repeat;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-buttons .header-translate-button:hover:before {
    opacity: 1;
}

.header .header-buttons .header-translate-button:hover:after {
    -webkit-filter: none;
    filter: none;
}

/** End of Header */
/** Side Navigation */
.side-navigation {
    pointer-events: none;
}

.side-navigation .side-navigation-backdrop {
    position: fixed;
    z-index: 9997;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.side-navigation .side-navigation-close {
    position: fixed;
    z-index: 9999;
    top: 56px;
    right: 230px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
}

.side-navigation .side-navigation-close span {
    position: absolute;
    top: -4px;
    left: 12px;
    display: block;
    width: 2px;
    height: 35px;
    background: #434343;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.side-navigation .side-navigation-close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.side-navigation .side-navigation-close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.side-navigation .side-navigation-close:hover span {
    background: #1281ac;
}

.side-navigation .side-navigation-wrap {
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    width: 590px;
    max-width: 100%;
    background: #fff;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.side-navigation .side-navigation-container {
    display: block;
    width: 360px;
    max-width: 100%;
    padding-top: 85px;
}

.side-navigation .side-navigation-menu {
    margin-top: 95px;
}

.side-navigation .side-navigation-menu>ul {
    display: block;
}

.side-navigation .side-navigation-menu>ul li {
    display: block;
    text-align: center;
    margin-top: 31px;
}

.side-navigation .side-navigation-menu>ul li:nth-child(1) {
    margin-top: 0;
}

.side-navigation .side-navigation-menu>ul li a {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    text-decoration: none;
    color: #434343;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.side-navigation .side-navigation-menu>ul li .sub-menu {
    display: none;
}

.side-navigation .side-navigation-menu>ul li .sub-menu li {
    margin-top: 15px !important;
}

.side-navigation .side-navigation-menu>ul li .sub-menu li a {
    font-size: 15px;
}

.side-navigation .side-navigation-menu>ul li:hover>a {
    color: #1281ac;
}

.side-navigation .side-navigation-contact {
    margin-top: 155px;
}

.side-navigation .side-navigation-contact ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.64px;
    color: #434343;
}

.side-navigation .side-navigation-contact ul li span {
    font-size: 14px;
    color: #1281ac;
    margin-right: 10px;
}

.side-navigation .side-navigation-contact ul li span.phone {
    font-size: 12px;
}

.side-navigation .side-navigation-contact ul li a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.side-navigation .side-navigation-contact ul li a:hover {
    color: #1281ac;
}

.side-navigation.active .side-navigation-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.side-navigation.active .side-navigation-close {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-navigation.active .side-navigation-wrap {
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

/** End of Side Navigation */
/** HP Slideshow */
.hp-slideshow {
    position: relative;
    z-index: 0;
}

.hp-slideshow .slideshow-wrap {
    position: relative;
    z-index: 1;
}

.hp-slideshow .slideshow-wrap:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hp-slideshow .slideshow-spacer {
    position: relative;
    z-index: 1;
}

.hp-slideshow .slideshow-spacer canvas {
    display: block;
    width: 100%;
    min-height: 200px;
    max-height: 950px;
}

.hp-slideshow .slideshow-slider {
    position: relative;
    z-index: -1;
}

.hp-slideshow .slideshow-slider .cycloneslider,
.hp-slideshow #aios-slider-hp-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
}

.hp-slideshow .slideshow-slider .cycloneslider .cycloneslider-slides,
.hp-slideshow .slideshow-slider .cycloneslider .cycloneslider-slide,
.hp-slideshow .slideshow-slider .cycloneslider .cycloneslider-slide canvas {
    display: block;
    width: inherit !important;
    height: inherit !important;
}

.hp-slideshow .slideshow-slider .cycloneslider .cycloneslider-slide canvas {
    min-height: 250px;
}

.hp-slideshow .slideshow-sdown {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
}

.hp-slideshow .slideshow-sdown span {
    position: relative;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 2.16px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-slideshow .slideshow-sdown span:after {
    content: '';
    display: none;
    width: 1px;
    height: 81px;
    margin: 17px auto 0;
    background: #dadada;
    pointer-events: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-slideshow .slideshow-sdown span:hover {
    color: #1281ac;
}

.hp-slideshow .slideshow-sdown span:hover:after {
    background: #1281ac;
}

/** End of HP Slideshow */
/** HP Quick Search */
.hp-qs {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%) translateY(-100px);
    -ms-transform: translateY(-100%) translateY(-100px);
    transform: translateY(-100%) translateY(-100px);
}

.hp-qs:before {
    content: '';
    display: none;
    position: absolute;
    z-index: 1;
    top: -34px;
    left: 50%;
    width: 1px;
    height: 64px;
    margin: 0 auto 0;
    background: #dadada;
    pointer-events: none;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-qs .qs-wrap {
    position: relative;
}

.hp-qs .qs-link {
    text-align: center;
    margin-top: 10px;
}

.hp-qs .qs-link a {
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-qs .qs-link a.yellow-text {
    color: #FFFF00;
}

.hp-qs .qs-link a:hover {
    color: #1281ac;
}

.hp-qs .qs-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 25px;
}

.hp-qs .qs-form .qs-field {
    width: calc(100% - 128px);
}

.hp-qs .qs-form .qs-field.submit {
    width: 128px;
}

.hp-qs .qs-form .qs-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 72px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.28px;
    color: #fff;
    border: 2px solid #fff;
    outline: none;
    padding: 2px 24px 0 55px;
    background: transparent url(images/qs-magnifying-icon-a.png) no-repeat;
    background-position: center left 24px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-qs .qs-form .qs-input:active,
.hp-qs .qs-form .qs-input:focus {
    border-color: #1281ac;
}

.hp-qs .qs-form .qs-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 72px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    border: none;
    outline: none;
    color: #1281ac;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-qs .qs-form .qs-submit:hover {
    background: #1281ac;
    color: #fff;
}

/** End of HP Quick Search */
/** HP Call To Action */
.hp-cta {
    position: relative;
    z-index: 1;
    background: #fff;
}

.hp-cta:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -34px;
    left: 50%;
    width: 1px;
    height: 81px;
    margin: 0 auto 0;
    background: #dadada;
    pointer-events: none;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/* 
.hp-cta:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hp-cta:after {
    z-index: -1;
    background: transparent url(images/cta-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
} */

.hp-cta .cta-wrap {
    position: relative;
}

.hp-cta .cta-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hp-cta .cta-list .cta-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100%/3);
    height: 349px;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: #434343;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-cta .cta-list .cta-item:after {
    content: '';
    position: absolute;
    top: 24%;
    left: 0;
    width: 1px;
    height: 48%;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-cta .cta-list .cta-item:nth-child(1):after {
    display: none;
}

.hp-cta .cta-list .cta-item i {
    font-family: "Playfair Display", serif;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-cta .cta-list .cta-item strong {
    display: block;
    font-size: 31px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1281ac;
    margin-top: 8px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-cta .cta-list .cta-item:hover {
    background: rgba(18, 129, 172, 0.9);
}

.hp-cta .cta-list .cta-item:hover:after {
    opacity: 0;
}

.hp-cta .cta-list .cta-item:hover+a:after {
    opacity: 0;
}

.hp-cta .cta-list .cta-item:hover i,
.hp-cta .cta-list .cta-item:hover strong {
    color: #fff;
}

/** End of HP Call To Action */
/** HP Featured Properties */
.hp-fp {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 70px 0 0;
}

.hp-fp .fp-wrap {
    position: relative;
}

.hp-fp .fp-title {
    margin-bottom: 68px;
}

.hp-fp .fp-slider-wrap {
    position: relative;
}

.hp-fp .fp-slider {
    margin: 0 -15px;
}

.hp-fp .fp-slider:not(.slick-initialized) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hp-fp .fp-slider:not(.slick-initialized) .fp-slide {
    width: calc(100% / 3);
}

.hp-fp .fp-slider:not(.slick-initialized) .fp-slide:nth-child(n + 4) {
    display: none;
}

.hp-fp .fp-slider .fp-slide {
    padding: 0 15px;
}

.hp-fp .fp-slider .fp-item {
    display: block;
    position: relative;
    outline: none !important;
}

.hp-fp .fp-slider .fp-item .fp-img {
    position: relative;
    z-index: 1;
}

.hp-fp .fp-slider .fp-item .fp-img:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: transparent url(images/fp-bg-shadow-a.png) no-repeat;
    background-position: top center;
    background-size: auto 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-slider .fp-item .fp-img canvas {
    display: block;
    width: 100%;
    height: 360px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-fp .fp-slider .fp-item .fp-address {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #484848;
    padding: 20px 0 10px;
    height: 78px;
    position: relative;
    z-index: 1;
}

.hp-fp .fp-slider .fp-item .fp-main {
    position: relative;
}

.hp-fp .fp-slider .fp-item .fp-hover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 78px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(18, 129, 172, 0.9);
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1.08px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-slider .fp-item .fp-hover strong {
    display: block;
    font-size: 78px;
    font-weight: 400;
    line-height: 40px;
    font-style: normal;
    letter-spacing: 0;
}

.hp-fp .fp-slider .fp-item .fp-hover span {
    display: block;
    margin-top: 19px;
}

.hp-fp .fp-slider .fp-item:focus .fp-img:after,
.hp-fp .fp-slider .fp-item:hover .fp-img:after {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.hp-fp .fp-slider .fp-item:focus .fp-hover,
.hp-fp .fp-slider .fp-item:hover .fp-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hp-fp .fp-slider-controls {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 78px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -10.6%;
    pointer-events: none;
}

.hp-fp .fp-slider-controls span {
    cursor: pointer;
    font-size: 23px;
    color: #1281ac;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-slider-controls span:hover {
    color: #7e7e7e;
}

/** End of HP Featured Properties */
/** HP Click To Review */
.hp-review {
    position: relative;
    z-index: 1;
    background: #fff;
    padding-top: 59px;
}

.hp-review .review-wrap {
    position: relative;
    margin: 0 6.4%;
}

.hp-review .review-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 1395px;
    height: 132px;
    background: #1281ac;
    margin: 0 auto;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: 15px;
}

.hp-review .review-button:hover {
    background: #0d5e7e;
}

.hp-review .review-button span {
    color: inherit;
    margin-top: 11px;
    font-size: 30px;
}

/** End of HP Click To Review */
/** HP Welcome (Text and Photo) */
.hp-welcome {
    position: relative;
    z-index: 1;
    background: #fff;
    padding-top: 79px;
}

.hp-welcome .welcome-wrap {
    position: relative;
    overflow: hidden;
}

.hp-welcome .welcome-inner-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.hp-welcome .welcome-inner-wrap .welcome-right {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.hp-welcome .welcome-logo {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

.hp-welcome .welcome-text {
    padding: 53px 0 50px;
}

.hp-welcome .welcome-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    color: #515151;
    text-align: center;
    margin-top: 35px;
    padding-right: 64px;
}

.hp-welcome .welcome-agent {
    margin-right: calc((100vw - 1157px) / -2);
    position: relative;
}

.hp-welcome .welcome-agent-photo img {
    display: block;
    width: 100%;
    max-width: 590px;
    padding-bottom: 100px;
}

.hp-welcome .welcome-agent-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 590px;
    background: rgba(18, 129, 172, 0.9);
    padding: 32px 0 39px;
}

.hp-welcome .welcome-agent-contact ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hp-welcome .welcome-agent-contact ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.68px;
    color: #fff;
    margin-left: 32px;
}

.hp-welcome .welcome-agent-contact ul li:nth-child(1) {
    margin-left: 0;
}

.hp-welcome .welcome-agent-contact ul li span {
    color: inherit;
    font-size: 14px;
    margin-right: 6px;
}

.hp-welcome .welcome-agent-contact ul li span.ai-font-envelope {
    font-size: 12px;
}

.hp-welcome .welcome-agent-contact ul li a {
    display: block;
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-welcome .welcome-agent-contact ul li a:hover {
    color: #515151;
}

.hp-welcome .welcome-agent-smi {
    margin-top: 21px;
}

.hp-welcome .welcome-agent-smi ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hp-welcome .welcome-agent-smi ul li {
    display: block;
    padding: 0 16px;
}

.hp-welcome .welcome-agent-smi ul li a {
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-welcome .welcome-agent-smi ul li a:hover {
    color: #515151;
}

/** End of HP Welcome (Text and Photo) */
/** HP Background Info */
.hp-bginfo {
    position: relative;
    z-index: 1;
    background: #1281ac;
    padding: 86px 0 134px;
}

.hp-bginfo .bginfo-wrap {
    position: relative;
}

.hp-bginfo .bginfo-title {
    color: #fff;
    margin-bottom: 94px;
}

.hp-bginfo .bginfo-title span {
    color: #fafffb;
    font-size: 20px;
    margin-top: 12px;
}

.hp-bginfo .bginfo-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0;
}

.hp-bginfo .bginfo-list ul {
    display: block;
    margin: 0 auto;
}

.hp-bginfo .bginfo-list ul li {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.hp-bginfo .bginfo-list ul li:nth-child(1) {
    margin-top: 0;
}

.hp-bginfo .bginfo-list ul li a {
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-bginfo .bginfo-list ul li a:hover {
    color: #515151;
}

/** End of HP Background Info */
/** HP Featured Communities */
.hp-fc {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 81px 0 38px;
}

.hp-fc .fc-wrap {
    overflow: hidden;
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
}

.hp-fc .fc-title {
    margin-bottom: 78px;
}

.hp-fc .fc-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: -3px;
}

.hp-fc .fc-list .fc-group {
    height: 680px;
}

.hp-fc .fc-list .fc-group.group-a {
    width: 30%;
}

.hp-fc .fc-list .fc-group.group-b {
    width: 27%;
}

.hp-fc .fc-list .fc-group.group-c {
    width: 43%;
}

.hp-fc .fc-list .fc-group .fc-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    height: 100%;
}

.hp-fc .fc-list .fc-group .fc-row.row-1-3 {
    height: calc(100% / 3);
}

.hp-fc .fc-list .fc-group .fc-row.row-cs-1 {
    height: 43%;
}

.hp-fc .fc-list .fc-group .fc-row.row-cs-2 {
    height: 57%;
}

.hp-fc .fc-list .fc-group .fc-row .fc-col {
    width: 100%;
    height: 100%;
    padding: 3px;
}

.hp-fc .fc-list .fc-group .fc-row .fc-col.col-1-2 {
    width: 50%;
}

.hp-fc .fc-list .fc-group .fc-row .fc-col.col-1-3 {
    width: calc(100% / 3);
}

.hp-fc .fc-list .fc-item {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hp-fc .fc-list .fc-item .fc-img,
.hp-fc .fc-list .fc-item .fc-img canvas,
.hp-fc .fc-list .fc-item .fc-main {
    width: 100%;
    height: 100%;
}

.hp-fc .fc-list .fc-item .fc-img {
    position: relative;
    z-index: 0;
}

.hp-fc .fc-list .fc-item .fc-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hp-fc .fc-list .fc-item .fc-img canvas {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-fc .fc-list .fc-item .fc-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-list .fc-item .fc-more {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1.2px;
    color: #fff;
}

.hp-fc .fc-list .fc-item .fc-main {
    position: relative;
}

.hp-fc .fc-list .fc-item .fc-main .fc-name {
    position: absolute;
    bottom: 27px;
    left: 0;
    width: 100%;
}

.hp-fc .fc-list .fc-item .fc-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(18, 129, 172, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-list .fc-item .fc-hover .fc-more {
    margin-top: 14px;
}

.hp-fc .fc-list .fc-item:hover .fc-main .fc-name {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
}

.hp-fc .fc-list .fc-item:hover .fc-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/** End of HP Featured Communities */
/** HP News & Posts */
.hp-news {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 38px 0 76px;
}

.hp-news .news-wrap {
    position: relative;
}

.hp-news .news-list {
    margin-top: 68px;
}

.hp-news .news-list .news-item {
    display: block;
    outline: none;
    text-decoration: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    pointer-events: none;
}

.hp-news .news-list .news-item .news-post-name {
    /* font-family: "Playfair Display", serif; */
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    background: #1281ac;
    padding: 9px 10px 11px;
    pointer-events: auto;
}

.hp-news .news-list .news-item .news-post-img {
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    pointer-events: auto;
}

.hp-news .news-list .news-item .news-post-img canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-news .news-list .news-item .news-post-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.64px;
    text-align: center;
    color: #000;
    margin-top: 16px;
}

.hp-news .news-list .news-item:hover .news-post-img canvas {
    -webkit-transform: translateZ(0) scale(1.3);
    transform: translateZ(0) scale(1.3);
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

.hp-news .news-view-more a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 362px;
    max-width: 100%;
    height: 65px;
    border: 1px solid #1281ac;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    color: #1281ac;
    margin: 55px auto 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-news .news-view-more a:hover {
    background: #1281ac;
    color: #fff;
}

/** End of HP News & Posts */
/** HP Testimonials */
.hp-testi {
    position: relative;
    z-index: 1;
    padding: 75px 0 110px;
}

.hp-testi:before,
.hp-testi:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* .hp-testi:before {
    z-index: -2;
    background: transparent url(images/testi-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
} */

.hp-testi:after {
    z-index: -1;
    background: rgba(18, 129, 172, 0.9);
}

.hp-testi .testi-wrap {
    position: relative;
}

.hp-testi .testi-slider {
    position: relative;
}

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

.hp-testi .testi-slider:before {
    content: '';
    display: block;
    width: 27px;
    height: 22px;
    background: transparent url(images/testi-quote-a.png) no-repeat;
    margin: 0 auto 84px;
}

.hp-testi .testi-slider .testi-slide {
    outline: none;
}

.hp-testi .testi-slider .testi-slide .testi-content {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.73;
    letter-spacing: 0.44px;
    color: #fff;
    text-align: center;
}

.hp-testi .testi-slider .testi-slide .testi-author {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-top: 36px;
}

.hp-testi .testi-slider .testi-slide .testi-author a {
    display: inline-block;
    vertical-align: middle;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-testi .testi-slider .testi-slide .testi-author a:hover {
    color: #cccccc;
}

.hp-testi .testi-slider-controls {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -10.6%;
    pointer-events: none;
}

.hp-testi .testi-slider-controls span {
    cursor: pointer;
    font-size: 23px;
    color: #fff;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-testi .testi-slider-controls span:hover {
    color: #cccccc;
}

/** End of HP Testimonials */
/** Footer */
.footer {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 67px 0 66px;
}

.footer .footer-logo img {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

.footer .footer-contact {
    margin-top: 41px;
}

.footer .footer-contact ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.footer .footer-contact ul li {
    width: calc(100% / 3);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.68px;
    text-align: center;
    color: #7e7e7e;
}

.footer .footer-contact ul li a,
.footer .footer-contact ul li p,
.footer .footer-contact ul li em,
.footer .footer-contact ul li span {
    display: block;
}

.footer .footer-contact ul li span {
    font-size: 15px;
    height: 17px;
    margin-bottom: 23px;
}

.footer .footer-contact ul li span.location {
    font-size: 20px;
}

.footer .footer-contact ul li span.envelope {
    font-size: 12px;
}

.footer .footer-smi {
    margin-top: 57px;
}

.footer .footer-smi ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .footer-smi ul li {
    display: block;
    padding: 0 12px;
}

.footer .footer-smi ul li a {
    display: block;
    font-size: 22px;
    color: #7e7e7e;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-smi ul li a:hover {
    color: #1281ac;
}

.footer .footer-copyright {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.52px;
    color: #7e7e7e;
    text-align: center;
    margin-top: 59px;
}

.footer .footer-copyright .footer-sitename {
    color: #1281ac;
}

.footer .footer-copyright a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-copyright a:hover {
    color: #1281ac;
}

.footer .footer-copyright a.footer-agentimage {
    text-decoration: underline;
}

.footer .footer-mls {
    text-align: center;
    margin-top: 19px;
}

.footer .footer-mls span {
    display: block;
    vertical-align: middle;
    font-size: 23px;
    color: #7e7e7e;
}

.footer .footer-question {
    position: absolute;
    bottom: 0;
    right: 50px;
}

.footer .footer-question a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 338px;
    height: 76px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.84px;
    color: #fff;
    background: #1281ac;
    text-align: center;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-question a:hover {
    background: #7e7e7e;
}

.ip-container .footer {
    border-top: 1px solid #e2e2e2;
}

/** End of Footer */
/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
/** Inner Page Banner */
.inner-page-banner {
    position: relative;
}

.inner-page-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.inner-page-banner canvas {
    display: block;
    width: 100%;
    min-height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

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

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

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

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
    margin-top: 42px;
}

/* 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: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.54px;
    text-transform: uppercase;
    color: #1281ac;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.54px;
    text-transform: uppercase;
    color: #1281ac;
}

#content .archive-subtitle a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#content .archive-subtitle a:hover {
    color: #7e7e7e;
}

/** Styles for Content Entry */
#content .entry {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.54px;
    color: #000;
}

/** End of Styles for Content Entry */
/** Inner Page Breadcrumbs */
#breadcrumbs {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.6px;
    text-transform: none;
    color: #878787;
    margin-top: 0 !important;
}

#breadcrumbs a {
    font-weight: 600;
    color: #1281ac;
}

/** End of Inner Page Breadcrumbs */
/** Sidebar Quick Search */
.sb-qs .sb-qs-wrap {
    position: relative;
}

.sb-qs .sb-qs-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.54px;
    text-transform: uppercase;
    text-align: center;
    color: #1281ac;
}

.sb-qs .sb-qs-form {
    margin: 15px 0 0 !important;
}

.sb-qs .sb-qs-form .sb-qs-field {
    width: 100%;
}

.sb-qs .sb-qs-form .sb-qs-field.submit {
    margin-top: 10px;
}

.sb-qs .sb-qs-form .sb-qs-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #878787;
    border: 1px solid #d8d8d8;
    outline: none;
    padding: 2px 14px 0 33px;
    background: transparent url(images/qs-magnifying-icon-b.png) no-repeat;
    background-position: center left 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-qs .sb-qs-form .sb-qs-input:active,
.sb-qs .sb-qs-form .sb-qs-input:focus {
    border-color: #1281ac;
}

.sb-qs .sb-qs-form .sb-qs-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    border: none;
    outline: none;
    color: #fff;
    background: #1281ac;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-qs .sb-qs-form .sb-qs-submit:hover {
    background: #7e7e7e;
}

/** End of Sidebar Quick Search */
/** Sidebar Call To Action */
.sb-cta {
    margin-top: 30px;
}

.sb-cta .sb-cta-wrap {
    position: relative;
}

.sb-cta .sb-cta-list .sb-cta-item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #434343;
    border: 1px solid rgba(18, 129, 172, 0.5);
    margin-top: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-cta .sb-cta-list .sb-cta-item i {
    font-family: "Playfair Display", serif;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-cta .sb-cta-list .sb-cta-item strong {
    font-size: 25px;
    font-weight: 600;
    color: #1281ac;
    text-transform: uppercase;
    margin-top: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-cta .sb-cta-list .sb-cta-item:hover {
    background: #1281ac;
}

.sb-cta .sb-cta-list .sb-cta-item:hover i,
.sb-cta .sb-cta-list .sb-cta-item:hover strong {
    color: #fff;
}

/** End of Sidebar Call To Action */

/* Ask Us Form Popup */
.aiosp-wrap .aiosp-container .aios-popup-body.au-popup-body {
    max-width: 450px;
    min-height: auto;
}

.ask-us-header .ask-us-title h2 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.84px;
    color: #1281ac;
    margin-bottom: 20px;
}

/* End Of Ask Us Form Popup */

.home .cycloneslider-template-video .cycloneslider-volume {
    display: none;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */


.page-id-355 #content u {
    font-size: 2em;
    -webkit-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.page-id-355 #content u:hover {
    color: #1281ac;
}

button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 72px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    border-radius: 0;
    letter-spacing: 0.28px;
    color: #fff;
    border: 2px solid #fff;
    outline: none;
    padding: 2px 24px 0 55px;
    background: transparent url(images/qs-magnifying-icon-a.png) no-repeat;
    background-position: center left 24px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

section#hp-cta {
    z-index: 0;
}

.category-real-estate-market-update #content .archive-title {
    margin-bottom: 35px;
}


.dropdown-menu.open {
    max-height: 300px !important;
}

.sb-qs-field button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #878787;
    border: 1px solid #d8d8d8;
    outline: none;
    padding: 2px 14px 0 33px;
    background: transparent url(images/qs-magnifying-icon-b.png) no-repeat;
    background-position: center left 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

button.btn.dropdown-toggle.btn-default {
    background: transparent url('./images/qs-magnifying-icon-b-white.png') no-repeat;
    background-position: center left 10px;
}


.sb-qs-field button.btn.dropdown-toggle.btn-default {
    background: transparent url(images/qs-magnifying-icon-b.png) no-repeat;
    background-position: center left 10px;
    height: 42px;
}


.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    color: #fff;
}

.sb-qs-field button.btn.dropdown-toggle.btn-default span {
    color: #000;
    padding: 2px 0;
}

button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {
    height: 72px;
}

#ihf-search-location-tabs,
div.chosen-drop ul.chosen-results {
    margin-left: 0 !important;
    padding: 0;
}

.chosen-container.chosen-with-drop .chosen-drop {
    z-index: 1;
}

#ihf-main-container .ihf-label-overlay-money {
    z-index: 0;
}

#ihf-detail-extrainfotabs {
    margin-left: 0 !important;
}

#ihf-main-container .mc-total-payment-subline *,
#ihf-main-container .mc-total-payment-subline {
    color: #666;
}

#areaPickerExpandAllCloseButton {
    margin-right: 0 !important;
    width: auto !important;
    position: relative;
    right: 14px;
}

.chosen-drop ul {
    margin: 0 !important;
}

#ihf-main-container .btn-primary.areaPickerExpandAllTopBar:hover {
    background-position: 0 0 !important;
    background: #285c8a;
}

html.firefox-true input:required:invalid,
html.msedge-true input:required:invalid {
    outline: none;
    box-shadow: none;
}

.bootstrap-select.btn-group .dropdown-menu {
    max-height: 200px !important;
    max-width: 100%;
}

.ip-container .pop-gallery-wrap .slick-prev,
.ip-container .pop-gallery-wrap .slick-next {
    height: 70px;
}

.ip-container .pop-gallery-wrap .slick-prev:after,
.ip-container .pop-gallery-wrap .slick-next:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

#content .listing-details-wrap .photo-slideshow .slick-prev,
#content .listing-details-wrap .photo-slideshow .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    height: 102px;
}

#ihf_schoolDistrict_chosen .chosen-drop {
    overflow: hidden;
    max-height: 145px !important;
}

.ai-contact-wrap span.wpcf7-form-control-wrap.p-phone {
    float: left;
}

#ihf-main-container .ihf-advanced-property-search form#ihf-main-search-form .chosen-drop ul.chosen-results {
    max-height: 180px !important;
}

.header>.container {
    width: 94%;
}

:is(.error-page-cf-wrap, .ask-us-form) .wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px;
    display: none;
}

:is(.error-page-cf-wrap, .ask-us-form) .wpcf7-not-valid-tip:last-of-type {
    display: block;
}

:is(.error-page-cf-wrap, .ask-us-form) .wpcf7-response-output {
    text-align: center;
}

.ask-us-form [data-name="p-phone"] {
    left: -10px;
}

.hp-welcome .welcome-agent-contact ul {
    align-items: flex-start;
}

.footer .footer-contact ul li a {
    padding-bottom: 5px;
}

.hp-welcome .welcome-agent-contact ul li>ul {
    flex-direction: column;
    align-items: flex-start;
}

.hp-welcome .welcome-agent-contact ul li>ul li {
    margin-left: 0;
    margin-bottom: 5px;
}

/* Optimization | Start */

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

.site-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hp-cta .site-bg {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

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

em.ai-mobile-phone {
    font-style: normal !important;
}

/* Optimization | End */