/*
Theme Name: Sarah Boyd & Company Theme
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. Global Styles
2. HP Styles
3. IP Styles

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

*/
/*******************************************************
 *
 * 1. Global Styles
 *
 *******************************************************/
/** Body */
body {
    font-family: "Fahkwang", sans-serif;
    font-size: 14px;
    background: #fff;
    color: #000;
    margin: 0;
}

/** End of Body */
/** Sub Menu */
.site-menu li {
    position: relative;
    display: block;
}

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

.site-menu .sub-menu {
    list-style: none;
    background: transparent;
    display: none;
    margin: 0;
    padding: 23px 0 0;
    position: absolute;
    left: calc(50% - 101px);
    min-width: 202px;
}

.site-menu .sub-menu li {
    position: relative;
    margin-top: 1px;
}

.site-menu .sub-menu li:nth-child(1) {
    margin-top: 0;
}

.site-menu .sub-menu li:nth-child(1):after {
    content: '';
    position: absolute;
    top: -10px;
    left: calc(50% - 5px);
    border-color: transparent transparent #cdbe9d transparent;
    border-style: solid;
    border-width: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-menu .sub-menu li:nth-child(1):hover:after {
    border-bottom-color: #000;
}

.active .site-menu .sub-menu {
    padding-top: 26px;
}

.site-menu .sub-menu a {
    display: inline-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: 48px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    /* background: #cdbe9d; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    color: #2d2d2d;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.site-menu .sub-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
}

.site-menu .sub-menu a:hover {
    background: #000;
    color: #ffffff;
}

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

/** End of Sub Menu */
/** Header */
.header {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.admin-bar .header {
    top: 32px;
}

.header.active {
    background: #000;
}

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

.header.active .header-logo {
    max-width: 103px;
}

.header .header-wrap {
    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;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    padding: 26px 0;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.header .header-wrap .header-left {
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header .header-logo {
    max-width: 100%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

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

.header .header-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.header .header-info {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.25px;
    text-transform: uppercase;
    color: #fff;
}

.header .header-info span {
    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;
}

.header .header-info span:before,
.header .header-info span:after {
    content: '';
    display: block;
    width: auto;
    height: 1px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: rgba(164, 164, 164, 0.47);
}

.header .header-info span:before {
    margin-right: 26px;
}

.header .header-info span:after {
    margin-left: 26px;
}

.header .header-navigation {
    margin-top: 21px;
}

.header .header-navigation > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -20px;
}

.header .header-navigation > ul > li {
    display: block;
    padding: 0 20px;
}

.header .header-navigation > ul > li > a {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.975px;
    text-transform: uppercase;
    text-decoration: none;
    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 > ul > li:hover > a {
    color: #b7b7b7;
}

/** End of Header */
/** Footer */
.footer {
    position: relative;
    z-index: 1;
}

.footer .footer-git {
    position: relative;
    z-index: 1;
    padding: 114px 0 127px;
}

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

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

.footer .footer-git:after {
    z-index: -1;
    background: rgba(49, 49, 49, 0.41);
}

.footer .footer-git .git-wrap {
    position: relative;
}

.footer .footer-git .git-title strong {
    font-size: 90px;
    letter-spacing: 4.5px;
    color: #fff;
}

.footer .footer-git .git-subtxt {
    font-size: 13px;
    font-weight: 400;
    height: 1px;
    line-height: 1.54;
    letter-spacing: 1.3px;
    color: #e9e9e9;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 76px;
}

.footer .footer-git .git-subtxt:before,
.footer .footer-git .git-subtxt:after {
    content: '';
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.33);
}

.footer .footer-git .git-subtxt:before {
    margin-right: 18px;
}

.footer .footer-git .git-subtxt:after {
    margin-left: 16px;
}

.footer .footer-git .git-subtxt p {
    position: relative;
    top: -9px;
}

.footer .footer-git .git-form {
    padding: 83px 67px 81px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-top: none;
}

.footer .footer-git .git-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -8px;
    position: relative;
}

.footer .footer-git .git-form .git-field {
    display: block;
    width: 50%;
    padding: 0 8px;
    position: relative;
}

.footer .footer-git .git-form .git-field.lg {
    width: 100%;
    margin-top: 55px;
}

.footer .footer-git .git-form .git-field.submit {
    position: absolute;
    bottom: -6.8rem;
    left: 0;
    width: 100%;
}

.footer .footer-git .git-form .git-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    background: transparent;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    color: #fff;
    padding: 0 5px;
    position: relative;
}

.footer .footer-git .git-form textarea.git-control {
    height: 96px;
    resize: none;
}

.footer .footer-git .git-form .git-submit {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    display: block;
    width: 177px;
    height: 53px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #2d2d2d;
    margin: 0 auto;
    /* background: #cdbe9d; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-git .git-form .git-field.submit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
    pointer-events: none;
}

.footer .footer-git .git-form .git-submit:hover {
    background: #222222;
    color: #fff !important;
}

.footer .footer-git .git-form .ajax-loader {
    margin: 0;
    position: absolute;
    top: -30px;
    left: calc(50% - 8px);
}

.footer .footer-git .git-form .wpcf7-form-control-wrap {
    display: block;
}

.footer .footer-git .git-form .wpcf7-form-control-wrap:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-git .git-form .wpcf7-form-control-wrap.focus:after {
    bottom: 0px;
}

.footer .footer-git .git-form .wpcf7-response-output {
    color: #fff !important;
    position: absolute;
    bottom: -165px;
    left: 0;
    width: 100%;
    margin: 0;
}

.footer .footer-main {
    background: #d3c7aa url(images/footer-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 62px 0 40px;
}

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

.footer .footer-navigation {
    border-top: 1px solid rgba(111, 102, 81, 0.22);
    border-bottom: 1px solid rgba(111, 102, 81, 0.22);
    margin-top: 54px;
    padding: 37px 0 39px;
}

.footer .footer-navigation > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.footer .footer-navigation > ul > li {
    display: block;
    position: relative;
    padding: 0 15px;
}

.footer .footer-navigation > ul > li:nth-child(1) {
    padding-left: 0;
}

.footer .footer-navigation > ul > li:nth-last-child(1) {
    padding-right: 0;
}

.footer .footer-navigation > ul > li > a {
    display: block;
    font-family: "GFS Didot", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2d2d2d;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-navigation > ul > li > a:hover {
    color: #cdbe9d;
}

.footer .footer-navigation > ul > li > ul {
    position: absolute;
    top: 0;
    min-width: 145px;
    display: none;
}

.footer .footer-navigation > ul > li > ul > li {
    display: block;
    margin-top: 10px;
}

.footer .footer-navigation > ul > li > ul > li:nth-child(1) {
    margin-top: 25px;
}

.footer .footer-navigation > ul > li > ul > li a {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.333;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    color: #7f7f7f;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-navigation > ul > li > ul > li a:hover {
    color: #cdbe9d;
}

.footer .footer-copyright,
.footer .footer-credits {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.6px;
    text-align: center;
    color: #494949;
    margin-top: 40px;
}

.footer .footer-credits {
    margin: 5px 0 15px;
}

.footer .footer-copyright a,
.footer .footer-credits 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,
.footer .footer-credits a:hover {
    color: #cdbe9d;
}

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

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

.footer .footer-mls span {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    color: #494949;
}

/** End of Footer */
/** Global Section Title */
.global-section-title {
    position: relative;
}

.global-section-title i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-family: "Prata", serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    color: #bbbbbb;
}

.global-section-title i:before,
.global-section-title i:after {
    content: '';
    display: block;
    width: 42px;
    height: 4px;
    background: #cdbe9d;
}

.global-section-title i:before {
    margin-right: 11px;
}

.global-section-title i:after {
    display: none;
    margin-left: 11px;
}

.global-section-title i.right-line:before {
    display: none;
}

.global-section-title i.right-line:after {
    display: block;
}

.global-section-title span {
    display: block;
}

.global-section-title small {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    color: #a7a7a7;
    margin-top: 11px;
}

.global-section-title strong {
    font-family: "GFS Didot", serif;
    font-size: 95px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.9px;
    text-transform: uppercase;
    color: #494949;
    margin-top: 2px;
}

.global-section-title strong em {
    color: #cdbe9d;
    font-style: normal;
}

.global-section-title.align-right {
    text-align: right;
}

.global-section-title.align-right i {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.global-section-title.txt-lg small {
    font-size: 20px;
    letter-spacing: 6px;
}

.global-section-title.txt-lg strong {
    font-size: 100px;
    letter-spacing: 5px;
    margin-top: 6px;
}

.global-section-title.align-right.txt-lg small {
    margin-right: -8px;
}

.global-section-title.align-right.txt-lg strong {
    margin-right: -11px;
}

.global-section-title.align-center {
    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;
}

/** End of Global Section Title */
/** Global Button */
.global-button {
    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: 263px;
    max-width: 100%;
    height: 66px;
    border: 1px solid rgba(152, 152, 152, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #cdbe9d;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% - 12px);
    width: 100vw;
    height: 1px;
    background: #cbcbcb;
}

.global-button.no-line:after {
    display: none;
}

.ip-container #content .entry .global-button:after {
    left: auto;
    right: 10px;
    width: 50px;
}

.global-button:hover {
    background: #cdbe9d !important;
    border-color: #cdbe9d !important;
    color: #fff !important;
}

/** End of Global Button */
/** Bootstrap Container Extend */
.bootstrap-extend-left {
    margin-left: calc((100vw - 1140px) / -2);
}

.bootstrap-extend-right {
    margin-right: calc((100vw - 1140px) / -2);
}

/** End of Bootstrap Container Extend */

/** Site Accordion */
.site-accordion {
    position: relative;
    margin: 0 -5px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.site-accordion .s-a-group {
    position: relative;
    width: 50%;
}

.site-accordion .s-a-panel {
    position: relative;
    margin-top: 10px;
    padding: 0 5px;
    width: 100%;
}

.site-accordion .s-a-title {
    padding: 10px 20px;
    border: 1px solid #cdbe9d;
    font-family: "GFS Didot", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: #cdbe9d;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-accordion .s-a-title.active,
.site-accordion .s-a-title:hover {
    background: #cdbe9d;
    color: #fff;
}

.site-accordion .s-a-content {
    display: none;
    padding: 20px;
}

/** End of Site Accordion */

/** Slick Slide Outline Remover */
.slick-slide {
    outline: none !important;
}
/** End Slick Slide Outline Remover */

/*******************************************************
 *
 * 2. HP Styles
 *
 *******************************************************/
/** HP Slideshow */
.hp-slideshow .slideshow-wrap {
    position: relative;
}

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

.hp-slideshow .slideshow-slider:before,
.hp-slideshow .slideshow-slider:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    pointer-events: none;
}

.hp-slideshow .slideshow-slider:before {
    background-image: url(images/slideshow-bg-overlay-a.png);
    background-position: top center;
}

.hp-slideshow .slideshow-slider:after {
    background-image: url(images/slideshow-bg-overlay-b.png);
    background-position: bottom center;
}

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

.hp-slideshow .slideshow-slider .cycloneslider:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.hp-slideshow .slideshow-slider .cycloneslider .cycloneslider-slides {
    z-index: 1;
}

/** End of HP Slideshow */
/** HP Call To Action */
.hp-cta {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-100%) translateY(-132px);
    transform: translateY(-100%) translateY(-132px);
}

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

.hp-cta .cta-list .cta-col {
    position: relative;
    margin-top: 30px;
}

.hp-cta .cta-list .cta-item {
    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: 400px;
    max-width: 100%;
    height: 62px;
    text-decoration: none;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -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: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-cta .cta-list .cta-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.hp-cta .cta-list .cta-item .cta-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.hp-cta .cta-list .cta-item:hover {
    /* background: #cdbe9d; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    /* text-shadow: 1px 1px 1px #767575 */
}

.hp-cta .cta-list .cta-item:hover div {
    color: #2d2d2d;
}

.hp-cta .cta-list .cta-item:hover:before {
    opacity: .2;
}

.hp-cta .cta-list .cta-item:hover:after {
    -webkit-transform: scale(0.9356, 1.258);
    transform: scale(0.9356, 1.258);
}

/** End of HP Call To Action */
/** HP Welcome */
.hp-welcome {
    position: relative;
    z-index: 2;
    padding-top: 98px;
    overflow: hidden;
}

.hp-welcome:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 55px);
    background: transparent url(images/welcome-bg-a.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.15;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

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

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

.hp-welcome .welcome-inner > div:nth-child(1) {
    position: relative;
    z-index: 2;
}

.hp-welcome .welcome-inner .welcome-right {
    padding: 58px 0 0 45px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hp-welcome .welcome-inner .welcome-right:before,
.hp-welcome .welcome-inner .welcome-right:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
}

.hp-welcome .welcome-inner .welcome-right:before {
    z-index: -2;
    margin-left: -60px;
    background: #fff;
    background-position: center center;
    background-size: 100%;
    width: 100vw;
}

.hp-welcome .welcome-inner .welcome-right:after {
    z-index: -1;
    top: auto;
    bottom: -62px;
    margin-left: -143px;
    background: transparent url(images/welcome-bg-b.png) no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    width: 1024px;
    height: 702px;
}

.hp-welcome .welcome-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.hp-welcome .welcome-title {
    margin-bottom: 22px;
}

.hp-welcome .welcome-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.86;
    letter-spacing: 0.42px;
    color: #646464;
    margin-right: -49px;
}

.hp-welcome .welcome-button {
    margin-top: 40px;
    /* text-shadow: 1px 1px 1px #767575; */
    color: #2d2d2d;
}

.hp-welcome .welcome-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.hp-welcome .welcome-button:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
    color: #2d2d2d !important;
}

.hp-welcome .welcome-button:hover:before {
    opacity: .2;
}

/** End of HP Welcome */
/** HP Featured Listings */
.hp-fl {
    margin-top: -43px;
    padding-top: 118px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.hp-fl:before {
    z-index: -2;
    background: transparent url(images/fl-bg-a.jpg) no-repeat;
    background-size: 100% auto;
    background-position: top center;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.09;
    height: 580px;
}

.hp-fl:after {
    z-index: -1;
    background: transparent url(images/fl-bg-overlay-a.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    height: 85%;
}

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

.hp-fl .fl-slider-wrap {
    overflow: hidden;
    margin: 33px -21px 0;
    padding: 0 21px;
}

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

.hp-fl .fl-slider:not(.slick-initialized) {
    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;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.hp-fl .fl-slider:not(.slick-initialized) .fl-col {
    width: 25%;
}

.hp-fl .fl-slider .fl-col {
    padding: 47px 15px 19px;
    vertical-align: middle;
    position: relative;
}

.hp-fl .fl-slider .fl-item {
    display: block;
    position: relative;
    border: 8px solid #dcdcdc;
    background: #fff;
    outline: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.hp-fl .fl-slider .fl-item:before {
    content: '';
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 100%;
    height: 19px;
    background: transparent url(images/fl-item-shadow-a.png) no-repeat;
    background-position: top center;
    background-size: 100% auto;
    pointer-events: none;
}

.hp-fl .fl-slider .fl-item:after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 8px solid #cdbe9d;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fl .fl-slider .fl-item .fl-img {
    position: relative;
    margin: 0 -8px;
}

.hp-fl .fl-slider .fl-item .fl-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url(images/fl-img-watermark-a.png) no-repeat;
    background-size: 100% auto;
    background-position: center center;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fl .fl-slider .fl-item .fl-img canvas {
    display: block;
    width: 100%;
    background-color: #cdbe9d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-fl .fl-slider .fl-item .fl-info {
    padding: 27px 5px 30px;
    min-height: 235px;
}

.hp-fl .fl-slider .fl-item .fl-price {
    font-family: "Prata", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    color: #353535;
}

.hp-fl .fl-slider .fl-item .fl-address {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
    color: #979797;
    margin-top: 24px;
}

.hp-fl .fl-slider .fl-item .fl-view-details {
    position: relative;
    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;
    width: 152px;
    max-width: 100%;
    height: 53px;
    /* background: #cdbe9d; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #2d2d2d;
    margin-top: 23px;
    /*  text-shadow: 1px 1px 1px #767575; */
}

.hp-fl .fl-slider .fl-item .fl-view-details::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
}

.hp-fl .fl-slider .fl-item:hover {
    -webkit-transform: translateY(-26px);
    transform: translateY(-26px);
    -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.49);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.49);
}

.hp-fl .fl-slider .fl-item:hover:after {
    opacity: 1;
}

.hp-fl .fl-slider .fl-item:hover .fl-img:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#hp-fl .slick-slider * {
    outline: 0;
}

/** End of HP Featured Listings */
/** HP Featured Communities */
.hp-fc {
    padding-top: 122px;
    background: #fff url(images/fc-bg-a.jpg) no-repeat;
    background-position: bottom right;
    background-size: cover;
}

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

.hp-fc .fc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 223px -4px 0;
}

.hp-fc .fc-list .fc-col {
    width: calc(100% / 3);
    padding: 0 4px;
    margin-top: 8px;
}

.hp-fc .fc-list .fc-col:nth-child(3n + 2) {
    margin-top: -100px;
}

.hp-fc .fc-list .fc-col:nth-child(3n + 3) {
    margin-top: -200px;
}

.hp-fc .fc-list .fc-col:nth-child(1) .fc-img canvas {
    height: 417px;
}

.hp-fc .fc-list .fc-col:nth-child(2) .fc-img canvas {
    height: 418px;
}

.hp-fc .fc-list .fc-col:nth-child(3) .fc-img canvas {
    height: 417px;
}

.hp-fc .fc-list .fc-col:nth-child(4) .fc-img canvas {
    height: 363px;
}

.hp-fc .fc-list .fc-col:nth-child(5) .fc-img canvas {
    height: 417px;
}

.hp-fc .fc-list .fc-col:nth-child(6) .fc-img canvas {
    height: 463px;
}

.hp-fc .fc-list .fc-col:nth-child(7) .fc-img canvas {
    height: 371px;
}

.hp-fc .fc-list .fc-col:nth-child(8) {
    margin-top: -48px;
}

.hp-fc .fc-list .fc-col:nth-child(8) .fc-img canvas {
    height: 427px;
}

.hp-fc .fc-list .fc-col:nth-child(9) {
    margin-top: -100px;
}

.hp-fc .fc-list .fc-col:nth-child(9) .fc-img canvas {
    height: 479px;
}

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

.fv-view-more:hover {
    text-shadow: 1px 1px 1px #767575;
}

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

.hp-fc .fc-list .fc-item .fc-img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 151px;
    background: transparent url(images/fc-img-overlay-a.png) no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    pointer-events: none;
}

