/*
Theme Name: Julie Jenkins
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.4
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
 *
 *******************************************************/

:root {
    --font-color-default: #000;
    --primary: #000;
    --secondary: #c9c097;
}

/* Sub Menu */
.main-navigation li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 21px;
}

.main-navigation li>a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 2.1px;
    color: #424242;
    text-transform: uppercase;
    position: relative;
}

.main-navigation>li>a:before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    width: 100%;
    height: 3px;
    background: #9c8a62;
    background: -webkit-linear-gradient(left, #9c8a62 0%, #dcc99a 34%, #9c8a62 53%, #cfbc8c 84%, #9c8a62 100%);
    background: -webkit-gradient(linear, left top, right top, from(#9c8a62), color-stop(34%, #dcc99a), color-stop(53%, #9c8a62), color-stop(84%, #cfbc8c), to(#9c8a62));
    background: -o-linear-gradient(left, #9c8a62 0%, #dcc99a 34%, #9c8a62 53%, #cfbc8c 84%, #9c8a62 100%);
    background: linear-gradient(to right, #9c8a62 0%, #dcc99a 34%, #9c8a62 53%, #cfbc8c 84%, #9c8a62 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9c8a62', endColorstr='#9c8a62', GradientType=1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.main-navigation>li>a:hover:before {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    width: 100%;
}

.main-navigation .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 195px;
    left: 50%;
    -webkit-transform: translate(-50%, 20px);
    -ms-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px);
    text-align: center;
    padding-top: 38px !important;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.main-navigation .sub-menu li {
    position: relative;
    display: block;
    background: #c9c097;
    max-width: 100%;
    margin: 0 auto 1px;
    padding: 0 !important;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.main-navigation .sub-menu li:hover {
    background: #c0d5df;
    color: #fff;
    text-decoration: none;
}

.main-navigation .sub-menu li a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
    font-size: 15px;
    letter-spacing: 0.3px;
}


.main-navigation li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
}


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

.main-navigation .sub-menu .sub-menu li:hover {
    background: #633193;
}

.main-navigation .sub-menu .sub-menu .sub-menu {
    margin-left: 100% !important;
    ;
    top: 0 !important;
    left: 0 !important;
    padding: 0 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    min-width: 160px;
}


#main-navigation {
    display: none;
}

.navigation .main-navigation:nth-of-type(1)>li:nth-child(3) .sub-menu {
    padding-top: 18px;
}


/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */

body {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    background: #FFF;
    color: #000000;
    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; */
}

a,
a:hover,
a:visited,
a:focus,
textarea {
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

.slick-track * {
    outline: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

#main-wrapper {
    overflow: hidden;
}


/*FIXED HEADER*/

#fixed-header {
    position: fixed;
    z-index: 1029;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#fixed-header.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#fixed-header.active .header-wrapper {
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}


#fixed-header.active .navigation .main-navigation:nth-of-type(1) {
    margin-top: 46px;
}

#fixed-header.active .navigation .main-navigation:nth-of-type(2) {
    margin-top: 45px;
}

#fixed-header.active .navigation {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#fixed-header.active .main-navigation .sub-menu {
    padding-top: 41px !important;
}

#fixed-header.active .logo {
    margin-bottom: 0;
}

/* HEADER */

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: 0.4s all ease-out;
    -o-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100px;
    background: rgba(255, 255, 255, .80);
    margin: 56px 0;
}

.navigation {
    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;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.navigation .main-navigation:nth-of-type(1) {
    width: 480px;
    margin-top: 9px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navigation .main-navigation:nth-of-type(1)>li {
    padding: 0 17px;
}

.navigation .main-navigation:nth-of-type(1)>li:first-child {
    padding-left: 0;
}

.navigation .main-navigation:nth-of-type(1)>li:last-child {
    padding-right: 0;
}

.navigation .main-navigation:nth-of-type(2) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 471px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 9px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.navigation .main-navigation:nth-of-type(2)>li {
    padding: 0 17px;
}

.navigation .main-navigation:nth-of-type(2)>li:first-child {
    padding-left: 0;
}

.navigation .main-navigation:nth-of-type(2)>li:last-child {
    padding-right: 0;
}


/*Logo*/

.logo {
    background: #fff;
    padding: 4.5px 27.5px;
    border: 9px solid #c0d5df;
    max-height: 145px;
    max-width: 312px;
    margin: 0 auto 8px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.logo img {
    max-width: 239px;
}


/*SLIDESHOW*/

.slideshow-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::before,
.slideshow-container .cycloneslider-slide:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, .20);
    pointer-events: none;
    z-index: 1;
}

.slideshow-wrapper {
    position: relative;
}

/*Slide Tagline*/

.ss-container {
    position: absolute;
    top: 37.1%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.slide-tagline {
    display: block;
    margin-bottom: 10px;
}

.slide-tagline h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 10.4px;
    color: #fff;
    text-transform: uppercase;
}

.slide-tagline h2 span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 70px;
    line-height: 1;
    letter-spacing: 7px;
    color: #fff;
    display: block;
    margin-top: 15px;
}


