/*
Theme Name: Vienna - Responsive Real Estate Wordpress Theme from Agent Image
Description: Vienna is a modern and responsive real estate Wordpress theme. Customize your branding, add widgets and integrate IDX search.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.0.0
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css
  
*/


/*******************************************************
 *
 * 1. Custom CSS
 *
 *******************************************************/

/* Global */
:root {

    --body-font: 'Lato', sans-serif;
    --heading-font: 'Gilda Display', serif;

    --primary-color: #333333;
    --secondary-color: #d9bc7a;
    --tertiary-color: #ccc5b9;

    --primary-text-color: #999999;
    --secondary-text-color: #555555;
    --tertiary-text-color: #fff;

    --primary-border-color: #494949;

    --primary-footer-bg: #1d1d1d;

}

body {
    font-family: var(--body-font), Arial, Helvetica, Georgia, Sans-serif;
    font-size: 15px;
    background: var(--primary-color);
    color: var(--tertiary-text-color);
    margin: 0;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

a {
    color: inherit;
}

a:hover {
    color: var(--secondary-color);
}

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

::selection {
    background: var(--secondary-color);
    color: #000;
}

.btn-a {
    display: block;
    max-width: 155px;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--primary-text-color);
    border: 1px solid var(--primary-text-color);
    padding: 10px;
    text-align: center;
    transition: all .3s;
}

.btn-a:hover {
    border-color: var(--tertiary-text-color);
    color: var(--tertiary-text-color);
}

.btn-a.center {
    margin-left: auto;
    margin-right: auto;
}

.btn-a.left {
    margin-left: 0;
}

.btn-a.right {
    margin-right: 0;
}

/*header*/
header.agentpro-header.fixed {
    background: var(--primary-color);
}

.fixed .agentpro-header-inner .agentpro-logo {
    font-size: 28px;
    padding: 16.5px 0;
}

.fixed .agentpro-logo em {
    font-size: 11px;
}

.fixed #nav>li>.sub-menu {
    padding-top: 18px;
}

.agentpro-logo,
.agentpro-logo em {
    -webkit-transition: font-size .3s, padding .3s;
    -o-transition: font-size .3s, padding .3s;
    transition: font-size .3s, padding .3s;
}

.agentpro-header {
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

header.agentpro-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
}

.agentpro-header-inner {
    position: relative;
    background: var(--primary-color);

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    padding: 0 26px;
}

.agentpro-header-inner .agentpro-logo {
    /*width: 28.60%;*/
    /*max-width: 28%;*/
    width: 25%;
    padding: 24px 0;
    text-align: center;
}

.agentpro-logo {
    text-align: center;
    font: 400 35px/1 var(--heading-font);
    color: var(--tertiary-text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agentpro-logo a {
    color: inherit;
}

.agentpro-logo span {
    display: inline;
    color: var(--secondary-color);
}

.agentpro-logo em {
    display: block;
    font: normal 400 14px/.7 var(--body-font);
    /*letter-spacing: .24em;*/
    letter-spacing: .64em;
    padding-left: 5px;
    white-space: nowrap;
    color: var(--primary-text-color);
    margin-bottom: 2px;
}

.agentpro-header-inner .agentpro-navigation {
    /*width: 71.40%;*/
    width: 72%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#nav {}

#nav li {
    position: relative;
    text-align: left;
}

#nav li a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--tertiary-text-color);
    text-transform: uppercase;
    position: relative;
}

#nav>li {
    display: inline-block;
    padding: 0 10px;
    text-align: left;
}

#nav>li>a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--secondary-color);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#nav>li:hover>a:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    /*display: none;*/
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 196px;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: opacity .3s, visibility .3s, -webkit-transform .3s;
    transition: opacity .3s, visibility .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s, visibility .3s;
    transition: transform .3s, opacity .3s, visibility .3s;
    transition: transform .3s, opacity .3s, visibility .3s, -webkit-transform .3s;
}

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

#nav>li>.sub-menu {
    padding-top: 30px;
    transform: translateX(-50%) translateY(10px);
    left: 50%;
}

#nav>li:hover>.sub-menu {
    transform: translateX(-50%) translateY(0);
}

#nav .sub-menu .sub-menu {
    padding-left: 1px;
}

#nav .sub-menu li:first-child {
    border-top: none;
}

#nav .sub-menu li {
    border-top: 1px solid rgba(255, 255, 255, .3);
}

#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px 20px;
}