.hp-fc .fc-list .fc-item .fc-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 7%;
    width: 86%;
    height: 100%;
    background: transparent url(images/fc-img-watermark-a.png) no-repeat;
    background-position: center center;
    background-size: 100% auto;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    pointer-events: none;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-list .fc-item .fc-img canvas {
    display: block;
    width: 100%;
    background-color: #cdbe9d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-list .fc-item .fc-name {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    height: 42px;
    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 31px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-list .fc-item:hover .fc-img:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hp-fc .fc-list .fc-item:hover .fc-img canvas {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.hp-fc .fc-list .fc-item:hover .fc-name {
    /* background: #cdbe9d; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    /* text-shadow: 1px 1px 1px #767575; */
    color: #2d2d2d;
}

.hp-fc .fc-list .fc-item .fc-name::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4 ease-in-out;
}

.hp-fc .fc-list .fc-item:hover .fc-name:after {
    opacity: .2;
}

/** End of HP Featured Communities */
/** HP Why Choose Us */
.hp-wcu {
    position: relative;
    z-index: 1;
    background: transparent url(images/wcu-bg-a.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 177px 0 132px;
    overflow: hidden;
}

.hp-wcu .wcu-inner .wcu-right {
    margin: -72px -15px 0 -30px;
    background: #fff;
    padding: 42px 5% 81px 8.6%;
    overflow: hidden;
}

.hp-wcu .wcu-img {
    position: relative;
}

.hp-wcu .wcu-img canvas {
    display: block;
    width: 100%;
    background-color: #cdbe9d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-wcu .wcu-title strong {
    font-size: 90px;
    letter-spacing: 4.5px;
}

.hp-wcu .wcu-content {
    margin-top: 44px;
}

.hp-wcu .wcu-content ul {
    display: block;
    margin-left: 38px;
}

.hp-wcu .wcu-content ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.86;
    letter-spacing: 0.42px;
    color: #615f5f;
    margin-top: 36px;
    position: relative;
}

.hp-wcu .wcu-content ul li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: -38px;
    width: 20px;
    height: 20px;
    background: transparent url(images/wcu-list-bg-a.png) no-repeat;
    background-size: 100% 100%;
}

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

