/*
Theme Name: AgentPro Amante II
Description: Amante II 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.5.1
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 {
    /* font families */
    --body-font: 'Source Sans Pro';
    --heading-font: 'Source Serif Pro';

    /* Primary color (Section BG, etc.) */
    --background-color: #ffffff;
    --background-color-accent: #f5f5f5;

    --primary-color: #1c1c1c;
    --primary-color-accent: #736a4e;
    --secondary-color: #ffffff;
    --primary-text-color-light: #b0b0b0;
    --font-color-default: var(--primary-text-color);

    /*Secondary color (hovers, accents, etc.)*/
    /* Primary overlay color */
    --primary-overlay-color: #111111;

    /*btn dark color*/
    --btn-border-color-dark: rgba(42, 42, 42, .3);
    --btn-border-color-dark-hover: #2a2a2a;

    /*btn light color*/
    --btn-border-color-light: rgba(254, 242, 194, .3);
    --btn-border-color-light-hover: #fef2c2;

    /*text colors*/
    --primart-body-color: #1c1c1c;
    --body-text-color-dark: #666666;

    --heading-text-color-dark: #212121;
    --subheading-text-color-dark: #b0b0b0;

    --body-text-color-light: #d1d1d1;
    --heading-text-color-light: #fff;


    /*borders*/
    --border-color-light: rgba(28, 28, 28, .2);

    /*others*/
    --font-color-default: var(--primary-text-color);
    --secondary: var(--secondary-color);
}

body {
    font-family: var(--body-font), Arial, Helvetica, Georgia, Sans-serif;
    font-size: 16px;
    background: var(--background-color);
    color: var(--primary-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,
a:focus,
.slick-slide,
.slick-slide a:hover,
.swiper-pagination-bullet {
    outline: none;
    text-decoration: none;
}

a:hover,
em.ai-mobile-phone a:hover {
    color: var(--primary-color);
}

select:focus,
input:focus,
button[type="button"]:focus,
textarea:focus {
    outline: none;
}

.font-sans {
    font-family: var(--heading-font), sans-serif;
}

.font-serif {
    font-family: var(--heading-font), serif;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.flex:before,
.flex:after {
    display: none;
}

.dir-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.dir-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse wrap;
    flex-flow: column-reverse wrap;
}

.dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
}

.al-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.al-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.al-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.ju-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ju-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ju-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ju-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.overlay-bg {
    position: relative;
    z-index: 1;
}

.overlay-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--primary-color);
}

html.safari .overlay-bg {
    background-attachment: scroll;
}

#main-wrapper {
    position: relative;
    overflow: hidden;
}

/*fixed header*/
header.header-wrapper.animate-in,
header.header-wrapper.active {
    background: var(--primary-color);
    position: fixed;
}

header.header-wrapper.animate-in {
    transform: translate(0, -100%);
}

header.header-wrapper.active {
    transform: translate(0, 0);
    padding: 19px 0;
    transition: transform .3s, background .3s;
}

header.active .logo a {
    font-size: 9px;
    margin-bottom: 4px;
}

header.active .logo a strong {
    font-size: 24px;
    margin-bottom: 5px;
}

header.active #nav>li>a {
    padding-top: 12px;
}

header.active #nav>li>.sub-menu {
    padding-top: 20px;
}

header.header-wrapper.animate-out {
    transform: translate(0, -100%);
}

header.header-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 102;
    padding: 34px 0;
    transform: translate(0, 0);
}

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

header.header-wrapper .logo {
    position: relative;
}

.logo a {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .34em;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
}

header.header-wrapper:not(.active) .logo a {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);

}

header.header-wrapper.active .logo a {
    color: var(--secondary-color);
}

.logo strong {
    display: block;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: .06em;
    margin-bottom: 7px;
    font-family: var(--heading-font), serif;
}

header.header-wrapper .navigation {
    text-align: right;
}

#nav {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

header.header-wrapper:not(.active) #nav {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

#nav li {
    position: relative;
}

#nav li a {
    display: block;
    color: #fff;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 600;
    position: relative;
}

.header-wrapper.active #nav li a {
    color: var(--secondary-color);
}

#nav>li {
    display: inline-block;
    vertical-align: top;
    margin-left: 15px;
}

#nav>li:first-child {
    margin-left: 0;
}

#nav>li>a {
    padding-bottom: 12px;
}

#nav>li>a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--primary-color-accent);
    transform-origin: center;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

#nav>li>.sub-menu {
    padding-top: 10px;
    left: 50%;
    -webkit-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
}

#nav .sub-menu a {
    color: var(--secondary-color);
    display: block;
    padding: 10px;
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