#nav .sub-menu a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: .7;
    z-index: -1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#nav .sub-menu li:hover>a:before {
    opacity: 1;
    background: var(--secondary-color);
}

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

#nav li:hover>.sub-menu {
    display: block;
}

#nav .sub-menu li {
    position: relative;
}

.agentpro-header-contact-info {
    color: var(--secondary-color);
    font-size: 13px;
    border-left: 1px solid #9c9c9c;
    padding: 0 0 0 15px;
    margin-left: 10px;
    min-width: 67px;
}

.agentpro-header-contact-info a {
    margin: 0 7px;
    line-height: 22px;
}

.agentpro-header-contact-info a:hover {
    opacity: .8;
}

.agentpro-header-contact-info .ai-mobile-phone a {
    margin-right: 0;
}

/*section 1*/
.agentpro-section-1 {
    padding-top: 94px;
    position: relative;
}

#slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#slideshow .aios-slider.aios-slider-template-default .aios-slider-splide:before,
#slideshow .cycloneslider-template-responsive .cycle-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: .2;
    pointer-events: none;
    z-index: 1;
}

#slideshow>.textwidget,
#slideshow .aios-slider,
#slideshow .aios-slider.aios-slider-template-default .aios-slider-splide,
#slideshow .splide__track,
#slideshow .splide__list,
#slideshow .splide__slide,
#slideshow .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img,
#slideshow .cycloneslider,
#slideshow .cycloneslider .cycloneslider-slides,
#slideshow .cycloneslider .cycloneslider-slides .cycloneslider-slide,
#slideshow .cycloneslider .cycloneslider-slides .cycloneslider-slide div,
#slideshow .cycloneslider .cycloneslider-slides .cycloneslider-slide canvas {
    height: 100%;
}

#slideshow .slideshow-placeholder {
    height: 100%;
}

#slideshow .slideshow-placeholder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#slideshow .cycloneslider-template-responsive .cycloneslider-caption {
    display: none;
}

.slideshow-content {
    position: relative;
    z-index: 1;
    padding: 43px 0;
}

.slideshow-content .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.slideshow-content .container:before,
.slideshow-content .container:after {
    display: none;
}

.slideshow-control {
    font-size: 70px;
    color: #fff;
    position: absolute;
    top: calc(50% - 82px);
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;

    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;

    display: none;
}

.slideshow-control:hover {
    text-shadow: 0 0 13px #fff;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrows>.container {
    position: relative;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    color: #fff !important;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow--prev,
.slideshow-prev {
    left: -70px;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow--prev:hover,
.slideshow-prev:active {
    transform: translate(-5px, -50%);
    text-shadow: 0 0 13px #fff;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow--next,
.slideshow-next {
    right: -70px;
}

#slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow--next:hover,
.slideshow-next:active {
    transform: translate(5px, -50%);
    text-shadow: 0 0 13px #fff;
}

.sc-left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 30%;
    display: flex;
    align-items: center;
}

.sc-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 70%;
}

.agent-info-box-wrap {
    max-width: 283px;
    display: block;
    position: relative;
}

.agent-info-box-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--primary-color);
    opacity: .7;
}

.agent-photo img {
    display: block;
    width: 100%;
}

.agent-info {
    background: var(--primary-color);
    color: var(--primary-text-color);
    display: block;
    padding: 20px 24px;
}

.agent-info strong {
    display: block;
    font-weight: normal;
    font: 400 26px/1 var(--heading-font);
    text-transform: uppercase;
    color: var(--tertiary-text-color);
}

.agent-info strong span {
    color: var(--secondary-color);
}

.agent-info i {
    margin-right: 8px;
    display: inline-block;
    text-align: center;
    width: 17px;
}

.agent-info-contact {
    margin-top: 5px;
}

.agent-info .ai-mobile-phone {
    font-size: 17px;
    display: block;
}

.agent-info .ai-mobile-phone i {
    font-size: 14px;
}

.agent-info a.asis-mailto-obfuscated-email {
    font-size: 15px;
}

.agent-info a.asis-mailto-obfuscated-email i {
    font-size: 12px;
}

.agent-info a:hover {
    color: var(--secondary-color);
}

.social-media {
    font-size: 0;
    padding: 14px 26px;
}