.hp-wcu .wcu-learn-more {
    margin-top: 56px;
    transition: all .4s ease-in-out;
    color: #2d2d2d;
}

.hp-wcu .wcu-learn-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.hp-wcu .wcu-learn-more:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
}

.hp-wcu .wcu-learn-more:hover:before {
    opacity: .2;
}

/** End of HP Why Choose Us */
/** HP Featured Videos */
.hp-fv {
    padding: 246px 0 226px;
    overflow: hidden;
}

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

.hp-fv .fv-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.hp-fv .fv-inner .fv-left {
    width: 458px;
    overflow: hidden;
}

.hp-fv .fv-inner .fv-right {
    width: calc(100% - 458px);
    position: relative;
    z-index: 1;
}

.hp-fv .fv-inner .fv-right:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -50%;
    right: -164px;
    -webkit-transform: translateY(25%) translateY(-28px);
    transform: translateY(25%) translateY(-28px);
    width: 85%;
    height: 138.3%;
    background: transparent url(images/fv-bg-overlay-a.png) no-repeat;
    background-size: 100% 100%;
    opacity: 0.5;
}

.hp-fv .fv-view-more {
    margin-top: 40px;
    transition: all .4s ease-in-out;
}

.hp-fv .fv-view-more:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
}

.hp-fv .fv-view-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4 ease-in-out;
}