/*SLIDE SMI*/

.slide-smi {
    font-size: 0;
    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;
}

.slide-smi a {
    font-size: 20px;
    margin: 0 7.5px;
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .60);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.slide-smi a:hover {
    background: #c0d5df;
    border-color: #c0d5df;
}

/* SLIDE BROKERAGE */
.slide-brokerage-main {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
    background-color: rgba(255, 255, 255, .80);
    padding: 15px;
    border-radius: 45px;
    max-width: 200px;
}

.slide-brokerage-main img {
    width: 100%;
    margin: auto;
}

/*CTA SECTION*/

.cta-container {
    position: absolute;
    bottom: -250px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: 0;

}

.cta-item {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}

.cta-item a {
    display: block;
    position: relative;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.cta-item a:hover {
    -webkit-transform: scale(0.863);
    -ms-transform: scale(0.863);
    transform: scale(0.863);
}

.cta-item a:hover .cta-title h2 span {
    font-size: 25px;
    letter-spacing: 0.5px;
}

.cta-outer {
    background: #c0d5df;
    width: 100%;
    min-height: 360px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.cta-inner {
    min-height: 333px;
    background: #fff;
    border-radius: 50%;
    width: 100%;
    max-width: 333px;
    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-shadow: 0 1px 14px rgba(0, 0, 0, .20);
    box-shadow: 0 1px 14px rgba(0, 0, 0, .20);
}


.cta-gradient {
    min-height: 318px;
    width: 100%;
    max-width: 318px;
    background: #9c8a62;
    background: -webkit-linear-gradient(left, #9c8a62 0%, #dcc99a 34%, #9c8a62 53%, #cfbc8c 84%, #9c8a62 100%);
    background: -webkit-gradient(linear, left top, right top, from(#9c8a62), color-stop(34%, #dcc99a), color-stop(53%, #9c8a62), color-stop(84%, #cfbc8c), to(#9c8a62));
    background: -o-linear-gradient(left, #9c8a62 0%, #dcc99a 34%, #9c8a62 53%, #cfbc8c 84%, #9c8a62 100%);
    background: linear-gradient(to right, #9c8a62 0%, #dcc99a 34%, #9c8a62 53%, #cfbc8c 84%, #9c8a62 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9c8a62', endColorstr='#9c8a62', GradientType=1);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.cta-gradient:before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    max-width: 312px;
    max-height: 312px;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 0;
    margin: 0 auto;
}

.cta-title {
    position: relative;
    display: block;
}

.cta-title h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 9.6px;
    text-transform: uppercase;
    color: #a49269;
}



.cta-title h2 span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #525252;
    display: block;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}



/*FEATURED PROPERTIES*/

.fp-wrapper {
    display: block;
    position: relative;
    padding-top: 286px;
    font-size: 0;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.fp-main {
    display: block;
    position: relative;
}

.fp-img-wrap {
    display: block;
    position: relative;
}

.fp-item {
    position: relative;
    display: block;
    vertical-align: middle;
    width: calc(100% / 3);
    padding: 0 1.5px;
    height: 623px;
}


.fp-item a {
    display: block;
    position: relative;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    pointer-events: all;
}


.fp-slide {
    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 -1.5px;
}

.fp-img {
    position: relative;
    display: block;
}

.fp-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/fp-bg-transparent.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    opacity: 0;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    pointer-events: none;
    z-index: 1;
}



.fp-img canvas {
    display: block;
    width: 100%;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
    z-index: 1;
}

.fp-btn 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;
    width: 193px;
    height: 63px;
    background: #c9c097;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.4px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.fp-info-wrap {
    display: block;
    text-align: center;
    background: transparent;
    padding: 26px 0 23px;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-price {
    padding-bottom: 50px;
    position: relative;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-price:before {
    position: absolute;
    content: '';
    bottom: 25px;
    left: 0;
    right: 0;
    width: 47px;
    height: 3px;
    background: #c0d5df;
    margin: 0 auto;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-price span {
    color: #a49269;
    font-size: 30px;
    line-height: 24px;
    letter-spacing: 0.6px;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-address span {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #525252;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-details span {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #525252;
    padding: 0 10px;
    position: relative;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-details span:first-child {
    padding-left: 0;
}

.fp-details span:last-child {
    padding-right: 0;
}

.fp-details span:before {
    position: absolute;
    content: '';
    top: 4px;
    right: 0;
    width: 1px;
    height: 13px;
    background: #525252;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.fp-details span:last-child:before {
    display: none;
}

.fp-slide .slick-slide {
    padding-top: 50px;
    padding-bottom: 26px;
}


/*hovers*/


.fp-item a:hover {
    -webkit-transform: translateY(-49px);
    -ms-transform: translateY(-49px);
    transform: translateY(-49px);
    z-index: 5;
    position: relative;
    background: #c0d5df;
}

.fp-item a:hover .fp-info-wrap {
    padding: 48px 0;
}

.fp-item a:hover .fp-price span,
.fp-item a:hover .fp-address span,
.fp-item a:hover .fp-details span {
    color: #fff;
}

.fp-item a:hover .fp-price:before,
.fp-item a:hover .fp-details span:before {
    background: #fff;
}

.fp-item a:hover .fp-img:before {
    opacity: 1;
}

.fp-item a:hover .fp-img canvas {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.fp-item a:hover .fp-btn {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}



/*FEATURED COMMUNITIES*/

.fc-wrapper {
    position: relative;
    padding: 90px 0 83px;
}

.fc-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/fc-bg.jpg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
}


.fc-item {
    display: block;
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}


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

.fc-item a:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 14px solid #c0d5df;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fc-img canvas {
    display: block;
    width: 100%;
    background-image: url(images/communities-marble.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fc-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.fc-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/fc-border.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fc-img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, .50);
    pointer-events: none;
    border-radius: 50%;
}



.fc-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    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;
    bottom: 0;
}

.fc-title-main {
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}



.fc-title-main h2 {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #525252;
    font-weight: 600;
}

.fc-title span {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.48px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.fc-btn {
    padding-top: 16px;
    display: block;
    position: relative;
}

.fc-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 271px;
    height: 62px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.4px;
    color: #2f2f2f;
    text-transform: uppercase;
    position: relative;
    z-index: 7;
    border: 2px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

/*hovers*/

.fc-item a:hover .fc-img:after {
    background: rgba(192, 213, 223, .77);
}

.fc-item a:hover .fc-img canvas {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.fc-item a:hover:before {
    opacity: 1;
    visibility: visible;
}

.fc-btn a:hover {
    background: #c9c097;
    color: #fff;
    border: none;
}


/*QUICKSEARCH*/

.qs-title {
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.qs-wrapper {
    display: block;
    padding-top: 115px;
}

.qs-title h2.qs-title-main {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #525252;
    font-weight: 600;
}

.qs-form-main,
.qs-form {
    font-size: 0;
    display: block;
    position: relative;
}

.qs-long,
.qs-long-2,
.qs-short,
.qs-input-short,
.qs-search,
.qs-btn-adv {
    display: inline-block;
    vertical-align: middle;
}

.qs-long {
    width: 192px;
    margin-right: 5px;
}

.qs-long-2 {
    width: 189px;
    margin-right: 5px;
}

.qs-long select.long,
.qs-long-2 select.long {
    width: 100%;
    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 10px;
    background: #fff url(images/qs-select-arrow.png) no-repeat scroll right 10px center;
}

.qs-long-2 select.long {
    background: transparent;
}


.qs-short {
    width: 104px;
    margin-right: 5px;
}

.qs-short select.short {
    width: 100%;
    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 10px;
    background: #fff url(images/qs-select-arrow.png) no-repeat scroll right 10px center;
}

.qs-input-short {
    width: 97px;
    margin-right: 5px;
}

.qs-input-short.fl-r {
    margin-right: 7px;
}

.qs-input-short input#minprice,
.qs-input-short input#maxprice {
    width: 100%;
    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 10px;
}

.qs-search {
    width: 159px;
    margin-right: 5px;
}


.qs-search input#qs-sub {
    border: none;
    background: #c0d5df;
    width: 100%;
    height: 44px;
    font-size: 16px;
    line-height: 46px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .20);
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.qs-search input#qs-sub:hover {
    background: #97c3d8;
}


.qs-btn-adv {
    width: 159px;
}

.qs-btn-adv a {
    display: block;
    width: 100%;
    line-height: 48px;
    text-align: center;
    height: 44px;
    background: #c9c097;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}


.qs-btn-adv a:hover {
    background: #9d8b63;
}


/*HP WELCOME*/

.welc-wrapper {
    display: block;
    padding: 131px 0 122px;
    position: relative;

}


.welc-main-wrap {
    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;
    padding: 29px 0 40px;
}


.welc-content-main {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 48.5%;
    padding-left: 67px;
    padding-right: 62px;
}

.welc-logo {
    margin-bottom: 23px;
    margin-top: -2px;
}

.welc-content p {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
    color: #636363;
    margin-bottom: 25px;
}

.welc-border {
    display: block;
    padding: 22px 22px;
    border: 5px solid;
    -webkit-border-image: -webkit-linear-gradient(10deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(10deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(80deg, #9c8a62, #dcc99a, #9c8a62) 1;
}

.welc-agent-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 51.5%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.welc-agent-photo:before {
    position: absolute;
    content: '';
    top: -29px;
    left: 0;
    width: 67px;
    height: 346px;
    background: #c0d5df;
    z-index: -1;
}

.welc-agent-photo:after {
    position: absolute;
    content: '';
    bottom: -40px;
    right: 0;
    width: 330px;
    height: 132px;
    background: #c0d5df;
    z-index: -1;
}


.welc-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 159px;
    height: 62px;
    border: 2px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.4px;
    color: #2f2f2f;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.welc-btn a:hover {
    background: #c9c097;
    color: #fff;
    -webkit-border-image: none;
    -o-border-image: none;
    border-image: none;
    border: none;
}


.welc-btn {
    padding-top: 25px;
}

/*FOOTER*/

.footer-main-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;
    position: relative;
    z-index: 1;
}

.footer-left-wrap {
    width: 40%;
}

.footer-right-wrap {
    width: 60%;
    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-left: 95px;
}


/*FOOTER LOGO*/

.footer-logo {
    margin-bottom: 30px;
    margin-top: 5px;
}

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

/*FOOTER CONTACTS*/

.footer-contacts {
    margin-bottom: 16x;
}

.footer-contacts span {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.8px;
    color: #5f5f5f;
    display: block;
    text-align: center;
    margin-bottom: 12px;
}

.footer-contacts span.f-phone {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 24px;
    margin-bottom: 15px;
}

.footer-contacts span a {
    color: #5f5f5f;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.footer-contacts span a:hover {
    color: #9d8b63;
}

.footer-contacts-wrap {
    text-align: center;
    display: block;
    padding-bottom: 59px;
    border-bottom: 1px solid #d3d3d3;
}

.footer-contacts span em.ai-font-phone {
    font-size: 14px;
    color: #9d8b63;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.footer-contacts span em.ai-font-envelope-f {
    font-size: 9px;
    color: #9d8b63;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.footer-contacts span em.ai-font-location-c {
    font-size: 18px;
    color: #9d8b63;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}


/*FOOTER SMI*/

.footer-smi {
    font-size: 0;
    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;
}

.footer-smi a {
    font-size: 20px;
    margin: 0 7.5px;
    color: #9d8b63;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(157, 139, 99, .60);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.footer-smi a:hover {
    border-color: #9d8b63;
    background: #9d8b63;
    color: #fff;
}

/*FOOTER NAV*/

.footer-nav {
    display: block;
    font-size: 0;
}

.footer-nav li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.footer-nav li:first-child {
    padding-left: 0;
}

.footer-nav li:last-child {
    padding-right: 0;
}

.footer-nav li a {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1.3px;
    color: #525252;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.footer-nav li a:hover {
    color: #9d8b63;
}

/*FOOTER COPYRIGHT*/

.footer-copyright {
    padding-top: 40px;
}

.copyright {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1.3px;
    color: #797979;
    padding: 15px 0 11px;
}

.copyright a {
    -webkit-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    transition: 0.3s all ease-in;
}

.copyright a:hover {
    color: #9d8b63;
}

.copyright span {
    text-transform: uppercase;

}


.footer-icons span {
    font-size: 27px;
    display: inline-block;
    vertical-align: middle;
    color: #797979;
    margin: 0 1px;
}


/*FOOTER FORM*/

.fform-full input#fullName {
    width: 100%;
    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 13px;
}

.fform-col {
    width: calc(50% - 3.5px);
    float: left;
}

.fform-col.fl-r {
    float: right;
}

.fform-col input#phone {
    width: 100%;
    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 13px;
}

.fform-col input#email {
    width: 100%;
    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 13px;
}

.fform-full-lg {
    position: relative;
}

.fform-full-lg textarea#message {
    width: 100%;
    height: 132px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    resize: none;
    padding: 8px 13px;
}

.fform-full-lg input#submit {
    position: absolute;
    bottom: 15px;
    right: 11px;
    font-size: 0;
    border: none;
    width: 33px;
    height: 35px;
    background: url(images/git-send-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.fform-full-lg input#submit:hover {
    opacity: 0.75;
}

.footer-form-main {
    width: 100%;
    max-width: 513px;
    margin: 0 auto;
    border: 5px solid;
    -webkit-border-image: -webkit-linear-gradient(10deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(10deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(80deg, #9c8a62, #dcc99a, #9c8a62) 1;
    position: relative;
    -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, .10);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, .10);
}

.footer-form {
    width: 100%;
    max-width: 327px;
    margin: 0 auto;
}

.fform-full,
.fform-row {
    margin-bottom: 7px;
}

.fform-title {
    text-align: center;
    display: block;
    margin-bottom: 37px;
}

.fform-title span {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 600;
    color: #525252;
}


.fform-border {
    width: 100%;
    max-width: 458px;
    background: #fff;
    padding: 72px 0 68px;
    margin: 25px auto;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, .10);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, .10);
}

.footer-form-main:before {
    position: absolute;
    content: '';
    top: -34px;
    right: -43px;
    width: 67px;
    height: 345px;
    background: #c0d5df;
    z-index: -1;
}

.footer-form-main:after {
    position: absolute;
    content: '';
    bottom: -54px;
    left: -48px;
    width: 132px;
    height: 330px;
    background: #c0d5df;
    z-index: -1;
}

.footer-wrapper {
    padding: 87px 0 109px;
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/footer-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
}


.footer-form-main form {
    position: relative;
}


.footer-form-main div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.footer-form-main div.wpcf7-response-output {
    position: absolute;
    bottom: -42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 327px;
    text-align: center;
}


/*SIDEBAR*/

/*CTA*/

aside.sidebar .cta-item a {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 15px;
}

aside.sidebar .cta-outer {
    min-height: 260px;
}

aside.sidebar .cta-inner {
    min-height: 237px;
    max-width: 237px;
}

aside.sidebar .cta-gradient {
    min-height: 225px;
    max-width: 225px;
}

aside.sidebar .cta-gradient:before {
    max-width: 217px;
    max-height: 217px;
}

aside.sidebar .cta-title h2 {
    font-size: 19px;
}

aside.sidebar .cta-title h2 span {
    font-size: 24px;
}

aside.sidebar .cta-item a:hover .cta-title h2 span {
    font-size: 23px;
}

aside.sidebar .cta-item {
    margin: 0 auto !important;
}

/*Quick Search*/
aside.sidebar .qs-wrapper {
    padding-top: 0;
    padding-bottom: 30px;
}


aside.sidebar .qs-long {
    width: 100%;
    margin-bottom: 7px;
}

aside.sidebar .qs-long-2 {
    width: 100%;
    margin-bottom: 7px;
}

aside.sidebar .qs-short,
aside.sidebar .qs-input-short {
    width: calc(50% - 3.5px);
    float: left;
    margin: 0;
    margin-bottom: 7px;
}

aside.sidebar .qs-short.fl-r {
    float: right;
}

aside.sidebar .qs-input-short.fl-r {
    float: right;
    margin-right: 0;
}

aside.sidebar .qs-search,
aside.sidebar .qs-btn-adv {
    width: calc(50% - 3.5px);
    float: left;
    margin: 0;
}

aside.sidebar .qs-btn-adv.fl-r {
    float: right;
}

aside.sidebar .qs-form-main {
    width: 100%;
    margin: 0 auto;
    max-width: 360px;
}



/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-container span.breadcrumb_last {
    color: #9c8a62;
}

.ip-banner {
    position: relative;
}

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

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

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-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;
}

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

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

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

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

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
    margin-left: -15px;
    margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #525252;
}

#content .entry {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
    color: #636363;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    margin-top: 0;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #525252;
}

.hp-quick-search .bootstrap-select.btn-group {
    /*select width, display and position are set here and set to !important
        no height attribute. padding in .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle sets the height*/

    width: 100%;

}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    /*form appearance should be set here
        no height attribute. set the height by setting the padding*/

    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 10px;
    background: #fff url(images/qs-select-arrow.png) no-repeat scroll right 10px center;
    border-radius: 0px;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 16px !important;
    font-family: 'PT Sans Narrow', sans-serif;
}

.qs-form #cityid {
    overflow: hidden;
    height: 44px;
    width: 100%;
}