.social-media a {
    font-size: 25px;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 40px;
    margin-left: 4px;
    text-decoration: none;

    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.social-media a:hover {
    opacity: 0.7;
}

.social-media a:first-child {
    margin-left: 0;
}

.agent-logo {
    padding: 0 26px 19px;
}

.agent-logo img {
    display: block;
    max-width: 100%;
}

.tagline-wrap {
    position: relative;
}

.tagline-item {
    text-align: right;
    padding: 10px 0;
    text-align: right;
    font-size: 40px;
    line-height: 1.1;
    color: var(--tertiary-text-color);
}


/*section 2*/
.agentpro-section-2 {
    background: var(--primary-color);
    padding: 17px 0 30px;
}

.agentpro-tab-buttons {
    border: none;
    margin-bottom: 27px;
    border-bottom: 1px solid var(--primary-border-color);
}

.agentpro-tab-buttons>li {
    float: none;
    margin-bottom: 0;
    display: inline-block;
    border: none;
    text-transform: uppercase;
}

.agentpro-tab-buttons>li.active>a,
.agentpro-tab-buttons>li.active>a:focus,
.agentpro-tab-buttons>li.active>a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 0;
    border-bottom: none;
    border-color: var(--secondary-color);
}

.agentpro-tab-buttons>li>a:hover {
    border-color: var(--primary-border-color);
}

.agentpro-tab-buttons li a {
    display: block;
    font-size: 20px;
    margin-right: 4px;
    padding: 20px 15px;
    border: 1px solid var(--primary-border-color);
    border-bottom: 0;
    border-radius: 0;
    color: var(--primary-text-color);
    line-height: 1.1;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.agentpro-tab-buttons a:after {
    margin-left: 9px;
    display: inline-block;
    vertical-align: middle;
    content: "\b0004";
    position: relative;
    font-family: 'agentimage' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 14px;
    line-height: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.agentpro-tab-buttons a.active {
    background: var(--secondary-color);
}

.agentpro-tab-content {
    position: relative;
}

#area-of-expertise {}

.expertise-list {}

.expertise-list a {
    border: 1px solid var(--primary-border-color);
    text-align: center;
    display: block;
    color: var(--primary-text-color);
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 4px 0;
    padding: 15px 10px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.expertise-list a:hover {
    color: var(--tertiary-text-color);
    border-color: var(--tertiary-text-color);
}

#quick-search {
    padding: 10px 0 66px;
}

.qs-form {
    font-size: 0;
    text-align: center;
    margin-left: -3px;
    margin-right: -3px;
}

.qs-form select,
.qs-form input[type=submit],
.qs-form input[type=text] {
    outline: none;
    border: 1px solid var(--primary-border-color);
    background: var(--primary-color);
    color: var(--tertiary-text-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
    height: 40px;
    padding: 8px 12px;
    margin: 0 2.5px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

.qs-form select option {
    background: #fff;
    color: #000;
}

.qs-form select.dp-large {
    /*width: 24.03%;*/
    width: calc(15.3% - 5px);
}

.qs-form select.dp-small {
    /*width: 9.29%;*/
    width: calc(9.65% - 5px);
}

.qs-form select.dp-medium {
    width: calc(10.4% - 5px);
}

.qs-form input[type=submit] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    border: none;
    background: transparent;
    color: var(--tertiary-text-color);
    font-weight: 700;
    letter-spacing: 1px;
    /*width: 10.5%;*/
    width: calc(11.3% - 5px);
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    border: 1px solid var(--tertiary-text-color);
}

.qs-form input[type=submit]:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    background: var(--secondary-color);
}


/*section 3*/
.agentpro-section-3 {
    background: var(--secondary-color) url(images/section-bg.png) center 40.83% no-repeat;
    padding: 20px 0;
}

#call-to-action {}

.cta-list {}

a.cta {
    display: block;
    background: var(--primary-color);
    padding: 7px 9px;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0;
    font: 400 25px/1 var(--heading-font);
    color: var(--tertiary-text-color);
    letter-spacing: 2px;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a.cta .cta-inner {
    border: 1px solid var(--primary-border-color);
    padding: 20px 5px;
}

a.cta span {
    display: block;
    font-weight: 300;
    font-size: 16px;
    color: var(--secondary-color);
    font-family: var(--body-font);
    margin-bottom: 3px;
    letter-spacing: 1px;
}

a.cta:hover {
    box-shadow: 0 0 8px var(--primary-color);
    color: var(--secondary-color);
}


/*section 4*/
.agentpro-section-4 {
    position: relative;
    background: var(--primary-color) url(images/section-bg.png) center 1% no-repeat;
    padding: 50px 0;
    color: var(--tertiary-text-color);
}

.agentpro-section-4 h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 29px;
}

.featured-list {
    font-size: 0;
}

.featured-list a {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 1px;
}

.featured-img {
    position: relative;
}

.featured-img:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,.35);*/
    content: '';
    z-index: 2;
}