.hp-fv .fv-view-more:hover:before {
    opacity: .2;
}

.hp-fv .fv-subtxt {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.52px;
    color: #615f5f;
    margin-top: 45px;
    width: 450px;
    max-width: 100%;
    padding-right: 15px;
}

.hp-fv .fv-thumbnail-slider-wrap {
    margin-top: 19px;
    position: relative;
}

.hp-fv .fv-thumbnail-slider {
    width: 682px;
    position: relative;
    left: 209px;
    margin: 0 -5px;
}

.hp-fv .fv-thumbnail-slider:not(.slick-initialized) {
    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;
}

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

.hp-fv .fv-thumbnail-slider .fv-t-slide {
    padding: 0 5px 23px;
    vertical-align: middle;
}

.hp-fv .fv-thumbnail-slider .fv-t-item {
    display: block;
    width: 219px;
    position: relative;
    outline: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fv .fv-thumbnail-slider .fv-t-item:after {
    content: '';
    position: absolute;
    bottom: -23px;
    left: 0;
    width: 100%;
    height: 23px;
    background: transparent url(images/fv-t-item-shadow-a.png) no-repeat;
    background-size: 100% auto;
    background-position: top center;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fv .fv-thumbnail-slider .fv-t-item .fv-t-img {
    position: relative;
}

.hp-fv .fv-thumbnail-slider .fv-t-item .fv-t-img canvas {
    display: block;
    width: 100%;
    background-color: #cdbe9d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fv .fv-thumbnail-slider .fv-t-item .fv-t-label {
    position: absolute;
    top: 0;
    left: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: rgba(81, 81, 81, 0.7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fv .fv-thumbnail-slider .fv-t-item .fv-t-label:before {
    content: '';
    display: block;
    width: 45px;
    height: 44px;
    background: transparent url(images/fv-t-item-play-button-a.png) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 8px;
}

.hp-fv .fv-thumbnail-slider .fv-t-item:hover .fv-t-img canvas {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.hp-fv .fv-thumbnail-slider .fv-t-item:hover .fv-t-label {
    background: rgba(81, 81, 81, 0.5);
}

.hp-fv .fv-thumbnail-slider .slick-active.slick-current .fv-t-item {
    opacity: 0;
}

.hp-fv .fv-thumbnail-slider .slick-active.slick-current .fv-t-item:after {
    opacity: 0;
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.hp-fv .fv-slider-wrap {
    position: relative;
    z-index: 2;
}

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

.hp-fv .fv-slider .fv-slide {
    position: relative;
    vertical-align: middle;
    padding-bottom: 23px;
}

.hp-fv .fv-slider .fv-item {
    display: block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

.hp-fv .fv-slider .fv-item .fv-img {
    position: relative;
}

.hp-fv .fv-slider .fv-item .fv-img canvas {
    display: block;
    width: 100%;
    background-color: #cdbe9d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-fv .fv-slider .fv-item .fv-label {
    position: absolute;
    top: 0;
    left: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.98px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.64);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fv .fv-slider .fv-item .fv-label:before {
    content: '';
    display: block;
    width: 77px;
    height: 77px;
    background: transparent url(images/fv-item-play-button-a.png) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}

.hp-fv .fv-controls {
    position: absolute;
    z-index: 1;
    bottom: 23px;
    right: 0;
}

.hp-fv .fv-controls .fv-arrow {
    position: relative;
    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: 61px;
    height: 83px;
    cursor: pointer;
    font-size: 16px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fv .fv-controls .fv-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
}

.hp-fv .fv-controls .fv-arrow span {
    font-weight: 700;
}

.hp-fv .fv-controls .fv-arrow.fv-prev {
    background: #fff;
    color: #161616;
}

.hp-fv .fv-controls .fv-arrow.fv-prev:hover {
    /* background: #cdbe9d; */
    background: linear-gradient(180deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    color: #fff;
}

.hp-fv .fv-controls .fv-arrow.fv-next {
    /* background: #cdbe9d; */
    background: linear-gradient(180deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    color: #fff;
}

.hp-fv .fv-controls .fv-arrow.fv-next:hover {
    background: #fff;
    color: #161616;
}

.hp-fv .slick-slider * {
    outline: 0;
}

/** End of HP Featured Videos */
/** HP What Our Clients Are Saying */
.hp-testi {
    overflow: hidden;
}

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

.hp-testi .testi-inner .testi-left {
    position: relative;
}

.hp-testi .testi-inner .testi-right {
    position: relative;
    z-index: 1;
    margin-top: 101px;
    margin-left: -30px;
    padding: 8.4rem 3rem 15rem 4.5rem;
}

.hp-testi .testi-inner .testi-right:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 45rem;
    max-height: 706px;
    background: transparent url(images/testi-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.05;
}

.hp-testi .testi-inner .testi-bottom {
    background: #cab994 url(images/testi-slider-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 66px 30px 71px;
    margin-top: -19rem;
    overflow: hidden;
    outline: none;
    user-select: none; /* supported by Chrome and Opera */
       -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
       -ms-user-select: none; /* Internet Explorer/Edge */
       -webkit-touch-callout:none;
}

.hp-testi .testi-wrap .slick-track * {
    outline: none;
}

.hp-testi .testi-inner .testi-bottom:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -73px;
    right: -75px;
    width: 703px;
    height: 572px;
    background: transparent url(images/testi-bg-quote-a.png) no-repeat;
    background-size: 100% 100%;
}

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

.hp-testi .testi-img img {
    display: block;
    width: 100%;
    max-width: 687px;
    margin-left: auto;
}

.hp-testi .testi-title strong {
    font-size: 90px;
    letter-spacing: 4.5px;
}

.hp-testi .testi-slider-wrap {
    position: relative;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

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

.hp-testi .testi-slider:not(.slick-initialized) + .testi-controls {
    display: none;
}

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

.hp-testi .testi-slider .testi-item .testi-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.56px;
    text-align: center;
    color: #222222;
}

.hp-testi .testi-slider .testi-item .testi-author {
    font-family: "GFS Didot", serif;
    font-size: 33px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.65px;
    text-transform: uppercase;
    text-align: center;
    color: #353535;
    margin-top: 43px;
}

.hp-testi .testi-slider .testi-item .testi-author a {
    color: inherit;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-testi .testi-slider .testi-item .testi-author a:hover {
    color: #cdbe9d;
}

.hp-testi .testi-slider .testi-item .testi-position {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    text-align: center;
    color: #9a8250;
    margin-top: 3px;
}

.hp-testi .testi-controls {
    position: absolute;
    top: 45px;
    left: -25px;
    right: -25px;
    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;
    pointer-events: none;
}

.hp-testi .testi-controls .testi-arrow {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-testi .testi-controls .testi-arrow:hover {
    color: #000;
}

.hp-testi .testi-controls .testi-arrow span {
    font-weight: 700;
}

.hp-testi .testi-read-more {
    width: 243px;
    height: 65px;
    border-color: rgba(122, 122, 122, 0.5);
    font-size: 13px;
    letter-spacing: 1.95px;
    color: #353535;
    margin: 49px auto 0;
    background: transparent !important;
}

.hp-testi .testi-read-more:after {
    width: 27.4rem;
    background: rgba(178, 174, 165, 0.8);
}

.hp-testi .testi-read-more:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
    color: #2d2d2d !important;
}

.hp-testi .testi-read-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4 ease-in-out;
}

.hp-testi .testi-read-more:hover:before {
    opacity: .2;
}

/** End of HP What Our Clients Are Saying */
/** HP Latest Blogs */
.hp-blog {
    position: relative;
    z-index: 1;
    padding-top: 149px;
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.hp-blog:before {
    content: '';
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 149px;
    background: transparent url(images/blog-bg-a.jpg) no-repeat;
    background-position: top center;
    background-size: 100% auto;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.11;
}

.hp-blog:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 149px;
    background: rgba(255, 255, 255, 0.7);
}

.hp-blog .blog-wrap {
    position: relative;
    transform: translateZ(0);
}

.hp-blog .blog-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    transform: translateZ(0);
}

.hp-blog .blog-inner .blog-left {
    width: calc(50% + 13px);
    background: #000;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 6.75rem 0 64px 9rem;
    transform: translateZ(0);
}

.hp-blog .blog-inner .blog-left:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url(images/blog-1.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.3;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.hp-blog .blog-inner .blog-right {
    width: calc(50% - 13px);
}

.hp-blog .blog-title strong {
    color: #fff;
}

.hp-blog .blog-content {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.52px;
    color: #dadada;
    width: 500px;
    max-width: 100%;
    margin-top: 38px;
}

.hp-blog .blog-view-more {
    position: relative;
    border-color: rgba(152, 152, 152, 0.5);
    color: #fff;
    width: 243px;
    font-size: 13px;
    letter-spacing: 1.95px;
    margin-top: 58px;
    transition: all .4s ease-in-out;
}

.hp-blog .blog-view-more:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
    color: #2d2d2d !important;
}

.hp-blog .blog-view-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4 ease-in-out;
}

.hp-blog .blog-view-more:hover:before {
    opacity: .2;
}

.hp-blog .blog-list {
    position: relative;
}

.hp-blog .blog-list .blog-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hp-blog .blog-list .blog-post:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.hp-blog .blog-list .blog-post .blog-post-info {
    width: 50%;
    padding: 0 15px 0 3.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hp-blog .blog-list .blog-post .blog-post-title {
    font-family: "GFS Didot", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.96px;
    color: #cdbe9d;
    padding-right: 3rem;
}

.hp-blog .blog-list .blog-post .blog-post-title a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-blog .blog-list .blog-post .blog-post-title a:hover {
    color: #222222;
}

.hp-blog .blog-list .blog-post .blog-post-content {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.39px;
    color: #615f5f;
    margin-top: 24px;
}

.hp-blog .blog-list .blog-post .blog-post-read-more {
    position: relative;
    width: 140px;
    height: 44px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-top: 28px;
    transition: all .4s ease-in-out;
}

.hp-blog .blog-list .blog-post .blog-post-read-more:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
    color: #2d2d2d !important;
}

.hp-blog .blog-list .blog-post .blog-post-read-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.hp-blog .blog-list .blog-post .blog-post-read-more:hover:before {
    opacity: .2;
}

.hp-blog .blog-list .blog-post .blog-post-img {
    width: 50%;
}

.hp-blog .blog-list .blog-post .blog-post-img a {
    display: block;
    outline: none;
    background: #cdbe9d;
}

.hp-blog .blog-list .blog-post .blog-post-img a:hover canvas {
    opacity: 0.75;
}

.hp-blog .blog-list .blog-post .blog-post-img canvas {
    display: block;
    width: 100%;
    height: 315px;
    background-color: #cdbe9d;
    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;
}

/** End of HP Latest Blogs */
/** HP We're Social */
.hp-ws {
    position: relative;
    z-index: 1;
    background: #ececec;
    padding: 64px 0 0;
    overflow: hidden;
}

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

.hp-ws:before {
    z-index: -2;
    background: transparent url(images/ws-bg-a.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.08;
}

.hp-ws:after {
    z-index: -1;
    background: rgba(255, 255, 255, 0.7);
}

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

.hp-ws .ws-title strong {
    font-size: 90px;
    letter-spacing: 4.5px;
}

.hp-ws .ws-list {
    margin-top: 55px;
}

.hp-ws .ws-list ul {
    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;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.hp-ws .ws-list ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 228px;
}

.hp-ws .ws-list ul li:nth-child(3n + 2) a {
    background: #414141;
}

.hp-ws .ws-list ul li:nth-child(3n + 3) a {
    background: #565656;
}

.hp-ws .ws-list 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;
    height: 200px;
    background: #222222;
    font-size: 22px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-ws .ws-list ul li a:before {
    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;
    width: 25px;
    height: 25px;
    text-align: center;
}

.icon-realtor::before {
    content: '';
    background: url(images/icon-realtor.png) no-repeat center center;
}

.hp-ws .ws-list ul li a {
    position: relative;
}

.hp-ws .ws-list ul li a:hover {
    /* background: #cdbe9d !important; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
}

.hp-ws .ws-list ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .4 ease-in-out;
}

.hp-ws .ws-list ul li a:hover:after {
    opacity: .2;
}

/** End of HP We're Social */
/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
/** Inner Page Banner */
.ip-banner {
    position: relative;
    width: 100%;
}

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

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background: #f9f7f7;
    background-position: center;
}

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

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

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

/** End of Inner Page Banner */
/** Inner Page Breadcrumbs */
#breadcrumbs {
    font-family: "GFS Didot", serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #222;
}

#breadcrumbs a {
    color: #cdbe9d;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#breadcrumbs a:hover {
    color: #565656;
}

/** End of Inner Page Breadcrumbs */
/* 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: 6.3% auto !important;
}

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

/*IDX*/

.IDX-wrapper-standard .select2-container a.select2-choice {
    min-height: 38px;
    top: -6px;
/*    border: 0;*/
}

.IDX-wrapper-standard .IDX-resultsAddress {
    margin: 0 0 10px;
    line-height: 1;
}

#select2-drop {
    z-index: 1;
}

.IDX-nav.IDX-navbar-nav,
.IDX-wrapper-standard .select2-container.select2-container-multi .select2-choices {
    margin-left: 0 !important;
    padding-left: 0;
}



/* 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-family: "GFS Didot", serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: #cdbe9d;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-family: "GFS Didot", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    color: #cdbe9d;
}

#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: #222;
}

/* Styles for #content .entry */
#content .entry {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.86;
    letter-spacing: 0.42px;
    color: #646464;
}

/** CF7 Response Output Layout Fixer */
div.wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

/** End of CF7 Response Output Layout Fixer */
/** Sidebar Quick Search */
.sb-qs {
    background: #000;
    padding: 15px;
}

.sb-qs .sb-qs-wrap {
    position: relative;
    z-index: 1;
}

.sb-qs .sb-qs-form {
    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;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    margin: 0 -5px;
}

.sb-qs .sb-qs-form .sb-qs-field {
    width: 50%;
    padding: 0 5px;
    margin-top: 10px;
}

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

.sb-qs .sb-qs-form .sb-qs-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    padding: 0 8px;
}

.sb-qs .sb-qs-form .sb-qs-control.control-select {
    background: transparent url(images/qs-select-arrow-a.png) no-repeat;
    background-position: center right 8px;
}

.sb-qs .sb-qs-form .sb-qs-submit,
.sb-qs .sb-qs-form .sb-qs-advanced {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.52px;
    color: #fff;
    background: #cdbe9d;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.sb-qs .sb-qs-form .sb-qs-submit {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    color: #2d2d2d;
}

.sb-qs-field.lg.submit {
    position: relative;
}

.sb-qs-field.lg.submit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
    pointer-events: none;
}

.sb-qs .sb-qs-form .sb-qs-submit:hover,
.sb-qs .sb-qs-form .sb-qs-advanced:hover {
    background: #222 !important;
}

.sb-qs .sb-qs-form .sb-qs-advanced {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #464646;
}

.sb-qs .sb-qs-form .sb-qs-advanced:hover {
    background: #222;
}

.sb-qs .sb-qs-form .sb-qs-control.control-select option {
    color: #000 !important;
}

.sb-qs-form .bootstrap-select.btn-group {
    width: 100%;
    border: 1px solid #fff;
}

.sb-qs-form .bootstrap-select.btn-group .dropdown-toggle {
    background: transparent;
    padding: 0 8px;
    height: 40px;
    outline: none;
    display: block;
    border: 0px !important;
}

.sb-qs-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 12px;
    font-weight: 400;
    color: #fff;

}