#nav .sub-menu li:hover>a {
    text-decoration: none;
}

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

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

#nav>li:hover>.sub-menu {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

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

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

#nav .sub-menu li:hover:before {
    opacity: 1;
}

/*easing*/
#nav>li>a:before,
#nav .sub-menu {
    -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;
}

.menu-item-children-to-right .sub-menu .sub-menu {
    margin-left: auto !important;
    left: auto !important;
    right: 100%;
}

/*burger menu icon*/
.site-burger-holder {
    display: inline-block;
    margin-left: 30px;
}

header.header-wrapper.active .site-burger-holder {
    vertical-align: middle;
}

.burger-menu {
    width: 38px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 0 0 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header.header-wrapper.active .burger-menu span {
    background: var(--secondary-color);
}

.burger-menu span:first-child {
    width: calc(100% - 20px);
}

.burger-menu span:last-child {
    width: calc(100% - 10px);
}

.burger-menu span:nth-child(2) {
    margin: 5px auto;
}

.burger-menu:hover span {
    background: var(--primary-color-accent);
}

header.header-wrapper.active .burger-menu:hover span {
    background: var(--primary-color-accent);
}

/*Offcanvas*/
.admin-bar .site-offcanvas {
    top: 32px;
}

.site-offcanvas {
    position: fixed;
    z-index: 1001;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas.offcanvas-open {
    visibility: visible;
    pointer-events: auto;
}

.site-offcanvas.offcanvas-open:before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-offcanvas.offcanvas-open .site-offcanvas-inner {
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.site-offcanvas:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.site-offcanvas .site-offcanvas-inner,
.site-offcanvas .site-offcanvas-header,
.site-offcanvas .site-offcanvas-main,
.site-offcanvas .site-offcanvas-footer {
    position: relative;
    width: 100%;
}

.site-offcanvas .site-offcanvas-inner {
    background: var(--background-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    overflow: hidden;
    overflow-y: auto;
    padding: 70px 30px 50px;
    width: 440px;
    max-width: calc(100% - 30px);
    height: 100%;
    box-shadow: -5px 0 5px -5px #999999;
    margin-left: auto;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-offcanvas .site-offcanvas-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-close:hover {
    color: var(--primary-color);
}

.site-offcanvas .site-offcanvas-close i {
    display: block;
    font-style: normal;
}

.site-offcanvas .site-offcanvas-main {
    padding: 30px 0;
}

.site-offcanvas .site-offcanvas-header:not(.hidden)+.site-offcanvas-main {
    margin: auto 0;
}

.site-offcanvas .site-offcanvas-footer {
    margin-top: auto;
}

.site-offcanvas .site-offcanvas-logo {
    text-align: center;
}

.site-offcanvas .site-offcanvas-logo a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-logo a:hover {
    color: var(--primary-color);
}

.site-offcanvas .site-offcanvas-navigation {
    position: relative;
}

.site-offcanvas .site-offcanvas-navigation ul {
    display: block;
    margin: 0;
    padding: 0;
}

.site-offcanvas .site-offcanvas-navigation ul li {
    display: block;
}

.site-offcanvas .site-offcanvas-navigation ul li ul,
.site-offcanvas .site-offcanvas-navigation ul li+li {
    border-top: 1px solid #f0f0f0;
}

.site-offcanvas .site-offcanvas-navigation ul li>a {
    display: inline-block;
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    color: var(--primary-text-color);
}

.site-offcanvas .site-offcanvas-navigation ul li:hover>a {
    color: var(--primary-color-accent);
}


.site-offcanvas .site-offcanvas-navigation ul ul.sub-menu {
    display: none;
}

.site-offcanvas .site-offcanvas-navigation ul ul li {
    padding-left: 15px;
}

.site-offcanvas .site-offcanvas-navigation ul ul li a {
    font-size: 14px;
}

.site-offcanvas .site-offcanvas-navigation ul ul ul {
    margin-left: -15px;
}

.site-offcanvas .site-offcanvas-navigation ul ul ul li {
    padding-left: 30px;
}

.site-offcanvas .site-offcanvas-info {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--primary-text-color);
}

.site-offcanvas .site-offcanvas-info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
}

.site-offcanvas .site-offcanvas-info li+li {
    margin-top: 15px;
}

.site-offcanvas .site-offcanvas-info li i {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    font-style: normal;
    font-size: 14px;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-info li a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-info li:hover a,
.site-offcanvas .site-offcanvas-info li:hover i {
    color: var(--primary-color-accent);
}


.site-offcanvas .site-offcanvas-smi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 15px;
}

.site-offcanvas .site-offcanvas-smi li {
    padding: 15px;
}

.site-offcanvas .site-offcanvas-smi li a {
    display: block;
    color: inherit;
    font-size: 20px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-smi li a:hover {
    color: var(--primary-color-accent);
}

/*section 1*/
section.section-1 {
    position: relative;
}

#slideshow {
    position: relative;
}

#properties-image {
    font-size: 0;
}

#properties-image .property-image-slide~.property-image-slide {
    display: none;
}

#properties-image .property-image-slide {
    position: relative;
}