.ip-quick-search .bootstrap-select.btn-group .dropdown-menu.inner,
.qs-wrapper .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 200px !important;
}

/*ip qs*/
.ip-quick-search .bootstrap-select.btn-group {
    /*select width, display and position are set here and set to !important
        no height attribute. padding in .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle sets the height*/

    width: 100%;

}

.ip-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    /*form appearance should be set here
        no height attribute. set the height by setting the padding*/

    height: 44px;
    border: 1px solid;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #525252;
    padding: 0 10px;
    background: #fff url(images/qs-select-arrow.png) no-repeat scroll right 10px center;
    border-radius: 0px;
}

.ip-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 16px !important;
    font-family: 'PT Sans Narrow', sans-serif;
}

.ip-quick-search .bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
}


.realestate-logo img {
    width: 100%;
    max-width: 230px;
}

.realestate-logo {
    margin-top: 17px;
}

.ai-contact-wrap span.context-email {
    display: block;
}

.ai-contact-wrap h2 {
    margin-bottom: 8px !important;
    font-size: 32px !important;
}

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

/* popup form */
.popup-form {
    position: relative;
    max-width: 657px;
    border: 2px solid #fff;
    background-color: rgba(191, 212, 222, .8);
    text-align: center;
    margin: 50px auto;
    font-size: 0;
    padding: 75px 60px 40px;
    display: none;
    -webkit-border-image: -webkit-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    -o-border-image: -o-linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
    border-image: linear-gradient(45deg, #9c8a62, #dcc99a, #9c8a62) 1;
}

.popup-form.active {
    display: block;
    animation: show 1s ease-in-out;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: .50;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-form .aiosp-close {
    color: #fff;
    z-index: 10;
    opacity: 1;
    font-weight: 600;
    width: 53px;
    height: 55px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.popup-form .aiosp-close:hover {
    color: #ddd;
}

.popup-form .popup-title {
    font-family: 'Old Standard TT', serif;
    font-weight: 700;
    font-size: 50px;
    color: #525252;
    text-transform: uppercase;
}

.popup-form p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #525252;
    line-height: 23px;
    margin: 17px auto 31px;
    max-width: 456px;
}

.popup-form form {
    position: relative;
    text-align: left;
}

.popup-form form::after {
    content: '';
    display: table;
    clear: both;
}

.popup-form .popup-form-field {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 7px;
}

.popup-form .popup-form-sm {
    width: calc(50% - 3.5px);
}

.popup-form .popup-form-lg {
    width: 100%;
}

.popup-form .popup-form-right {
    float: right;
}

.popup-form .popup-form-field>span {
    display: block;
}

.popup-form .popup-form-field input,
.popup-form .popup-form-field textarea {
    padding: 0;
    background-color: #fff;
    height: 37px;
    display: block;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #525252;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: none;
    outline: none;
}

.popup-form .popup-form-field textarea {
    height: 135px;
    padding-top: 13px;
    resize: none;
}

.popup-form span.wpcf7-not-valid-tip {
    font-size: 13px;
}

.popup-form .popup-form-submit {
    display: block;
    margin: 14px auto 0;
    width: 192px;
    height: 47px;
    background-color: #c9c097;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: background-color .3s ease-in-out;
    -moz-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: none;
    outline: none;
}

.popup-form .popup-form-submit:hover {
    background-color: #9d8b63;
}

.popup-form div.wpcf7-response-output {
    margin: 0;
    font-size: 13px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: -15px;
    text-align: center;
}

.popup-form-holder img {
    max-width: 100%;
}

/* end popupform */

section.qs-container {
    position: relative;
    z-index: 2;
}

.grecaptcha-badge {
    z-index: 9999;
}

.error404 div.wpcf7-response-output {
    text-align: center;
}


/* IDX FIX */
ul#ihf-detail-extrainfotabs,
#ihf-search-tabs>ul.nav-tabs,
#ihf_select_property_type_chosen ul.chosen-results,
#ihf_select_bedrooms_homes_chosen ul.chosen-results,
#ihf_select_baths_homes_chosen ul.chosen-results {
    margin-left: 0 !important;
}

.ihf-advanced-property-search ul.chosen-results {
    padding-left: 0 !important;
}

#ihf-main-container .dropdown-menu>.active>a {
    color: #333 !important
}