.sb-qs .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 200px !important;
}

.sb-qs .bootstrap-select.btn-group .dropdown-menu {
    top: 40px;
}

.sb-qs .bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    width: 100%;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sb-qs .bootstrap-select.btn-group .dropdown-menu li small.text-muted {
    position: absolute;
    right: 38px;
    top: 6px;
}


/** End of Sidebar Quick Search */
/** Sidebar What Our Clients Are Saying */
.sb-testi {
    margin-top: 50px;
}

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

.sb-testi .sb-testi-title {
    position: relative;
    font-family: "GFS Didot", serif;
    text-transform: uppercase;
    text-align: center;
}

.sb-testi .sb-testi-title small {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #cdbe9d;
}

.sb-testi .sb-testi-title strong {
    display: block;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #494949;
}

.sb-testi .sb-testi-slider-wrap {
    position: relative;
    overflow: hidden;
}

.sb-testi .sb-testi-slider {
    margin-top: 15px;
}

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

.sb-testi .sb-testi-slider .sb-testi-slide {
    position: relative;
}

.sb-testi .sb-testi-slider .sb-testi-item {
    display: block;
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-content {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.34px;
    color: #494949;
    max-height: 135px;
    overflow: hidden;
    position: relative;
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-content:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-content p {
    margin: 0 !important;
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-author {
    font-family: "GFS Didot", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.56px;
    color: #cdbe9d;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-author a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-author a:hover {
    color: #000;
}

.sb-testi .sb-testi-slider .sb-testi-item .sb-testi-position {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.36px;
    color: #494949;
    text-align: center;
    margin-top: 5px;
    text-transform: uppercase;
}

.sb-testi .sb-testi-read-more {
    position: relative;
    width: 185px;
    height: 40px;
    margin: 20px auto 0;
    font-size: 13px;
}

.sb-testi .sb-testi-read-more:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    border: none;
    color: #2d2d2d !important;
}

.sb-testi .sb-testi-read-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url(images/website-logo-a.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.sb-testi .sb-testi-read-more:hover:before {
    opacity: .2;
}

/** End of Sidebar What Our Clients Are Saying */
/** SB Call To Action */
.sb-cta {
    margin-top: 50px;
}

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

.sb-cta .sb-cta-list .sb-cta-col {
    position: relative;
    margin-top: 30px;
}

.sb-cta .sb-cta-list .sb-cta-item {
    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: 400px;
    max-width: 100%;
    height: 62px;
    text-decoration: none;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-cta .sb-cta-list .sb-cta-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #494949;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-cta .sb-cta-list .sb-cta-item .sb-cta-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
    color: #494949;
    -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: #cdbe9d; */
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;

}

.sb-cta .sb-cta-list .sb-cta-item:hover div {
    color: #2d2d2d !important;
}

.sb-cta .sb-cta-list .sb-cta-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-in-out;
}

.sb-cta .sb-cta-list .sb-cta-item:hover:before {
    opacity: .2;
}


.sb-cta .sb-cta-list .sb-cta-item:hover:after {
    -webkit-transform: scale(0.9356, 1.258);
    transform: scale(0.9356, 1.258);
}

.sb-cta .sb-cta-list .sb-cta-item:hover .sb-cta-name {
    color: #fff;
}

/** End of SB Call To Action */


.iframe-holder iframe {
    background: #000000;
}

.ip-fv-item {
    display: block;
    position: relative;
    max-width: 698px;
    margin: 15px auto;
}

.ip-fv-img {}

.ip-fv-img canvas {
    display: block;
    width: 100%;
    background-color: #cccccc;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ip-fv-label {
    position: absolute;
    top: 0;
    left: 0;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.98px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.64);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-fv-label:before {
    content: '';
    display: block;
    width: 77px;
    height: 77px;
    background: transparent url(images/fv-item-play-button-a.png) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}


/*PAGES*/

.page-id-61 .agent-contact-lang.agent-contact-detail {
    display: none;
}


/*IP BUTTON*/

.ip-btn-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;
    padding: 20px 0;
    overflow: hidden;
}

.ip-container #content .entry .ip-btn:after {
    top: 50%;
    left: calc(100% - 12px) !important;
    width: 100vw;
}