#properties-image .property-image-slide:before {
    /*
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,.45);
                */
}

#slideshow .property-image-slide img,
#slideshow .property-image-slide canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
}

#properties-details {
    width: 1278px;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 72px;
    left: 2.5%;
    right: 0;
    overflow: hidden;
}

.properties-details-slider {
    text-align: center;
}

#properties-details .slick-current .property-details-slide {
    opacity: 1;
}

#properties-details .property-details-slide {
    opacity: .7;
    color: #fff;
    line-height: 1;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    transition: opacity .3s;
}

.property-details-inner {
    border-left: 2px solid #fff;
    padding: 0 12px 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

#properties-details .property-index {
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    display: block;
    margin-bottom: 9px;
}

#properties-details .property-price {
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}

#properties-details .property-address {
    font-size: 14px;
    display: block;
}

.properties-image-slider-info {
    position: absolute;
    z-index: 2;
    bottom: 72px;
    left: 0;
    right: 0;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.properties-image-slider-info>*+* {
    margin-top: 5px;
}

.properties-image-slider-info > strong {
    display: block;
    font-family: var(--heading-font), serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.properties-image-slider-info > p {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.025em;
    text-align: center;
    color: #fff;
}

/*section 2*/
section.section-2 {
    background: fixed url(images/bg-quick-search.jpg) center/cover no-repeat;
}

section.section-2.overlay-bg:before {
    opacity: .85;
}

#quick-search {
    padding: 88px 0 72px;
    overflow: visible;
}

#quick-search h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

#quick-search p {
    font-size: 13px;
    color: #fff;
    text-align: right;
    padding-top: 30px;
}

.qs-form {
    font-size: 0;
}

.qs-icon,
.qs-field {
    display: inline-block;
    vertical-align: middle;
}

#quick-search .qs-field button[type="button"] span {
    color: #fff !important;
}

.qs-icon {
    width: 6.15%;
    color: #fff;
    font-size: 31px;
    margin-top: 4px;
}

.qs-field {
    padding-right: 8px;
    position: relative;
}

.qs-field i {
    font-size: 10px;
    color: #fff;
    position: absolute;
    right: 24px;
    top: 44%;
    pointer-events: none;
}

.qs-field select,
.qs-field input[type="text"]:not(.form-control),
.qs-field button[type="button"] {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
}

.qs-field select {
    padding-right: 25px;
}

.qs-field select::-ms-expand {
    display: none;
}

.qs-field select option {
    color: #000;
}

.qs-field button[type="button"] {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
    padding: 0 25px 0 0 !important;
}

.qs-field button[type="button"].dropdown-toggle:focus {
    outline: none !important;
}

.qs-field button[type="button"] span {
    color: #fff !important;
    font-size: 14px !important;
}

.qs-field select.qs-select {
    overflow: hidden;
}

.qs-field .qs-select input {
    height: 34px;
    font-size: 14px;
    border: 1px solid #ccc;
    color: #555;
}

.qs-lg {
    width: 20.95%;
}

.qs-sm {
    width: 10.28%;
}

.qs-btn {
    width: 10.83%;
    padding-right: 0;
    padding-left: 12px;
}