#ihf-main-container .dropdown-menu>li>a:hover {
    color: #000 !important;
}

.page-id-0 #content ul {
    margin-left: 0 !important;
    padding: 0 !important;
}

#ihf-main-container .pagination>li>a,
#ihf-main-container .pagination>li>span {
    padding: 6px 8px !important;
}

.ihf-grid-result-address {
    display: block !important
}

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

#ihf-schoolDistrict+.chosen-container ul.chosen-results {
    max-height: 200px;
}

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

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

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

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


#ihf-mini-search-minprice,
#ihf-mini-search-maxprice {
    max-width: 100%;
}

.ihf-mapsearch-refine-overlay-inner {
    padding: 5px;
}

#ihf-main-container form#ihf-refine-map-search-form {
    margin: 0 !important;
}

#ihf-main-container .ihf-search-agree-to-terms .modal {
    z-index: 1041 !important;
}

/*Reset AIOS POPUP*/
.aiosp-wrap {
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100% !important;
    z-index: 1043;
    position: fixed !important;
    outline: none !important;
    -webkit-backface-visibility: hidden;
    overflow: hidden auto;
}


.aiosp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    z-index: 1042;
    overflow: hidden;
    position: fixed !important;
    background: #0b0b0b;
    opacity: .8;
}


.aiosp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.aiosp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}