/*CUSTOM FORM*/

/*RELOCATION*/
.cc-form input {
    height: 28px;
    padding: 0 10px;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 10px;
}

.cc-form-container label {
    font-weight: 700;
    margin-bottom: 5px
}

.cc-form-container select,
.cc-form-container input,
.cc-form-container input:focus,
.cc-form-container select:focus,
.cc-form-container textarea:focus {
    outline: none;
}

.cc-form-container textarea {
    border-radius: 0;
}

.cc-form-col-9 textarea#comments {
    width: 100%;
    resize: none;
    height: 160px;
}

.cc-form-col-2 input#your-email,
.cc-form-col-2 input#phone,
.cc-form-col-3 input#phone,
.cc-form.cc-form-col-div3 input#zip,
.cc-form-cl-1 select#priceRange,
.cc-form-cl-7 select#pricingDate,
.cc-form-cl-8 select#pricingDes {
    width: 48.70%;
}

.cc-form-col-1,
.cc-form-col-2,
.cc-form-col-3,
.cc-form-col-4,
.cc-form-col-5,
.cc-form-col-6 {
    width: 100%;
    margin-bottom: 10px;
}


.cc-form-col-6 span.cc-form-title-sub {
    font-weight: 700;
    font-size: 12px;
}


.cc-form-cl-1,
.cc-form-cl-7,
.cc-form-cl-8 {
    margin-bottom: 10px;
}