.qs-btn input[type="submit"] {
    width: 100%;
    height: 52px;
    border: none;
    font-size: 16px;
    letter-spacing: .26em;
    color: #fff;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    border: 1px solid #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

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

.qs-cta {
    text-align: center;
    margin-top: 45px;
    font-size: 0;
}

.qs-cta a.btn-a {
    margin: 0 15px 15px;
    width: 369px;
}

a.btn-a,
.btn-a {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    width: 338px;
    /*height: 64px;*/
    padding: 26px 0 23px;
    font-size: 13px;
    letter-spacing: .46em;
    color: var(--primary-text-color);
    font-family: var(--heading-font), serif;
    text-transform: uppercase;
    border: 1px solid var(--primary-text-color);
    background: transparent;
    text-align: center;
    -webkit-transition: background .3s, color .3s, border .3s;
    -o-transition: background .3s, color .3s, border .3s;
    transition: background .3s, color .3s, border .3s;
}

a.btn-a:hover,
.btn-a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

a.btn-a.light,
.btn-a.light {
    color: #fff;
    border: 1px solid #fff;
}

a.btn-a.light:hover,
.btn-a.light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

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

section.section-3 {
    padding: 44px 39px;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

#welcome {
    position: relative;
}

.welcome-left,
.welcome-right {
    width: 50%;
}

.welcome-text {
    text-align: center;
    width: 78%;
    margin: 0 auto 0;
}

.welcome-text .section-title-a {
    margin-bottom: 62px;
}

.section-title-a {
    font-family: var(--heading-font), serif;
    letter-spacing: .06em;
    line-height: 1;
    color: var(--primary-text-color);
    font-weight: 600;
    font-size: 40px;
    text-transform: uppercase;
}

.section-title-a span {
    display: block;
    font-family: var(--body-font), Sans-serif;
    letter-spacing: .16em;
    color: var(--primary-text-color-light);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 27px;
}

.welcome-text p {
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 1.75;
    font-weight: 300;
}

.welcome-text a.btn-a {
    display: block;
    margin-top: 80px;
    width: 400px;
    padding-left: 10px;
    padding-right: 10px;
}

.welcome-text a.btn-a:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.welcome-agent {
    position: relative;
}

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

section.section-4 {
    overflow: hidden;
    padding: 16px 28px;
}

#call-to-action {}

.cta-list {}

.cta {
    width: 33.3333333333%;
    padding: 0 11px;
}

.cta a {
    display: block;
    position: relative;
}

.cta a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: .85;
    z-index: 1;
    -webkit-transition: background .3s, opacity .3s;
    -o-transition: background .3s, opacity .3s;
    transition: background .3s, opacity .3s;
}

.cta a:hover:before {
    opacity: .45;
}

.cta a img {
    display: block;
    width: 100%;
    min-height: 190px;
    object-fit: cover;
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    -o-transition: filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.cta a:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.cta-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-details {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 36px;
    z-index: 2;
}

.cta-details span {
    font-size: 18px;
    color: #fff;
    letter-spacing: .26em;
    margin-bottom: 16px;
}

.cta-details:after {
    content: '';
    display: block;
    width: 64px;
    height: 2px;
    background: var(--secondary-color);
    margin: 47px auto 0;
}

section.section-5 {
    padding: 77px 0 70px;
}

#featured-communities {
    position: relative;
}

#featured-communities .section-title-a {
    text-align: center;
    margin-bottom: 69px;
}

#featured-communities .section-title-a span {
    margin: 21px 0 0;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: initial;
}

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

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

.fc-list ul li{
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 33.333333%;
}

.fc-list ul li a.fc {
    display: block;
    position: relative;
    width: 100%;
}

.fc-list ul li a.fc:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: .15;
    -webkit-transition: background .3s, opacity .3s;
    -o-transition: background .3s, opacity .3s;
    transition: background .3s, opacity .3s;
}

.fc-list ul li a.fc:hover:before {
    background: var(--primary-color);
    opacity: .5;
}

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

.fc-details {
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    font-size: 29px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    padding: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

#featured-communities a.btn-a {
    margin-top: 68px;
    max-width: calc(100% - 30px);
}

#featured-communities a.btn-a:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

section.section-6 {
    padding: 70px 0 124px;
    background: var(--background-color-accent);
}

#testimonials {
    padding: 0 39px;
}

#testimonials .container {
    max-width: 100%;
}

#testimonials .section-title-a {
    text-align: center;
    margin-bottom: 50px;
}

#testimonials .section-title-a:before {
    content: '\e800';
    display: block;
    font-style: normal;
    font-weight: normal;
    speak: none;
    text-decoration: inherit;
    text-align: center;
    font-family: "fontello";
    font-variant: normal;
    text-transform: none;
    color: var(--primary-color);
    font-size: 45px;
    margin-bottom: 33px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#testimonials .section-title-a span {
    margin: 21px 0 0;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: initial;
}

.testi-wrapper {
    position: relative;
}

.testi-list {
    position: relative;
}

.testi {
    text-align: center;
    padding: 0 13%;
}

.testi p {
    font-size: 19px;
    line-height: 29px;
    color: var(--primary-text-color);
}

.testi strong {
    display: block;
    font-weight: 700;
    font-size: 19px;
    color: var(--primary-text-color);
    text-transform: uppercase;
    margin-top: 64px;
}

.testi a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testi a:hover {
    opacity: 0.65;
}

#testimonials .slick-arrow {
    outline: none;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--primary-text-color);
    text-transform: uppercase;
    padding: 10px 0;
    position: absolute;
    top: -21px;
    z-index: 2;
    opacity: .5;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#testimonials .slick-arrow:hover {
    opacity: 1;
    color: var(--primary-color);
}