.featured-img canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.featured-img-cover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: all .3s;
}

.featured-item:hover .featured-img-cover {
    opacity: 1;
}

.featured-img-cover span {
    position: absolute;
    opacity: 0;
    background: rgba(255, 255, 255, .4);
    transition: all .3s;
}

.featured-img-cover span.top {
    left: 50%;
    width: 0;
    margin-left: 0;
    height: 1px;
    top: 14.34%;
}

.featured-img-cover span.bottom {
    width: 0;
    margin-left: 0;
    left: 50%;

    height: 1px;
    bottom: 14.34%;
}

.featured-item:hover .featured-img-cover span.top,
.featured-item:hover .featured-img-cover span.bottom {
    margin-left: -40%;
    width: 80%;
    opacity: 1;
}

.featured-img-cover span.left {
    width: 1px;
    height: 0;
    left: 14%;
    top: 50%;
    margin-top: 0;
}

.featured-img-cover span.right {
    width: 1px;
    height: 0;
    right: 14%;
    top: 50%;
    margin-top: 0;
}

.featured-item:hover .featured-img-cover span.left,
.featured-item:hover .featured-img-cover span.right {
    margin-top: -36.5%;
    height: 80%;
    opacity: 1;
}

.featured-item .featured-desc {
    padding: 13px;
    height: 95px;
    text-align: center;
    color: var(--tertiary-text-color);
}

.featured-item strong {
    display: block;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.featured-item span {
    display: block;
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
}

#featured-communities .featured-desc:before {
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    content: '';
}

#featured-communities .featured-desc em {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
}

/*section 5*/
.agentpro-section-5 {
    position: relative;
    background: var(--tertiary-color) url(images/section-bg.png) center 44% no-repeat;
    padding: 66px 0;
    color: var(--secondary-text-color);
    text-align: center;
}

#testimonials {}

#testimonials h2 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonials-list {
    width: 80%;
    margin: 0 auto;
}

.testimonial {
    font-size: 15px;
    line-height: 22px;
}

.testimonial span {
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 20px;
}

.testimonials-list .slick-arrow {
    position: absolute;
    top: 0;
    border: none;
    border-radius: 0;
    outline: none;
    cursor: pointer;

    width: 33px;
    height: 78px;
    background: none;

    font-size: 0;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
}

.IDX-resultsMainInfo.IDX-panel.IDX-panel-default {
    background: none;
}

div#IDX-main input {
    color: #000;
}

div#IDX-detailsMainInfo,
div#IDX-description,
#IDX-main .IDX-collapse,
div#IDX-similar-listings-none,
.IDX-field-listingID.IDX-field {
    color: #000;
}

.IDX-field-listingID.IDX-field {
    color: #fff;
}

.IDX-wrapper-standard .IDX-panel-default>.IDX-panel-heading {
    background: none;
}

/* select#IDX-pt {
    right: 0;
    height: 20px !important;
    z-index: 999;
    font-size: 20px;
    opacity: 1;
    display: block !important;
    clip: auto !important;
    color: #000;
    width: 96% !important;
} */

.IDX-panel-heading div {
    color: #fff;
}

.testimonials-list .slick-arrow:before {
    color: var(--primary-color);
    display: block;

    position: relative;
    font-family: 'agentimage' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: 77px !important;
    line-height: 78px;
}

.testimonials-list .slick-arrow:hover:before {
    opacity: .8;
}

.testimonials-list .slick-arrow.slick-prev {
    left: -100px;
}

.testimonials-list .slick-arrow.slick-prev:before {
    content: "\b0003";
}

.testimonials-list .slick-arrow.slick-next {
    right: -100px;
}

.testimonials-list .slick-arrow.slick-next:before {
    content: "\b0004";
}

/*section 6*/
.agentpro-section-6 {
    position: relative;
    background: var(--primary-color) url(images/section-bg.png) center 100% no-repeat;
    padding: 50px 0;
    color: var(--primary-text-color);
}

#welcome {
    line-height: 22px;
    padding-right: 5%;
    position: relative;
}