.cc-form-container {
    width: 100%;
    max-width: 624px;
}

.cc-form-col-1 span.wpcf7-form-control-wrap.your-name,
.cc-form.cc-form-col-div2 span.wpcf7-form-control-wrap.city {
    float: left;
    width: 48.70%;
}

.cc-form-col-1 span.wpcf7-form-control-wrap.last-name,
.cc-form.cc-form-col-div2 span.wpcf7-form-control-wrap.state {
    float: right;
    width: 48.70%;
}


.cc-form-col-5 span.wpcf7-list-item,
.cc-form-col-6 span {
    display: block;
}

.page-id-761 div.wpcf7-response-output {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 624px;
}



/* WHY CHOOSE US */

.page-id-77 .cc-form.cc-form-col-2 label,
.page-id-77 .cc-form.cc-form-col-3 label {
    display: block;
}

.page-id-77 .cc-form.cc-form-col-2 input#your-email {
    width: 100% !important;
}

.page-id-77 .cc-form.cc-form-col-3 input#phone {
    width: 100% !important;
}

.page-id-77 .cc-form.cc-form-col-2 {
    width: 48.70%;
    float: left;
}

.page-id-77 .cc-form.cc-form-col-3 {
    float: right;
    width: 48.70%;
}


.page-id-77 .cc-form-col-5 {
    width: 33.33%;
    float: left;
}

.page-id-77 .cc-form-col label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
}

.cc-form-col {
    width: 48.70%;
    float: left;
}

.cc-form-col.fl-r {
    float: right;
}

.cc-form-col select {
    width: 100%;
    height: 29px;
}

[class*="cc-form-divider-"] {
    margin-bottom: 10px;
}

[class*="cc-form-divider-"] label {
    display: block;
}

[class*="cc-form-divider-"] input {
    width: 100%;
    height: 29px;
}

.cc-form-div-submit input#submit {
    height: 29px;
}

.cc-form-container textarea,
.cc-form-container select,
.cc-form-container input {
    border: 1px solid #ccc;
    padding: 0 5px;
}

.cc-form-divider-7 textarea,
.cc-form-divider-8 textarea {
    width: 100%;
    height: 160px;
    resize: none;
    padding: 5px 5px;
}

.cc-form-sub-div-1,
.cc-form-sub-div-2,
.cc-form-sub-div-3 {
    display: inline-block;
    vertical-align: top;
    width: 56px;
    height: 29px;
}

.cc-form-div-sub-1 {
    width: 50%;
    float: left;
}

.cc-form-div-sub-2 {
    float: right;
    width: 50%;
}


.cc-form-div-sub-1 label,
.cc-form-div-sub-2 label {
    font-size: 12px;
}

span.cc-form-sub-text {
    display: block;
    font-size: 10px;
    text-align: center;
}

.cc-form-div-sub-1 input#prefMeeting,
.cc-form-div-sub-1 input#sprefMeeting {
    width: 158px;
    height: 29px;
    padding: 0 5px;
}

.cc-form-sub-div-1 input#firstHour,
.cc-form-sub-div-2 input#firstMin,
.cc-form-sub-div-3 select#firstTime,
.cc-form-sub-div-1 input#secHour,
.cc-form-sub-div-2 input#secMin,
.cc-form-sub-div-3 select#secTime {
    width: 100%;
    height: 29px;
    padding: 0 3px;

}

.cc-form-divider-10 {
    margin-bottom: 25px;
}


.cc-form-divider-11 select#secSched {
    height: 29px;
    width: 48.70%;
    padding: 0 5px;
}


.page-id-77 div.wpcf7-response-output {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 624px;
}

.aicuscf-join-sarah {
    max-width: 600px;
}

.aicuscf-join-sarah .aidefcf-title {
    margin-bottom: 0;
}

.aicuscf-join-sarah form {
    margin-top: 0 !important;
}

.aicuscf-join-sarah .aidefcf-title small {
    display: block;
    color: #eb122f;
    margin-top: 20px;
}

.aicuscf-join-sarah .ai-contact-wrap input[type="submit"] {
    background: transparent !important;
    height: 40px;
    border: 1px solid rgba(152, 152, 152, 0.5) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 2.1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    outline: none !important;
    color: #cdbe9d !important;
}

.aicuscf-join-sarah .ai-contact-wrap input[type="submit"]:hover {
    background: #cdbe9d !important;
    border-color: #cdbe9d !important;
    color: #fff !important;
}

.aicuscf-join-sarah input[type="text"],
.aicuscf-join-sarah input[type="tel"],
.aicuscf-join-sarah input[type="email"],
.aicuscf-join-sarah textarea {
    border: 1px solid rgba(152, 152, 152, 0.5) !important
}

.aicuscf-join-sarah label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #cdbe9d;
    margin-top: 20px;
}

.aicuscf-join-sarah .aidefcf-cl2 span span {
    display: block;
    width: 100%;
    float: none;
}

.hp-wcu .wcu-learn-more:hover {
    /* text-shadow: 1px 1px 1px #767575; */
    color: #2d2d2d !important;
}


.global-button:hover {
    /*  text-shadow: 1px 1px 1px #767575; */

}

.hp-ws .ws-list ul li a {
    text-shadow: 1px 1px 1px #767575;
}

.site-menu #menu-item-93 > ul {
    column-count: 2;
    left: calc(50% - 175px);
    min-width: 350px;
    column-gap: 1px;
}

.site-menu #menu-item-93 > ul:after {
    content: '';
    position: absolute;
    top: 13px;
    left: calc(50% - 5px);
    border-color: transparent transparent #cdbe9d transparent;
    border-style: solid;
    border-width: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-menu #menu-item-93 ul li:nth-child(1):after {
    display: none;
}

.header.active .site-menu #menu-item-93 > ul:after {
    top: 16px;
}

.concierge-content {
    font-size: 0;
}

.concierge-content h2,
.lws-content h2 {
    font-size: 24px !important;
    text-align: center;
    max-width: 70%;
    margin: 0 auto !important;
    line-height: 1.3;
}

ul.concierge-content-list,
ul.lws-content-list {
    margin-left: 0 !important;
}

ul.concierge-content-list li,
ul.lws-content-list li {
    position: relative;
    font-size: 17px;
    /*  font-weight: 700; */
    width: 49%;
    display: inline-block;
    vertical-align: top;
    padding: 10px 15px 10px 60px;
    text-align: justify;
}