#testimonials .slick-prev {
    left: 11px;
}

#testimonials .slick-next {
    right: 11px;
}

#testimonials .slick-prev:after,
#testimonials .slick-next:before {
    content: '';
    display: inline-block;
    width: 86px;
    height: 1px;
    background: var(--primary-text-color);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

#testimonials .slick-prev:hover:after,
#testimonials .slick-next:hover:before {
    background: var(--primary-color);
}

#testimonials .slick-prev:after {
    margin-left: 16px;
}

#testimonials .slick-next:before {
    margin-right: 16px;
}


section.section-7 {
    position: relative;
    background: fixed url(images/bg-parallax.jpg) center/cover no-repeat;
}

section.section-7.overlay-bg:before {
    opacity: .9;
}

#headlines {
    padding: 63px 39px 81px;
    position: relative;
    z-index: 1;
}

#headlines:before {
    content: '';
    z-index: -1;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 53.35%;
    background: var(--background-color);
}

.headline-right-inner>.textwidget,
.headline-left-inner>.textwidget {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.headline-right {
    width: 38.15%;
    padding: 77px 25px 99px 0;
}

.headline-right-inner {
    text-align: left;
    max-width: 340px;
    height: 100%;
    margin: 0 auto;
}

.headline-right .section-title-a {
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 43px;
}

.headline-right p {
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 27px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.headline-right a.btn-a {
    display: block;
    margin: auto auto 0;
}

.headline-left {
    width: 61.85%;
}

.headline-list {
    position: relative;
}

a.headline {
    display: block;
    width: 100%;
    margin: 22px 0;
    position: relative;
}

.headline canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 330px;
}

.headline-details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 383px;
    max-width: 100%;
    padding: 0 47px 0;
    z-index: 1;
}

.headline-details:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: .85;
    -webkit-transition: background .3s, opacity .3s;
    -o-transition: background .3s, opacity .3s;
    transition: background .3s, opacity .3s;
    z-index: -1;
}

a.headline:hover .headline-details:before {
    opacity: .9;
}

.headline-details h3 {
    font-weight: 600;
    font-size: 31px;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 22px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.headline-details h3:hover {
    color: var(--primary-color-accent);
}

.headline-details h3:before {
    content: '';
    display: block;
    width: 64px;
    height: 2px;
    background: var(--secondary-color);
    margin-bottom: 22px;
}

.headline-details p {
    font-size: 17px;
    letter-spacing: .02em;
    font-weight: 300;
    line-height: 26px;
    color: var(--secondary-color);
    margin-bottom: 48px;
}

.headline-details span {
    display: block;
    font-size: 13px;
    letter-spacing: .46em;
    font-family: var(--heading-font), serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.headline-details span:hover {
    color: var(--primary-color-accent);
}

.headline-left a.btn-a {
    display: block;
    margin: 28px auto 11px;
}


section.section-8 {
    position: relative;
    background: fixed url(images/bg-parallax-2.jpg) center/cover no-repeat;
    color: var(--secondary-color);
}

section.section-8.overlay-bg:before {
    opacity: .9;
}

#work-with-us {
    padding: 66px 0 70px;
}

#work-with-us p {
    font-size: 17px;
    line-height: 23px;
    letter-spacing: .02em;
}

#work-with-us .section-title-a {
    line-height: 1.2;
    width: 35.15%;
    padding-right: 6%;
    color: var(--secondary-color)
}

.wwu-text {
    width: 64.85%;
    margin-top: 4px;
    padding-right: 6%;
}

.wwu-text p {
    font-weight: 300;
    margin-bottom: 42px;
}

.wwu-text a.btn-a {
    width: 272px;
}

.wwu-form {
    margin-top: 4px;
    position: relative;
}

.wwu-form p {
    font-weight: 600;
    margin-bottom: 30px;
}

.wwu-form input[type="email"] {
    width: 100%;
    height: 50px;
    border: solid 1px transparent;
    border-bottom: 1px solid var(--primary-color-accent);
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: .02em;
    background: transparent;
    padding: 0 5px;
    transition: all .25s ease-in-out;
}

.wwu-form input[type="email"]:focus {
    border-color: #fff;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px #fff, 0 0 8px #fff;
    box-shadow: inset 0 0 1px #fff, 0 0 8px #fff;
}

.wwu-form label {
    display: inline;
}