#welcome:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.6%;
    width: 1px;
    height: 100%;
    border-right: 1px solid var(--primary-border-color);
}

#welcome h1 {
    display: block;
    font: 400 28px/29px var(--heading-font);
    color: var(--tertiary-text-color);
    text-transform: uppercase;
    margin-bottom: 22px;
}

#welcome h1 span {
    color: var(--secondary-color);
}

#welcome p {
    font-weight: 300;
    margin-bottom: 27px;
}

#welcome img {
    display: block;
    max-width: 100%;
}

#blog {
    line-height: 22px;
}

#blog h2 {
    font-size: 20px;
    line-height: 28px;
    border-bottom: 1px solid var(--primary-border-color);
    color: var(--tertiary-text-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.blog-list article h3 {
    font-size: 15px;
    color: var(--tertiary-text-color);
    line-height: 30px;
    border-bottom: 1px solid var(--primary-border-color);
    margin-bottom: 11px;
}

.blog-list p {
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    color: var(--primary-text-color);
}

.blog-list .btn-a {
    width: 140px;
    margin-top: 38px;
    padding: 7px 10px;
}

.blog-list a {
    cursor: pointer;
}

.blog-list a:hover {
    text-decoration: none !important;

}

/*footer*/
.footer-wrapper {
    background: var(--primary-footer-bg);
    padding: 39px 0 34px;
}

.footer-wrapper h2 {
    font-weight: 300;
    font-size: 20px;
    color: var(--primary-text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.footer-contact-details {
    position: relative;
}

.footer-contact-details .agent-info {
    padding: 0;
    background: transparent;
    text-align: left;
}

.footer-contact-details .agent-info strong {
    margin-bottom: 25px;
}

.footer-contact-details .agent-info-contact {
    margin-top: 10px;
}

.footer-wrapper .agent-info .ai-mobile-phone {
    display: block;
    margin-bottom: 5px;
}

.footer-contact-details .social-media {
    padding: 14px 0;
    margin-top: 10px;
    text-align: left;
}

.footer-contact-details .social-media a {
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    margin-right: 4px;
}

.footer-navigation {
    padding-left: 5.15%;
}

.footernav {
    font-size: 0;
}

.footernav li {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
    padding: 5px 0;
    line-height: 22px;
}

.footernav li a {
    color: var(--primary-text-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
}

.footernav li a:hover {
    color: var(--secondary-color);
}

.footer-form {
    position: relative;
}

.footer-form h2 {
    margin-bottom: 30px;
}

.gaq-holder {
    font-size: 0;
}

.footer-form .ff-row {
    position: relative;
    margin-bottom: 10px;
}

.footer-form .ff-col {
    width: 48.48%;
    position: relative;
    display: inline-block;
}

.footer-form .ff-col+.ff-col {
    margin-left: 2.24%;
}

.footer-form input[type=text],
.footer-form input[type=email],
.footer-form textarea {
    width: 100%;
    background: transparent;
    outline: none;
    border-radius: 0;
    border: 1px solid var(--primary-border-color);
    height: 40px;
    padding: 7px 10px;
    font-weight: 300;
    font-size: 13px;
    color: var(--primary-text-color);
    text-transform: uppercase;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.footer-form textarea {
    resize: none;
    line-height: 22px;
    padding-right: 45px;
}

.ff-submit {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 23px;
    line-height: 20px;
    padding: 10px;
    height: 39px;
}

.footer-form input[type=submit] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    border: none;
}

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

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

.footer-form .use-floating-validation-tip span.wpcf7-not-valid-tip,
.footer-form div.wpcf7-response-output {
    font-size: 12px;
    text-align: center;
}

.footer-form div.wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
}

.footer-bottom {
    font-size: 13px;
    line-height: 18px;
    color: var(--primary-text-color);
    margin-top: 32px;
    padding: 27px 15px 0;
}

.footer-bottom:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    border-top: 1px solid var(--primary-border-color);
}

.footer-logo {
    text-align: right;
    font-size: 27px;
}

.footer-logo span {
    display: inline-block;
    vertical-align: top;
    margin: 0 6px;
}

/*******************************************************
 *
 * 2. IP Styles
 *
 *******************************************************/
.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, .1);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 200px;
    background-color: #f9f7f7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(images/slide-5.jpg);
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 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: 77.08%;
}

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

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
}

/* 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: 400 26px/26px var(--heading-font);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*ihf Style*/
.ihf-container label {
    color: #fff;
}