ul.lws-content-list li span {
    font-size: 14px;
    font-weight: 400;
    display: block;
}

ul.concierge-content-list li::after,
ul.lws-content-list li::after {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('images/check.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.lws-cf-wrapper h3 {
    text-align: center;
    text-transform: uppercase;
}

.lws-cf-wrapper .wpcf7 {
    max-width: 600px;
    margin: 0 auto;
}

.bg-cf-wrapper {
    font-size: 0;
}

.bg-cf-wrapper .bg-input-container {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    padding-right: 10px;
    margin-bottom: 15px;
}

.bg-cf-wrapper label {
    font-size: 14px;
    text-transform: uppercase;
}

.bg-cf-wrapper .bg-input-container input[type=text],
.bg-cf-wrapper .bg-input-container input[type=email],
.bg-cf-wrapper .bg-input-container input[type=tel] {
    width: 100%;
    display: block;
    font-size: 14px;
    border: none;
    outline: none;
    border-bottom: 1px solid #000;
}

.bg-cf-wrapper .bg-input-container.contact-receive-options {
    width: 100%;
}

.bg-cf-wrapper .bg-input-container.contact-receive-options span.wpcf7-list-item {
    margin-bottom: 10px;
}

.bg-cf-wrapper .contact-submit {
    position: relative;
    /*
    width: 200px;
    height: 50px;
*/
}

.bg-cf-wrapper .contact-submit button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid rgba(152, 152, 152, 0.5);
    font-size: 15px;
}

.bg-cf-wrapper .contact-submit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
    pointer-events: none;
    display: none;
}

.bg-cf-wrapper .contact-submit input {
    position: relative;
    font-size: 18px;
    width: 100%;
    height: 50px;
    border: none;
    background: #CDBE9D;
    outline: none;
    color: #ffffff;
}

.bg-cf-wrapper .contact-submit:hover input {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9));
    color: #2d2d2d;
}


.bg-cf-wrapper span.wpcf7-not-valid-tip {
    font-size: 11px;
    width: 170px;
    top: -29px !important;
}

.cu-title {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
}

.cu-field-wrap.cu-field-half {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.cu-field-wrap label {
    text-transform: uppercase;
    display: block;
}

.cu-field-wrap input,
.cu-field-wrap textarea {
    border: none !important;
    border-bottom: 1px solid #000 !important;
    outline: none;
    margin-bottom: 20px !important;
    width: 100%;
}

.cu-field-wrap.cu-submit {
    position: relative;
    /*
    width: 200px;
    height: 82px;
*/
}

.cu-field-wrap.cu-submit button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid rgba(152, 152, 152, 0.5);
    font-size: 15px;
}

.cu-field-wrap.cu-submit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 100%;
    background-image: url('images/website-logo-a.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: .2;
    pointer-events: none;
    display: none;
}

.cu-field-wrap.cu-submit input {
    position: relative;
    font-size: 18px;
    width: 100%;
    height: 50px;
    border: none !important;
    background: #CDBE9D !important;
    outline: none;
    color: #ffffff !important;
}

.cu-field-wrap.cu-submit input:hover {
    background: linear-gradient(90deg, rgba(187, 170, 127, .9), rgba(230, 222, 203, .9), rgba(230, 222, 203, .9), rgba(187, 170, 127, .9)) !important;
    color: #2d2d2d !important;
    opacity: .6;
}

.lws-cf-wrapper .cu-field-wrap.cu-submit {
    height: 50px;
}

.concierge-content h3 {
    font-size: 24px !important;
    display: block;
    text-align: center;
}

#post-59 [class*="aidefcf-wrapper-contact-us"] .wpcf7 {
    max-width: 100%;
}

#post-77 .cu-field-wrap textarea {
    max-height: 170px;
    overflow: auto;
}

.hp-fv .fv-view-more:hover {
    text-shadow: none !important;
    color: #2d2d2d !important;
}

.sb-qs .sb-qs-form .sb-qs-submit:hover {
    color: #fff !important;
}

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

/* Addiotional Css Updates */
.ip-min img {
    min-height: 225px;
    object-fit: cover;
}

.page-id-59 #content p {
    text-align: justify;
}

.hu-b-form > h3 {
    margin-top: -9px !important;
}

.hu-b-form .cu-field-wrap textarea {
    height: 75px;
}

#content .hu-title {
    line-height: 1.3;
}

.hu-wrap .mt-0 {
    margin-top: 0;
}

.single-listing #content .property-description .property-add-type {
    margin-left: 2%;
}

.ip-container ul.list li .prop-det .view-details {
    background: #cdbe9d;
}

.single-listing #content .property-description .prop-cta a:hover {
    background: #cdbe9d;
}

.ip-img-float {
    display: block;
}

.ip-img-float.img-left {
    float: left;
    margin-right: 25px;
}

.ip-img-float {
    display: block;
}

.ip-img-float.img-right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
}

.ip-row-images {
    box-sizing: border-box;
    font-size: 0;
    letter-spacing: normal;
    text-align: center;
}

.ip-img-item {
    display: inline-block;
    width: 20%;
    vertical-align: middle;
}

#content h2,
aside h2 {
    margin: 0 0 .75em;
    line-height: 1;
}

/**Add to Any**/
.addtoany_content {
    position: relative;
    top: 10px;
}

/** Testimonials Widget custom css */
.custom-widget-testi .sb-testi-slider .sb-testi-item .sb-testi-content {
    max-height: none;
    text-align: center;
}

.custom-widget-testi .sb-testi-slider .sb-testi-item .sb-testi-content:before {
    display: none;
}

/*Listings Result*/
#content .property-description .prop-cta a {
    line-height: 1;
}

#content .property-description .prop-cta a:before {
    content: "";
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle;
}

#content .property-description .prop-cta a:after {
    display: none;
}

#content .listing-details-wrap .photo-slideshow .slick-prev,
#content .listing-details-wrap .photo-slideshow .slick-next {
    margin-top: 0;
    top: calc(50% - 56.5px);
    width: auto !important;
    height: auto !important;
}

ul.list {
    float: none;
}

#cityzip {
    display: none;
}

#select2-drop-mask {
    z-index: 1 !important;
}

html.firefox-true .footer .footer-git:before,
html.msedge-true .footer .footer-git:before {
    background-attachment: scroll;
}


#IDX-userLocation {
    width: 120px;
}


div#IDX-resultsContainer div#s2id_IDX-pagination-pagers-header {
    border: none;
}


a.readmore.aios-initial-setup-dead-link{
    display: none;
}
/*.page-id-61 .ihf-grid-result.col-xs-12 {
    width: 50%;
}*/

.agent-description.render-all-description a {
    color: #000;
    /* font-weight: bold; */
    text-decoration: underline;
}

.agent-alphabet-link{
display: none;
}

#ihf-main-container ul {
    margin-left: 0;
}
    
    #ihf-main-container .chosen-container .chosen-results {
        padding: 0 !important;
    }

.ihf-listing-detail .ihf-detail-tab-content #ihf-detail-features-tab > .row.mt-10 {
    margin: 0;
}