.wwu-form input[type="submit"] {
    display: block;
    font-family: var(--heading-font), serif;
    text-transform: uppercase;
    letter-spacing: .46em;
    background: transparent;
    padding: 0;
    border: none;
    font-size: 13px;
    margin-top: 48px;
    padding: 10px 0;
    -webkit-transition: background .3s, color .3s, border .3s;
    -o-transition: background .3s, color .3s, border .3s;
    transition: background .3s, color .3s, border .3s;
}

.wwu-form input[type="submit"]:hover {
    color: var(--primary-color-accent);
}

.wwu-form .ajax-loader {
    position: absolute;
    bottom: -12px;
    left: 0;
    margin: 0;
}

.wwu-form span.wpcf7-not-valid-tip {
    font-size: 12px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.wwu-form .wpcf7-response-output {
    text-align: center;
    margin: 0;
    font-size: 13px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

section.section-9 {
    position: relative;
}

#social-media {
    position: relative;
}

.smi-list {
    font-size: 0;
    text-align: center;
}

.smi-list ul{
    display: block;
    position: relative;
}

.smi-list ul li{
    display: inline-block;
    vertical-align: top;
    width: 20%;
}

.smi-list ul li a {
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
}

.smi-list ul li a:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 44px;
    z-index: 1;
    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;
}

.smi-list ul li a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-overlay-color);
    opacity: .3;
    -webkit-transition: background .3s, opacity .3s;
    -o-transition: background .3s, opacity .3s;
    transition: background .3s, opacity .3s;
}

.smi-list ul li:hover a:after {
    opacity: .5;
}

.smi-list ul li a canvas {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.smi-list ul li a video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.8s ease-in-out;
}

/*footer*/
footer.footer-wrapper {
    background: var(--primary-color);
    padding: 86px 0 36px;
}

.footer-top {}

.footer-top .logo {}

.footer-top .logo img {
    max-width: 200px;
}

.footer-top .footer-logo-list {
    display: flex;
    flex-flow: row wrap;
}

.footer-top .footer-logo-list a {
    color: var(--secondary-color);
}

.footer-top .footer-logo-list>div+div {
    margin-left: 30px;
}

.footer-top .contact-info {
    font-size: 18px;
    color: var(--secondary-color);
    line-height: 1;
}

.contact-info .contact {
    width: 50%;
    margin-top: 2px;
    line-height: 1.5;
}

.contact span.dre {
    font-size: 12px;
}

.footer-top .contact+.contact {
    padding-left: 13px;
}

.footer-top .contact.smi {
    display: flex;
}

.ip-container .footer-top .contact.smi {
    position: relative;
    margin-left: auto;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
}

.footer-top .contact.smi span {
    padding: 0 10px;
}

.contact strong,
.contact span {
    display: block;
    margin-bottom: 14px;
}

.contact strong {
    font-weight: 600;
    font-size: 18px;
}

.footer-top .contact-info a {
    transition: all .25s ease-in-out;
}

.footer-top .contact-info a:hover {
    color: var(--primary-color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 84px;
    color: #fff;
    padding: 36px 0 0;
}

.footer-disclaimer {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-disclaimer p {
    padding: 12px 0;
    line-height: 1.6;
}

.footer-disclaimer a:focus,
.footer-disclaimer a:hover {
    color: var(--primary-color-accent);
}

.footer-copyright {
    font-size: 13px;
    color: var(--secondary-color);
}

.footer-copyright a {
    transition: all .25s ease-in-out;
}

.footer-copyright a:hover {
    color: var(--primary-color-accent);
}

.footer-icons {
    font-size: 23px;
    text-align: right;
    color: var(--secondary-color);

}

.footer-icons i {
    font-size: 27px;
}

.footer-icons i.ai-font-realtor-mls {
    margin-left: 8px;
}

/*keyframes | Custom animations*/
.animated.cu-fadeInUp {
    animation-name: cu-fadeInUp;
}

.animated.cu-fadeInRight {
    animation-name: cu-fadeInRight;
}

.animated.cu-fadeInLeft {
    animation-name: cu-fadeInLeft;
}

.animated.cu-fadeInDown {
    animation-name: cu-fadeInDown;
}

@-webkit-keyframes cu-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cu-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes cu-fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cu-fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes cu-fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cu-fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes cu-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cu-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/*keyframes | Custom animations*/

/*******************************************************
 *
 * 2. IP Styles
 *
 *******************************************************/
.ip-banner-wrap {
    position: relative;
}

.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, .45);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 300px;
    background-color: #f9f7f7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(images/ip-banner.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;
}

.ip-banner-breadcrumbs {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.023em;
    text-transform: uppercase;
    color: #fff;
}

.ip-banner-breadcrumbs a:hover {
    color: var(--primary-color);
}