#ihf-main-container .modal-dialog label {
    color: #333 !important;
}

.ihf-modal-form-disclaimer {
    color: #333 !important;
}

/*End of ihf Style*/

div#ws-walkscore-tile {
    background: #fff !important;
}

.page-id-11 .ai-contact-wrap span.context-mob a,
.page-id-11 .ai-contact-wrap span.context-email a {
    -webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
}

.page-id-11 .ai-contact-wrap span.context-mob a:hover,
.page-id-11 .ai-contact-wrap span.context-email a:hover {
    color: #d9bc7a;
}

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

#content .archive-subtitle a:hover {
    opacity: .8;
}

#inner-page-wrapper {
    padding-top: 100px;
}

.ip-banner~#inner-page-wrapper {
    padding-top: 0;
}

.sidebar .agent-info {
    background: transparent;
    padding: 20px 0;
    text-align: center;
}

.sidebar .social-media {
    padding: 0;
    text-align: center;
}

.sidebar .agent-logo {
    padding: 20px 10px 0;
}

.sidebar a.cta {
    font-size: 22px;
}

#content .wpcf7-form-control-wrap {
    color: #000;
}

.pdf-item a {
    color: var(--primary-text-color);
    -webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
}

.pdf-item a:hover {
    color: #d9bc7a;
}

/** Roadmaps **/
.aios-roadmaps.no-border a.aios-roadmap-link {
    color: #fff;
}

.aios-roadmaps.no-border.black a.aios-roadmap-link.active-link,
.aios-roadmaps.no-border.black a.aios-roadmap-link:hover {
    color: var(--secondary-color);
}

/** Roadmaps **/
.ai-contact-wrap span.context-email em.ai-font-envelope,
.ai-contact-wrap span.context-mob em.ai-font-phone,
.ai-contact-wrap span.context-mob em.ai-font-location-c {
    color: var(--secondary-color);
}

.ai-contact-wrap span.context-mob em.ai-font-location-c {
    min-width: 25px;
    font-size: 23px;
}

#content .testimonial {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 0 0 20px;
    margin: 0 0 20px;
}

#content .testimonial:last-child {
    border-bottom: none;
}

#content .testimonial .star-review {
    line-height: 1;
    margin-bottom: 10px;
}

#content .testimonial p {
    margin-top: 0;
}



ul.slick-dots li {
    list-style: none;
    display: inline-block;
    margin: 0px 6px;
}

ul.slick-dots {
    text-align: center;
    margin: 0;
}

.page-id-7 #content .archive-thumbnail {
    width: 285px;
    height: 230px;
}

.page-id-7 #content .archive-thumbnail iframe {
    width: 100%;
    height: 200px;
}

.page-id-7 #content .archive-content.archive-has-thumbnail {
    width: calc(100% - 285px);
    padding-left: 20px;
}

.page-id-7 #content .slick-dots li button {
    border: 0;
    padding: 0;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border: 1px solid #1d1d1d;
    transition: all 0.2s linear;
    color: black;
    background-color: #d9bc7a;
}

.page-id-7 #content .slick-dots li button:hover {
    background: #333333;
    color: #fff;
}

input.custom-property-type {
    border: transparent;
    background-color: transparent;
    font-weight: 400;
    padding-top: 8px;
    font-size: 15px !important;
}

.custom-quick-search ul.dropdown-menu.inner {
    max-height: 174px !important;
}

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

div#IDX-searchPageWrapper ul {
    margin: 0 !important;
}

.select2-drop-mask {
    z-index: 98;
}

.select2-drop {
    z-index: 99;
}

ul.IDX-propertyInfoList {
    margin: 0 !important;
    list-style-position: inside;
    padding-left: 20px;
}

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

/* SITEMAP */
ul.sitemap-list li.page-item-10,
ul.sitemap-list li.page-item-270 {
    display: none;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
.page-id-270 .IDX-wrapper-standard .select2-container .select2-choice.select2-default .select2-chosen,
.page-id-270 div#IDX-main input {
    color: #000 !important;
}

body img[src*="deviceid.trueleadid.com"] {
    display: none;
}

#IDX-main a#IDX-moreinfo {
    padding-left: 12px;
}

.ip-container #main-wrapper {
    position: relative;
    z-index: unset !important;
}

div#select2-drop {
    z-index: 99;
}

ul.IDX-propertyInfoList {
    color: #000000;
}