a.ai-font-linktree img,
.ai-font-threads img,
.ai-font-tiktok img {
    max-width: 15px;
    filter: brightness(0) invert(1);
    height: auto;
}

.footer-smi-main .ai-font-linktree img,
.footer-smi-main .ai-font-threads img,
.footer-smi-main .ai-font-tiktok img {
    filter: none;
    transition: all 0.3s ease-in-out;
}

.footer-smi-main .ai-font-linktree:hover img,
.footer-smi-main .ai-font-threads:hover img,
.footer-smi-main .ai-font-tiktok:hover img {
    filter: brightness(0) invert(1);
}

.aios-custom-ihomefinder-details-template #content-sidebar #content {
    width: 100%;
}

.aios-custom-ihomefinder-details-template .sidebar {
    display: none;
}










/** Single Default Layout (Post Content) */
#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/** End of Single Default Layout (Post Content) */

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list>article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

/** End of Archive Default Layout (Archive Page) */

/** Button */
.global-button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-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;
    border: 1px solid #c1c1c1;
    width: 283px;
    max-width: 100%;
    height: 59px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.61px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #676767;
    background: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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









.category .sidebar {
    display: none;
}

.category #content-sidebar #content {
    width: 100%;
}


.page-id-13 #content .entry-title {
    text-align: center;
}

#ai-minimalist-properties-details-wrap .disable-overlay .ai-minimalist-pd-slide-main:after {
    opacity: 0 !important;
}

.page-id-18 .ai-minimalist-form-wrapper {
    display: none;
}


#ai-minimalist-properties-details-wrap .ai-minimalist-pd-slide-main .ai-minimalist-pd-slide-item img {
    object-fit: contain;
}

#ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap.disable-overlay .ai-classic-pd-slide-main:after {
    opacity: 0;
}

#ai-classic-properties-details-wrap .ai-classic-pd-listings-main-right .ai-classic-pd-listings-price {
    color: #fff !important;
}

/** End of Button */

body #ai-classic-contact-wrap .ai-classic-contact-informations li:last-child a {
    line-height: 45px;
}