/** Inner Page Default Breadcrumbs */
#inner-page-wrapper p#breadcrumbs {
    display: none;
}

/** End of Inner Page Default Breadcrumbs */
/* wpaccessibility.io */
#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
    transform: translateY(-100%) translateY(50px);
}

/* wpaccessibility.io : END */
/* 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%;
    float: left;
}

#content-full #content:after {
    content: '';
    display: table;
    clear: both;
}

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

#content{
    font-weight: 300;
}
/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--primary-text-color);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    margin: 34px 0 41px;
    padding: 0 15px;
}

#content .entry-title span,
#content .archive-title span {
    display: block;
    font-family: var(--body-font);
    font-size: 14px;
    letter-spacing: .02em;
    color: var(--subheading-text-color-dark);
    text-transform: initial;
    font-weight: 400;
    margin-top: 3px;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--primary-text-color);
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1.1;
}

#content .archive-subtitle a {
    transition: all .25s ease-in-out;
}

#content .entry-title.community-title{
    margin: 0 0 20px;
}

#inner-page-wrapper {
    margin-bottom: 58px;
}

.page-featured-photo {
    position: relative;
    padding: 0 39px;
    margin-bottom: 22px;
}

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

#content .page-featured-photo small {
    display: block;
    text-align: right;
    font-style: italic;
    letter-spacing: .04em;
    font-size: 14px;
    color: var(--body-text-color-dark);
    margin-top: 13px;
}

.page-qoute {
    font-style: italic;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: .02em;
    color: var(--body-text-color-dark);
    padding-right: 30px;
    margin-top: 27px;
}

#content p {
    margin: 28px 0;
    line-height: 1.75;
    letter-spacing: .02em;
  
}

#content p#breadcrumbs {
    margin: 0;
}

#inner-page-wrapper>div:not(.container) #content p#breadcrumbs {
    padding: 0 39px;
}

/*ip sections*/
section.ip-section-1 {
    padding: 0 28px;
    overflow: hidden;
}

section.ip-section-1 .cta a img {
    height: 207px;
    object-fit: cover;
}

section.ip-section-1 .cta .cta-details:after {
    margin-top: 23px;
}

section.ip-section-2 {
    padding: 39px 39px;
}

#contact-us {
    /*margin-top: 152px;*/
}

#contact-us .section-title-a {
    text-align: center;
}

.contact-form {
    width: 50%;
    margin: 0 auto;
}

.contact-form-inner {
    max-width: 514px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.contact-form p {
    text-align: center;
    line-height: 1.75;
    letter-spacing: .02em;
    font-weight: 300;
    margin: 11px 0 29.5px;
}

#ip-amante-ii-contact .custom-page-col input[type="text"],
#ip-amante-ii-contact .custom-page-col input[type="email"],
#ip-amante-ii-contact .custom-page-col input[type="tel"],
#ip-amante-ii-contact .custom-page-col textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    height: 51px;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--primart-body-color);
    margin: 3.5px 0;
    border: solid 1px transparent;
    border-bottom: solid 1px var(--border-color-light);
    transition: all .25s ease-in-out;
    padding: 0 10px;
}

#ip-amante-ii-contact .custom-page-col textarea,
.contact-form textarea {
    padding-top: 19px;
    height: 85px;
    resize: none;
}

#ip-amante-ii-contact .custom-page-col input[type="text"]:focus,
#ip-amante-ii-contact .custom-page-col input[type="email"]:focus,
#ip-amante-ii-contact .custom-page-col textarea:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--border-color-light);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px var(--border-color-light), 0 0 8px var(--border-color-light);
    box-shadow: inset 0 0 1px var(--border-color-light), 0 0 8px var(--border-color-light);
}

.contact-form .btn-a {
    margin-top: 48px;
}

.contact-form .btn-a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.ip-container .contact-form div.wpcf7 .ajax-loader {
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-form div.wpcf7-response-output {
    position: absolute;
    left: 0;
    right: 0;
    margin: 15px 0 0;
    text-align: center;
    color: var(--primary-text-color);
}

.contact-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: auto;
}

.ip-container .contact-form div.wpcf7-response-output {
    position: static;
}

.contact-photo {
    width: 50%;
    display: none;
}

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

.contact-map {
    position: relative;
    width: 100%;
    margin-top: 39px;
}

.contact-map iframe {
    display: block;
    width: 100%;
}

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

#content .archive-list h2 a:hover {
    color: var(--primary-color);
}

#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;
    transition: all 0.3s ease-in-out;
}

#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;
    transition: all 0.3s ease-in-out;
}



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

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

#content .archive-more:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

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

/** 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) */

/** IHF Common Issues Fixes */
body>img,
body>iframe[name*="__bkframe"] {
    display: none;
}

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

#ihf-main-container .nav-tabs {
    margin-left: 0;
}

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

.ihf-grid-result-address {
    display: block;
}

#ihf-main-container #ihf-refine-map-search-form .checkbox,
#ihf-main-container #ihf-refine-map-search-form .col-xs-8 {
    padding: 0;
}

#ihf-agent-sellers-rep>div[style] {
    max-width: 100%;
}

/** End of IHF Common Issues Fixes */

/** Disable all element peek on mobile */
.mobile [data-aios-animation] {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/** End of Disable all element peek on mobile */

/** Slick Lazy Loader Class */
.slick-lazy-loader {
    position: relative;
    z-index: 1;
}

.slick-lazy-loader:before {
    content: "\b0170";
    position: absolute;
    z-index: -1;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
    color: #000;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/** End of Slick Lazy Loader Class */
/** Listings Module Over-ride **/
#listings-results .listings-sort .dropdown-menu input[type=submit] {
    border: 1px solid transparent !important;
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

#listings-results .listings-sort .dropdown-menu input[type=submit]:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

#listings-results .listings-sort ul li.active a,
#listings-results .listings-sort ul li a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

#aios-listings-loader {
    background: var(--background-color);
}

.loader-spinner .dot1,
.loader-spinner .dot2 {
    background-color: var(--primary-text-color);
}


#listings-results .listings-list .listings-price {
    color: var(--primary-text-color)
}

#listings-results .listings-sort .sort-dropdown button {
    color: var(--primary-text-color);
}

#listings-results .listings-list .listings-col,
#listings-results .listings-list .listings-item {
    z-index: 7;
}

#listings-results .listings-list .listings-col:nth-child(odd),
#listings-results .listings-list .listings-col {
    background: transparent !important;
}

#listings-results .listings-list .listings-col:nth-child(odd):after {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #676767;
    opacity: 0.3;
}


#listings-results .listings-sort .dropdown-menu span {
    color: #000;
}

#listings-results .listings-table {
    border-color: var(--primary-text-color) !important;
}

#listings-results .listings-table .listings-table-body .listings-col {
    background: transparent !important;
}

#listings-results .listings-table .listings-table-header {
    border-color: var(--primary-text-color) !important;
    position: relative;
}

#listings-results .listings-table .listings-table-header {
    background: transparent !important;
}

#listings-results .listings-table .listings-table-header:after {
    display: block;
    background: #676767;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
}

#listings-results .listings-table .listings-table-body .listings-price {
    color: var(--primary-text-color);
}

#listings-details .listings-address,
#listings-details .listings-address span,
#listings-details .listings-plan>ul>li,
#listings-details .listings-plan span,
#listings-details .listings-description p,
#listings-details .listings-link-navigation-arrow {
    color: var(--primary-text-color);
}

#listings-details .listings-cta>li>a,
#listings-details .listings-accordion-title,
#listings-details .listings-accordion-content ul li {
    color: var(--primary-text-color) !important;
    border-color: var(--primary-text-color) !important;
}

#listings-details .listings-cta>li>a:hover {
    color: var(--secondary-color) !important;
}

#listings-results .listings-list .listings-link {
    background: transparent !important;
    color: var(--primary-text-csolor) !important;
    border: 1px solid var(--primary-text-color) !important;
}

#listings-details .listings-accordion-content {
    border-color: var(--primary-text-color);
}

#listings-results .listings-list .listings-link:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

#listings-details .listings-link-navigation-main {
    color: var(--primary-text-color);
    border: 2px solid var(--primary-text-color);
}

#listings-details .listings-link-navigation-main:hover {
    border: 2px solid var(--aios-listing-primary-color);
}

#listings-details .listings-accordion-content ul:before {
    background: var(--primary-text-color);
}

.listings-address a:hover {
    color: var(--primary-color);
}

/** Listings Module Over-ride **/
.aios-social-media-error {
    font-size: 30px;
}

.aiosp-wrap div[class*="aios-testimonials-popup-"] .aiosp-content {
    background: var(--background-color) !important;
}

#content .entry-content a {
    color: #337ab7;
}

#content h1,
aside h1,
#content h2,
aside h2,
#content h3,
aside h3,
#content h4,
aside h4,
#content h5,
aside h5,
#content h6,
aside h6,
#content b,
aside h6,
#content strong,
aside strong {
    font-weight: 700;
}

.error-page-content-wrapper .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: max-content;
}

.error-page-content-wrapper .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

.aios-contact-form .custom-page-col input[type="submit"] {
    font-family: var(--heading-font);
}

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