/*
Theme Name: Smythe and Co. Real Estate - Redesigned
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.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.  Reset
2.  Custom CSS
3.  Unreset inner pages and widget areas
4.  Submenus
5.  Single column and two-column layouts
6.  Archive
7.  Sidebar
8.  Misc Wordpress classes
9.  AIOS Listings
10. Mobile styles

*/
/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/
:root {
    /** Font default */
    --font-family-default: 'Lato', sans-serif;
    --font-family-title: 'Noto Serif', serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #393939;
    --secondary: #2b878c;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}
/*******************************************************
 *
 * 1. Reset
 *
 *******************************************************/

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    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; */
}
body.home {
    /*font-family: Arial, Helvetica, Georgia, Sans-serif;
    font-size: 12px;
    background: #fff;
    color: #000000;*/
}
body.ip-container {
    background: url(images/ip_body_bg.jpg) no-repeat fixed 0 0 transparent;
    background-size: cover;
    /*width: 100%;
    height: 100%;*/
}
:before,
:after {
    pointer-events: none;
}
#main-wrapper {
    overflow: hidden;
}


.outer {
    width: 100%;
    max-width: 1257px;
    margin: 0 auto;
}

.inner {
    width: 1257px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}

/* Text formatting */

a:link,
a:visited {
    text-decoration: none;
    color: #000000;
}

a:hover {
    color: #5f5f5f;
}

/* Header */

#header {
    padding: 50px 0;
}

#header a.site-name {
    font-size: 30px;
    color: #333;
}

.header-wrapper {
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 99;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
    padding: 0 0;
}
.header-wrapper .header-container {
    width: 1257px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 54px 15px 20px;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-wrapper .header-container * {
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-wrapper .header-logo {
    display: inline-block;
    position: relative;
    vertical-align: top;
    /*margin-top: 65px;*/
    width: 296px;
}
.header-wrapper>.header-container>.header-logo {
    display: block;
    margin: 0 auto;
}

.site-name>img {
    width: 100%;
}

.header-wrapper .header-navigation {
    /*display: inline-block;
        position: relative;
        vertical-align: top;
        margin-top: 63px;
        float: right;*/
}
.header-wrapper .menu-nav-menu-container,
.header-wrapper .menu-main-navigation-container {
    display: flex;
    flex-flow: row width;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */

.header-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
}

.header-nav>li {
    display: inline-block;
    position: relative;
    margin-left: 30px;
    z-index: 99;
}
.header-nav>li:first-child {
    margin-left: 0;
}
.header-nav>li>a:before {
    content: '';
    position: absolute;
    /*top: 76%;*/
    top: calc(100% + 54px);
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-bottom: 12px solid #FFFFFF;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    opacity: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-nav>li:focus-within>a:before,
.header-nav>li:hover>a:before {
    opacity: 1;
}

.header-nav>li>a {
    display: block;
    text-decoration: none;
    /*padding: 10px 12px 0;*/
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 9;
    position: relative;
}

.header-nav>li:focus-within>a,
.header-nav>li:hover>a {
    /*border: thin solid #FFFFFF;*/
    /*border-radius: 20px 20px 20px;*/
}
.header-nav>li>a:after {
    pointer-events: none;
    content: " ";
    border: thin solid #2b878c;
    display: block;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    margin: auto;
    opacity: 0;
    /*left: 0;*/
    border-radius: 20px 20px 20px;
    position: absolute;
    background: #2b878c;
    z-index: 0;
    opacity: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-nav>li:focus-within>a:after,
.header-nav>li:hover>a:after {
    opacity: 1;
    z-index: -1;
}
.hdrnav-right {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}


/*Slideshow*/

.slider-wrapper {
    position: relative;
    z-index: 0;
    background: #333333;
    width: 100%;
    height: 100%;
}
.ss-wrap {
    position: relative;
    z-index: -2;
}
.ss-canvas {
    position: relative;
    z-index: 0;
}
.ss-canvas canvas {
    width: 100%;
    height: auto;
    display: block;
}
.slider {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.slider:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
}
.slider .cycloneslider {
    z-index: 0;
}

/*CTA*/

.cta-wrapper {
    width: 100%;
    min-width: 1287px;
    padding: 0 15px;
    max-width: 100%;
    background: #363636;
    height: 190px;
    position: relative;
}
.cta-container {
    width: 1287px;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.cta-btn {
    width: 1287px;
    padding: 0 15px;
    max-width: 100%;
    margin: -155px auto;
    left: 0;
    right: 0;
    position: absolute;
}
.cta-btn ul {}
.cta-btn ul li {
    display: inline-block;
    position: relative;
    padding: 0 13px 0;
}

.cta-btn ul li:first-child {
    padding-left: 0;
}
.cta-btn ul li:last-child {
    padding-right: 0;
}

.cta-btn ul li a {
    display: inline-block;
    position: relative;
}
.cta-btn ul li a img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    object-fit: cover;
    object-position: center;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.cta-btn ul li a:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
.bwWrapper {
    position: relative;
    display: block;
}

/*CTA H3*/
.cta-btn ul li a h3 {
    font-size: 36px;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    left: 0;
    /* top: 62%; */
    right: 0;
    bottom: 20%;
    min-height: 72px;
    text-shadow: 3px 3px 5px #000;
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 300;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.cta-btn ul li a:hover h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    min-height: 0px;
    padding-bottom: 30px;
}
.cta-btn ul li a h3:after {
    display: block;
    content: "";
    background: #000;
    font-family: 'Crete Round', serif;
    font-size: 26px;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    left: 0;
    /* top: 41px; */
    top: calc(100% - 15px);
    right: 0;
    text-shadow: 3px 3px 5px #000;
    opacity: 0;
    border-bottom: 15px solid #2b878c;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.cta-btn ul li a:hover h3:after {
    opacity: 1;
}


/*Sidebar CTA*/

.sb-cta-btn {
    margin: 70px auto 0;
    position: relative;
    vertical-align: top;
}
.sb-cta-btn ul {
    margin: 0 0 !important;
}
.sb-cta-btn ul li {
    display: block;
    position: relative;
    padding: 0;
}
.sb-cta-btn li a {
    display: block;
    position: relative;
}
.sb-cta-btn li a img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.sb-cta-btn li a:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
.sb-cta-btn ul li:first-child {
    padding-left: 0;
}
.sb-cta-btn ul li:last-child {
    padding-right: 0;
}

.sb-cta-btn ul li a {
    display: inline-block;
    position: relative;
}


/*CTA H3*/
.sb-cta-btn ul li a h3 {
    font-family: 'Crete Round', serif;
    font-size: 26px;
    padding: 0 15px;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    left: 0;
    top: 25%;
    right: 0;
    text-shadow: 3px 3px 5px #000;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.sb-cta-btn ul li a:hover h3 {
    position: absolute;
    left: 0;
    top: 97px;
    right: 0;
}
.sb-cta-btn ul li a:after {
    display: block;
    content: "";
    background: #000;
    font-family: 'Crete Round', serif;
    font-size: 26px;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-shadow: 3px 3px 5px #000;
    opacity: 0;
    border-bottom: 15px solid #2b878c;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.sb-cta-btn ul li a:hover:after {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}




/*Testimonials*/

.testimonial-wrapper {
    width: 100%;
    display: none;
}
.testimonial-container {
    width: 1287px;
    margin: 0 auto;
    padding: 0 15px 95px;
    max-width: 100%;
}

/********CAROUSEL*********/

#fp-content {
    display: block;
    width: 100%;
    margin: 60px 0 0;
    position: relative;
    text-align: center;
}

/** Carousel **/

.jcarousel-wrapper {
    margin: 0 auto;
    position: relative;
    clear: both;
    width: 1287px;
    max-width: 100%;
    padding: 0 16px;
}

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 1152px;
    max-width: 100%;
    margin: 0 auto;
}

.jcarousel ul {
    /*width: 20000em;*/
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcarousel ul:not(.slick-initialized) li:not(:first-child) {
    display: none;
}
.jcarousel li {
    float: left;
    width: 1152px;
    margin: 0 0 0 5px;
}

.jcarousel li .fp-details {
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    color: #4b4b4b;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 28px;
}

.jcarousel li .fp-details .price {
    font-size: 28px;
}

.jcarousel li:first-child {
    margin: 0;
}

.jcarousel img {
    display: block;
    width: 100%;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 34%;
    margin-top: 0;
    width: 34px;
    z-index: 999;
    background: none;
}

.jcarousel-control-prev {
    left: 5px;

}
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
    opacity: 0.5;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
}

.jcarousel-control-next {
    right: 10px;
}

.jcarousel ul li a:hover .fp-add {
    color: #fff;
}

.testimonials-content {
    font-family: 'Crete Round', serif;
    font-size: 27px;
    font-weight: normal;
    color: #272727;
    font-style: italic;
    letter-spacing: 4px;
    line-height: 1.185;
    padding: 0 45px;
}
.testimonials-content br {
    display: none;
}
.testimonials-name {
    font-family: 'Crete Round', serif;
    font-size: 27px;
    font-weight: normal;
    color: #2b878c;
    font-style: italic;
}

.testimonials-content:after {
    display: block;
    content: "";
    width: 43px;
    height: 33px;
    background: url(images/quote_right_15.png) no-repeat;
    position: relative;
    right: -40px;
    bottom: 20px;
    opacity: 1;
    margin-left: auto;
}
.testimonials-content:before {
    display: block;
    content: "";
    width: 43px;
    height: 33px;
    background: url("images/quote_left_03.png") no-repeat;
    position: relative;
    left: -43px;
    top: 19px;
    opacity: 1;

}



/*Welcome*/

.welcome-wrapper {
    background: url(images/welcome_bg_02.jpg) no-repeat;
    background-size: cover;
    height: auto;
    padding: 0 0 75px;
}
.welcome-container {
    width: 1287px;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
}
.welcome-title {
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-top: 45px;
}
.welcome-content {
    font-family: 'Open Sans', serif;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: justify;
    padding-top: 26px;
    line-height: 1.388;
    width: 100%;
    max-width: 865px;
    margin: 0 auto;
}


/* Footer */

.footer-wrapper {
    background: #2b878c;
    padding: 31px 15px;
}
.footer-container {
    width: 1287px;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
}
.footer-navigation {
    display: inline-block;
}
/* Footer navigation */

.footernav {
    margin-bottom: 10px;
}
.footernav:after {
    content: '';
    display: block;
    clear: both;
}
.footernav li {
    padding: 2px 16px;
    float: left;
    display: inline-block;
    border-left: 1px solid #FFF;
}

.footernav li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;

}
.footernav li a:hover {
    color: #393939;
}

.footernav li:first-child {
    border-left: none;
    padding-left: 0;
}


.footer-copyright {
    padding: 5px 0;
    text-align: left;
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;

}
.footer-copyright a {
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
}
.footer-copyright a:hover {
    color: #393939;
}

.footer-left {
    display: inline-block;
    position: relative;
    vertical-align: top;
}
.footer-right {
    display: inline-block;
    position: relative;
    vertical-align: top;
    float: right;
    left: -10px;
}
.footer-smi {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    border-right: thin solid #FFFFFF;
    padding-right: 10px;
}
.smi-icon {
    display: inline-block;
    position: relative;
    vertical-align: top;
    padding: 0 6px;
}
.smi-icon a {
    font-size: 45px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}
.smi-icon a:hover {
    color: #393939;
}
.footer-icon {
    /*background: url("images/icon_mls_03.png") right no-repeat;
    height: 27px;
    width: 119px;
    */
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    vertical-align: middle;
    padding-left: 10px;
    color: #fff;
    font-size: 32px;
}
.footer-icon span {}
.footer-icon span.ai-font-eho {
    font-size: 0.75em;
    margin: 0 6px 0 0;
}




/*******************************************************
 *
 * 3. Unreset inner pages and widget areas
 *
 *******************************************************/

#content,
.widget-set {
    line-height: 1.2
}
#content th,
.widget-set th {
    font-weight: bolder;
}
#content h1,
.widget-set h1 {
    font-size: 2em;
    margin: .67em 0
}
#content h2,
.widget-set h2 {
    font-size: 1.5em;
    margin: .75em 0
}
#content h3,
.widget-set h3 {
    font-size: 1.17em;
    margin: .83em 0
}
#content h4,
.widget-set h4,
#content p,
.widget-set p,
#content blockquote,
.widget-set blockquote,
#content ul,
.widget-set ul,
#content fieldset,
.widget-set fieldset,
#content form,
.widget-set form,
#content ol,
.widget-set ol,
#content dl,
.widget-set dl,
#content dir,
.widget-set dir #content menu,
.widget-set menu {
    margin: 1.12em 0;
    line-height: 1.7
}
#content h5,
.widget-set h5 {
    font-size: .83em;
    margin: 1.5em 0
}
#content h6,
.widget-set h6 {
    font-size: .75em;
    margin: 1.67em 0
}
#content h1,
.widget-set h1,
#content h2,
.widget-set h2,
#content h3,
.widget-set h3,
#content h4,
.widget-set h4,
#content h5,
.widget-set h5,
#content h6,
.widget-set h6,
#content b,
.widget-set h6,
#content strong,
.widget-set strong {
    font-weight: bolder
}
#content blockquote,
.widget-set blockquote {
    margin-left: 40px;
    margin-right: 40px
}
#content i,
.widget-set i,
#content cite,
.widget-set cite,
#content em,
.widget-set em,
#content var,
.widget-set var,
#content address,
.widget-set address {
    font-style: italic
}
#content pre,
.widget-set pre,
#content tt,
.widget-set tt,
#content code,
.widget-set code,
#content kbd,
.widget-set kbd,
samp {
    font-family: monospace
}
#content big,
.widget-set big {
    font-size: 1.17em
}
#content small,
.widget-set small,
#content sub,
.widget-set sub,
#content sup,
.widget-set sup {
    font-size: .83em
}
#content sub,
.widget-set sub {
    vertical-align: sub
}
#content sup,
.widget-set sup {
    vertical-align: super
}
#content table,
.widget-set table {
    border-spacing: 2px;
}
#content thead,
.widget-set thead,
#content tbody,
.widget-set tbody,
#content tfoot,
.widget-set tfoot {
    vertical-align: middle
}
#content td,
.widget-set td,
#content th,
.widget-set th,
#content tr,
.widget-set tr {
    vertical-align: inherit
}
#content hr,
.widget-set hr {
    border: 1px inset
}
#content ol,
.widget-set ol,
#content ul,
.widget-set ul,
#content dir,
.widget-set dir,
#content menu,
.widget-set menu,
#content dd,
.widget-set dd {
    margin-left: 40px
}
#content ol,
widget-set ol {
    list-style-type: decimal
}
#content ol ul,
.widget-set ol ul,
#content ul ol,
.widget-set ul ol,
#content ul ul,
.widget-set ul ul,
#content ol ol,
.widget-set ol ol {
    margin-top: 0;
    margin-bottom: 0
}
#content ol,
.widget-set ol {
    list-style-type: decimal
}
#content ul,
.widget-set ul {
    list-style-type: disc
}

/*******************************************************
 *
 * 4. Submenus
 *
 *******************************************************/
#header-nav {
    display: none;
}
.header-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
    padding: 0;
    position: absolute;
    width: 217px;
    left: 0;
}
.header-nav>li>.sub-menu {
    left: -50vw;
    right: -50vw;
    margin: 0 auto;
    padding: 67px 0 0;
}
.header-nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    font-size: 12px;
    padding: 8px 21px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;

}
.header-nav .sub-menu li:focus-within>a,
.header-nav .sub-menu li:hover>a {
    background: rgba(15, 16, 18, 0.7);
    color: #FFFFFF;
    border-bottom: 1px solid #a0a1a3;
}
.header-nav .sub-menu li:first-child a {}
.header-nav .sub-menu .sub-menu {
    margin-left: 100%;
    margin-top: 0;
}
.header-nav li:focus-within>.sub-menu,
.header-nav li:hover>.sub-menu {
    opacity: 1;
    pointer-events: auto;
}
.header-nav .sub-menu li {
    position: relative;
    display: block;
    background: rgba(49, 44, 42, 0.7);
}

.header-nav li#menu-item-34 .sub-menu {
    width: 190px;
}





/*******************************************************
 *
 * 5. Single column and two-column layouts
 *
 *******************************************************/

.inner {
    padding: 180px 0 0;
}
#content-sidebar,
#content-full {
    /*width:1287px;
    padding: 0 15px;
    max-width: 100%;*/
    margin: 0 auto;
}
body[class*="single-aios-rm"] #content-sidebar,
body[class*="single-aios-rm"] #content-full {
    background: #fff;
}
body[class*="single-aios-rm"] .sidebar {
    display: none;
}
body[class*="single-aios-rm"] #content-sidebar #content,
body[class*="single-aios-rm"] #content-full #content {
    width: 100%;
}
body[class*="ihomefinder-results"] #content-sidebar,
body[class*="ihomefinder-results"] #content-full,
body[class*="aios-custom-ihomefinder-shortcode"] #content-sidebar,
body[class*="aios-custom-ihomefinder-shortcode"] #content-full {
    background: #fff;
    width: auto;
    margin: 180px auto 0;
    position: relative;
}
body[class*="ihomefinder-results"] #main-wrapper:before,
body[class*="ihomefinder-results"] #main-wrapper:before,
body[class*="aios-custom-ihomefinder-shortcode"] #main-wrapper:before,
body[class*="aios-custom-ihomefinder-shortcode"] #main-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.35;
}
body[class*="ihomefinder-results"] #content-sidebar #content,
body[class*="ihomefinder-results"] #content-full #content,
body[class*="aios-custom-ihomefinder-shortcode"] #content-sidebar #content,
body[class*="aios-custom-ihomefinder-shortcode"] #content-full #content {
    position: relative;
    z-index: 1;
}
body[class*="ihomefinder-results"].aios-custom-ihomefinder-results-template #content-sidebar .entry-title,
body[class*="ihomefinder-results"].aios-custom-ihomefinder-results-template #content-full .entry-title,
body[class*="aios-custom-ihomefinder-shortcode"] #content-sidebar .entry-title,
body[class*="aios-custom-ihomefinder-shortcode"] #content-full .entry-title {
    width: 100%;
    padding: 0 0;
}
body[class*="ihomefinder-details"] #inner-page-wrapper>.inner {
    width: 100%;
    max-width: none;
    padding: 0 0 0;
}
body[class*="ihomefinder-details"] .content-wrapper,
body[class*="aios-custom-ihomefinder-results"] .content-wrapper {
    width: 100%;
    padding: 0 0;
}
body[class*="ihomefinder-details"] #content-sidebar #content {
    float: none;
    width: 100%;
    padding: 0 0 0;
}
body[class*="ihomefinder-details"] #content p.postmetadata,
body[class*="ihomefinder-details"] .sidebar {
    display: none;
}
#content .listings-printable-disclaimer-seller-rep img {
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
#listings-details .listings-disclaimer-seller-rep img,
#listings-details .listings-seller-rep img {
    height: auto;
}
body.aios-custom-ihomefinder-printable-template #inner-page-wrapper>.inner {}
body.aios-custom-ihomefinder-printable-template .hentry>*:not(.entry-content) {
    display: block !important;
}
body.aios-custom-ihomefinder-printable-template #content p.postmetadata,
body.aios-custom-ihomefinder-printable-template p#breadcrumbs,
body.aios-custom-ihomefinder-printable-template #inner-page-wrapper .agent-entry-title,
body.aios-custom-ihomefinder-printable-template #inner-page-wrapper .entry-title,
body.aios-custom-ihomefinder-printable-template #content .entry-title,
body.aios-custom-ihomefinder-printable-template #content .archive-title,
body.aios-custom-ihomefinder-printable-template .sidebar {
    display: none !important;
}
body.aios-custom-ihomefinder-printable-template #content-sidebar #content,
body.aios-custom-ihomefinder-printable-template #content-full #content {
    padding: 0 0;
}
body.aios-custom-ihomefinder-printable-template #inner-page-wrapper>.inner {
    padding: 0;
    width: auto;
    max-width: none;
}
body.aios-custom-ihomefinder-printable-template .content-wrapper {
    width: auto;
    padding: 0 0;
}
#aios-testimonials.aios-testimonials-page {
    background: #fff;
    padding: 20px 15px;
}
#content-sidebar:after,
#content-full:after {
    content: "";
    display: table;
    clear: both;
}
body.post-page-communities #content,
body[class*="meet-the-team"] #content,
body.single-aios-agents #content {
    background: #fff;
    padding: 10px 15px;
}
body[class*="get-a-free-home-valuation"] {}
body[class*="get-a-free-home-valuation"] #inner-page-wrapper {
    margin-bottom: 0;
}
body[class*="get-a-free-home-valuation"] #inner-page-wrapper>.inner {
    width: auto;
    max-width: none;
    padding: 0;
}
body[class*="get-a-free-home-valuation"] #aios-home-valuation-wrap {
    padding: 180px 0 100px;
}
body.single-aios-communities #inner-page-wrapper>.inner {
    width: auto;
    max-width: none;
}

body.single-aios-communities #content-full #content {
    padding: 20px 15px;
    background: #fff;
}

/* Content area with sidebar */

#content-sidebar #content {
    float: left;
    width: calc(100% - 355px);
    padding: 10px 20px 60px 10px;
    line-height: 1.7;
}

/* Content area for full width template (no sidebar) */

#content-full #content {
    /* width: 1257px; */
    padding: 40px 15px;
}
#content p {
    /*line-height: 24px !important;*/
}

#contentTop {
    background: #FFFFFF;
    min-height: 500px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.content-wrapper {
    width: 1257px;
    padding: 0 15px;
    max-width: 100%;

}

/* Styles for entry */

#content .entry {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #000;
    font-size: 16px;
    text-align: justify;
}

#content .entry:after {
    content: "";
    display: table;
    clear: both;
}

/* Styles for post/page main headings (h1) */

#inner-page-wrapper .agent-entry-title,
#inner-page-wrapper .entry-title,
#content .entry-title,
#content .archive-title {
    font-size: 35px;
    font-family: 'Crete Round', serif;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    margin: 0.67em 0;
}

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

#inner-page-wrapper {
    position: relative;
}
#inner-page-wrapper:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.35;
}
#inner-page-wrapper>.inner {
    position: relative;
    z-index: 1;
}
body.error404 #inner-page-wrapper #sidebar {
    background: #fff;
    padding: 40px 15px;
}

/*******************************************************
 *
 * 6. Archive
 *
 *******************************************************/

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}
#content .archive-list:before,
#content .archive-list:after {
    display: none;
}
#content .archive-list>article {
    float: none;
}
#content .archive-list .post {
    border-bottom: none;
}
#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}
#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
    position: relative;
}
#content .archive-list .archive-thumbnail a:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -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;
}
#content .archive-list article:hover .archive-thumbnail a:after {
    opacity: 0.4;
}
#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;
    color: var(--primary-text-color);
    font-size: 32px;
}
#content .archive-list .article-long p {
    font-size: 22px;
}
#content .archive-list article:hover .archive-content a {
    color: var(--primary-color);
}
#content .archive-more {
    display: inline-block;
    vertical-align: middle;
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-style: normal;
    text-decoration: none;
    position: relative;
    -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;
}
#content .archive-subtitle a {
    -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;
}
#content .archive-more:after {
    content: '';
    position: absolute;
    left: calc(100% + 23px);
    top: calc(50% - 1px);
    background: var(--primary-color);
    width: 0;
    height: 2px;
    pointer-events: none;
    opacity: 0;
    -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;
}
#content .archive-list article:hover .archive-more {
    color: var(--primary-color);
}
#content .archive-list article:hover .archive-more:after {
    width: 63px;
    opacity: 1;
}
/** End of Archive Default Layout (Archive Page) */

/*******************************************************
 *
 * 7. Sidebar
 *
 *******************************************************/

.sidebar {
    float: right;
    margin-top: 10px;
    width: 325px;
}

.widget-set h4.widget-title {
    display: block;
    background: #333;
    color: #000;
}


/*******************************************************
 *
 * 8. Misc Wordpress classes
 *
 *******************************************************/

.gravatar {
    float: right;
}

.comments-template ol.comment-list {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
}

.comments-template ol.children {
    margin: 20px 0 0 40px;
    padding: 0;
    list-style: none;
}

.comments-template ol.comment-list li.comment {
    margin: 10px 0;
    padding: 0;
    border-top: 1px dotted;
}

.comments-template .comment-meta {
    font-size: 10px;
}

.comments-template .screen-reader-text {
    display: none;
}

.comments-template .comment-navigation {
    margin: 10px 0;
    background: none;
}

.wp-caption {
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    margin: 10px;
    padding-top: 4px;
    text-align: center;
    max-width: 100%;
}

.wp-caption img {
    border: 0 none;
    margin: 0;
    padding: 0;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.gallery-caption {
    text-align: center;
}

.category .post,
.archive .post {
    border-bottom: 1px dotted;
}

.attachment-post-thumbnail {
    float: left;
    margin: 0 10px 10px 0;
}

pre {
    white-space: pre-wrap;
    /* css-3 */
    white-space: -moz-pre-wrap;
    /* Mozilla, since 1999 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* Internet Explorer 5.5+ */
}

.sticky {}

.bypostauthor {
    font-style: italic;
}

#content .alignleft {
    float: left;
}

#content .alignright {
    float: right;
}

#content .aligncenter {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

#content img[class*="align"],
#content img[class*="wp-image-"],
#content img[class*="attachment-"],
#content img.size-full,
#content img.size-large,
#content img.header-image,
#content img.wp-post-image {
    max-width: 98%;
    margin: 0 1%;
    height: auto;
}

#content embed,
#content iframe,
#content object,
#content video {
    max-width: 100%;
}


/*******************************************************
 *
 * 9. AIOS Listings
 *
 *******************************************************/

.aios-listings-page .attachment-post-thumbnail {
    display: none;
}

/*******************************************************
 *
 * 10. Mobile styles
 *
 *******************************************************/

#content .agent-holder .attachment-agent-image {

    float: none;
    width: auto;

}
#content .agent-holder .agent-all-contact {

    float: none;
    margin: 20px 0px 0px;
    width: auto;

}

#content .agent-holder .agent-img-icon {

    display: none;

}

#content .agent-holder {
    width: 30.5%;
    position: relative;
    float: none;
    display: inline-block;
    vertical-align: top;
    background-color: #eaeaea;
    border: 1px solid #999999;
    border-radius: 10px;
    box-shadow: -5px 10px 5px #999999;
    margin: 0 5px 20px;
    padding: 20px;
    text-align: center;
    min-width: 300px;
}

#content .agent-holder .agent-contact-name {

    font-size: 1.5em;
    margin: 30px 0px 15px;

}

#content .agent-holder .attachment-agent-image img {

    width: 229px;

}

#content .agent-holder .agent-contact-detail {

    padding-left: 0px;

}

#content .agent-list .entry {

    text-align: center;

}

#content .bio_parag h2 {
    margin: 20px 0px;
    display: block;
    font-size: 24px;
    font-family: 'Crete Round', serif;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
}
div.wpcr3_review div.wpcr3_review_author:before {
    content: 'by ';
    position: relative;
    font-size: 13px;
}
div.wpcr3_review div.wpcr3_review_author {
    font-size: 0em !important;
    font-style: italic;
}
div.wpcr3_review div span.wpcr3_caps {
    display: inline-block !important;
    font-size: 13px;
    color: #000;
}

.aidefcf-wrapper-contact-us {
    max-width: 370px !important;
}
.ai-contact-wrap {
    max-width: 360px !important;
    width: 100%;
}
.aios-mobile-pack-phone-text {
    padding: 0px 130px 0px 64px;
    direction: ltr !important;
}


/* 2016-02-04 */
.page-id-117 #post-117 .wpcr3_content>p {
    line-height: 1.8 !important;
}

.page-id-12 #post-12 .entry p,
.page-id-12 #post-12 .entry ul li {
    font-size: 16px;
    line-height: 1.5;
}

div.wpcr3_review div.wpcr3_review_datePublished {
    display: none !important;
}

/*#menu-item-219, #menu-item-218,
#menu-item-215, #menu-item-214,
#menu-item-213, #menu-item-216,
#menu-item-217, #menu-item-285,
#menu-item-284, #menu-item-300 {
    margin-left: 15px;
}
*/

.aidefcf-title span {
    font-family: 'Crete Round', serif;
    font-size: 20px;
    text-transform: uppercase;
}
.aidefcf-title {
    font-family: 'Crete Round', serif;
    font-size: 12px;
    text-transform: uppercase;
}
.ai-contact-wrap span {
    font-family: 'Crete Round', serif;
    text-transform: uppercase;
}
.ai-contact-wrap {
    font-family: 'Crete Round', serif;
    font-size: 12px;
    text-transform: uppercase;
}
.agentsbio {
    display: block;
    margin-bottom: 25px;
    font-size: 0;
}
.agentsbio .agentimg {
    display: inline-block;
    vertical-align: top;
    width: 28%;
    padding-right: 20px;
}
.agentsbio .agentimg img {
    width: 100%;
}
.agentsbio .agentinfo {
    display: inline-block;
    vertical-align: top;
    width: 72%;
    padding-right: 20px;
}

#content .agentsbio .agentinfo p {
    font-size: 16px;
}
#content .agentsbio .agentinfo p i {
    font-style: normal;
}
#content .agentinfotop p {
    margin: 5px 0 !important;
}
#content .agentinfotop .fa,
#content .agentinfotop span {
    width: 31px;
    text-align: center;
    display: inline-block;
}
#content .agentinfotop .fa-mobile {
    font-size: 21px;
}
#content .agentinfotop .fa-envelope {
    font-size: 15px;
}

.bio_parag #ihf-main-container .mt-25 {
    display: none !important;
}

.agentinfotop img {
    padding: 0 4px 0 7px;
    width: 26px;
}

.bio_parag {
    margin-top: 5px;
}

.welcome-content>p {
    font-family: Lato, sans-serif;
    font-size: 16px;
}

.header-nav>li:last-child {
    /*margin-right: 45px;*/
}
p#breadcrumbs {
    margin: calc(1.12em + 3px) 0 1.12em;
    line-height: 1.7;
}
#content #ihf-main-container .nav-tabs {
    margin-left: 0 !important;
}

.bio_parag #ihf-main-container div>.col-xs-12 strong {
    margin-bottom: 15px;
    display: block;
    font-size: 24px;
    font-family: 'Crete Round', serif;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
}

.aidefcf-title {
    margin-bottom: 0px !important;
}

.ai-contact-wrap {
    text-align: left !important;
}
.header-wrapper .header-navigation>.num {
    display: none;
}
.header-wrapper .num {
    font-size: 13px;
    font-family: 'Open Sans';
    color: #FFFFFF;
    text-align: right;
    margin-left: 20px;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-wrapper .num a {
    text-decoration: none;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
}
.header-wrapper .num a:before {
    pointer-events: none;
    content: " ";
    border: thin solid #2b878c;
    display: block;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    margin: auto;
    opacity: 0;
    border-radius: 20px 20px 20px;
    position: absolute;
    background: #2b878c;
    z-index: 0;
    opacity: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.header-wrapper .num a:hover:before {
    opacity: 1;
    z-index: -1;
}

#menu-item-564 a {
    text-align: center;
}

.header-nav li#menu-item-251 .sub-menu .sub-menu {
    left: 0;
    margin-left: -100%;
    margin-top: -29px;
}
.page-id-834 .cycloneslider-pager span:nth-child(5),
.page-id-834 .cycloneslider-pager span:nth-child(6),
.page-id-834 .cycloneslider-pager span:nth-child(7),
.page-id-834 .cycloneslider-pager span:last-child {
    display: none;
}

img.designfliers {
    max-width: 400px;
    display: block;
    margin: 0px auto;
}
ul.pdflink {
    font-size: 14px;
}

.menu-item-931 a {
    padding-left: 35px !important;
}
.floating-sm {
    position: fixed;
    z-index: 100;
    left: 0vw !important;
    top: 50%;
    /* height: 100vh; */
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.fl-sm-sinner {
    position: relative;
}
.fl-sm-link {}
.fl-sm-link:not(:first-child) {
    margin: 20px 0 0;
}
.fl-sm-link a {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #393939;
    color: #fff;
    font-size: 16px;
    border-radius: 34px;
    border: 1px solid #fff;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.fl-sm-link a:hover {
    background: #fff;
    color: #393939;
    border: 1px solid #393939;
}
.fl-sm-link.fl-sm-lable {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #b3aeae;
    position: absolute;
    white-space: nowrap;
    margin: 0;
    top: calc(100% + 10px);
    right: 50%;
    pointer-events: none;
    transform-origin: right;
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}
.fl-inquire-bd {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1021;
    background: #000;
    opacity: 0.4;
    pointer-events: none;
    opacity: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}
.floating-inquire-overlay.is-active {
    pointer-events: auto;
}
.floating-inquire {
    position: fixed;
    width: 438px;
    max-width: calc(100% - 20px);
    height: 100%;
    top: 0;
    right: -438px;
    z-index: 1022;
    font-size: 0;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.floating-inquire-inner {
    position: relative;
}
.floating-inquire.is-active {}
.admin-bar .floating-inquire {
    top: 32px;
    height: calc(100% - 32px);
}
.floating-inquire-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    padding: 0;
    width: 38px;
    height: 210px;
    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;
    background: var(--secondary);
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.floating-inquire-button span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-transform: scale(-1);
    transform: scale(-1);
}
.floating-inquire-button span i {
    display: inline-block;
    font-weight: 700;
    margin-top: 18px;
}
.floating-inquire-button:hover {
    background: var(--primary);
}
.floating-inquire-main {
    padding: 65px 20px;
    height: 100vh;
    overflow: auto;
    background: var(--secondary);
}
.admin-bar .floating-inquire-main {
    height: calc(100vh - 32px);
}
.floating-inquire-logo {
    text-align: center;
    max-width: max-content;
    margin: 0 auto;
}
.floating-inquire-logo a {
    display: inline-block;
}
.floating-inquire-form {
    margin-top: 40px;
}
.floating-inquire-form .form-input {
    margin-bottom: 8px;
}
.form-button input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 100%;
    padding: 0;
    outline: 0;
    background: 0 0;
}
.floating-inquire-form .form-input input:not([type="submit"]),
.floating-inquire-form .form-input textarea {
    height: 43px;
    border: 1px solid #ffffff;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    display: block;
    width: 100%;
}
.floating-inquire-form .form-input textarea {
    height: 78px;
    padding-top: 14px;
    resize: none;
}
.floating-inquire-form .form-radio {
    margin: 30px 0 5px;
}
.floating-inquire-form .form-radio div {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.floating-inquire-form .form-radio .wpcf7-form-control.wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.floating-inquire-form .form-radio .wpcf7-list-item {
    margin-bottom: 25px;
}
.floating-inquire-form .form-radio .wpcf7-list-item label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.floating-inquire-form .form-radio .wpcf7-list-item input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    width: 15px;
    height: 15px;
    border: 1px solid #ffffff;
    -webkit-box-shadow: inset 1px 2px 5px 0px rgba(1, 1, 1, 0.27);
    box-shadow: inset 1px 2px 5px 0px rgba(1, 1, 1, 0.27);
    margin-top: 0;
    outline: none;
}
.floating-inquire-form .form-radio .wpcf7-list-item input:checked+span::before {
    content: '';
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    top: 3px;
    left: 3px;
    background: #ffffff;
}
.floating-inquire-form .form-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-left: 8px;
}
.floating-inquire-form .form-button {
    margin-top: 32px;
}
.floating-inquire-form .form-button input[type="submit"] {
    height: 52px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.floating-inquire-form .form-button input[type="submit"]:hover {
    background: var(--primary);
    color: #ffffff;
}
.floating-inquire-form .wpcf7 {
    position: relative;
}
.floating-inquire-form .wpcf7-form-control-wrap {
    display: block;
}
.floating-inquire-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: auto;
    top: 12%;
    left: 12%;
    font-size: 12px;
}
.floating-inquire-form .wpcf7 .ajax-loader {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -25px;
    margin: 0 auto;
}
.floating-inquire-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -13px;
    margin: 5px auto 0;
    font-size: 12px;
    color: #ffffff !important;
}
.floating-inquire-contact {
    margin-top: 36px;
}
.floating-inquire-contact ul li {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.floating-inquire-contact ul li a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    color: #fff;
}
.floating-inquire-contact ul li a:hover {
    color: var(--primary);
}
.floating-inquire-smis {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}
.floating-inquire-smis a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 6px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.floating-inquire-smis a:last-child {
    margin-right: 0;
}
.floating-inquire-smis a i {
    color: #4267B2;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.floating-inquire-smis a i.ai-font-instagram {
    color: #8a3ab9;
}
.floating-inquire-smis a i.ai-font-linkedin {
    color: #0077b5;
}
.floating-inquire-smis a i.ai-font-yelp {
    color: #c41200;
}
.floating-inquire-smis a:hover {
    background: var(--primary);
}
.floating-inquire-smis a:hover i {
    color: #ffffff !important;
}
body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}
button:focus-visible,
a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}
/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}
.form-radio.no-margin-top {
    margin-top: 0;
}
.why-work-wrapper {
    padding: 90px 0;
    background: url('images/wwwu-bg.jpg') no-repeat center center/cover;
}
.wwwu-title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 100;
    font-family: 'Open Sans', sans-serif;
}
.wwwu-items {
    max-width: 1210px;
    width: 100%;
    margin: 50px auto 0;
    font-family: 'Open Sans', sans-serif;
}
.wwwu-item {
    width: calc(100% / 5 - 5px);
    display: inline-block;
    vertical-align: top;
}
.wwwu-item span {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 17px;
    line-height: 27px;
    text-transform: uppercase;
}
.wwwu-item strong {
    font-size: 40px;
    text-align: center;
    display: block;
    color: #fff;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 15px;
}

#ip-slideshow .aios-slider .aios-slider-splide .aios-slider-tagline {
    background: #222;
    opacity: 0.7;
    text-align: left;
    padding: 0;
}
#ip-slideshow .aios-slider .aios-slider-splide .aios-slider-tagline-title {
    margin-bottom: 0;
    padding: 15px;
    font-size: 22px;
    line-height: 1;
}
#ip-slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow {
    font-size: min(9.375vw, 40px);
}
#ip-slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow--prev {
    left: min(3.125vw, 20px);
}
#ip-slideshow .aios-slider.aios-slider-template-default .splide .splide__arrow--next {
    right: min(3.125vw, 20px);
}
#ip-slideshow .aios-slider .splide__pagination {
    bottom: min(3.125vw, 20px);
}
#listings-results .listings-table .listings-table-body .listings-table-label {
  color: #fff !important;
}
body .aios-mobile-header-2 .amh-navigation.active {
    left: 0 !important;
	transition: all .5s ease-in-out;
}
body.aios-custom-ihomefinder-results-template #listings-results .listings-grid .listings-col:hover .listings-footer {
    background: #393939;
}
body #listings-results .listings-grid .listings-col.dark-bg .listings-footer {
    background: #252525 !important;
}
body.aios-custom-ihomefinder-details-template #inner-page-wrapper .wpcf7-form.use-floating-validation-tip .wpcf7-not-valid-tip {
    width: 100% !important;
    font-size: 12px !important;
}
#listings-details .listings-form .wpcf7-spinner {
    position: absolute;
    right: -13px;
    bottom: -31px;
}
.grecaptcha-badge{
    z-index: 5; 
    bottom: 80px !important;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 11px;
    padding: 0.2em 0.8em;
    width: auto;
}
.wpcf7 form .wpcf7-response-output {
    text-align: center;
}
.wpcf7-form-control-wrap{
    display: block;
}

#ihf-main-container .glyphicon-remove-circle:before {
    color: #fff !important;
}
.aios-custom-ihomefinder-shortcode #listings-results {
    margin-top: 30px;
}
#ihf-main-container .dropdown-menu>li>a:focus, #ihf-main-container .dropdown-menu>li>a:hover {
    color: #fff !important;
}
#ihf-main-container .dropdown-menu {
    z-index: 10001;
}

#listings-results .listings-sort ul li.active a, 
#listings-results .listings-sort ul li a:hover {
    color: #000 !important;
}
#ihf-main-container .glyphicon-remove-circle:before {
    color: #fff !important;
}
body #listings-results .listings-table .listings-table-body .listings-table-label {
    background: #333;
}
#content .agentsbio .agentinfo p i {
    margin-right: 5px;
}
#content #agents-results .agents-item .agents-button {
    border-color: var(--aios-agents-text-color);
    color: var(--aios-agents-text-color);
}
#content #agents-results .agents-item .agents-button:hover {
    border-color: var(--aios-agents-hover-color);
    color: var(--aios-agents-primary-color);
}
#content #agents-single .agents-button {
    border-color: var(--aios-agents-text-color);
    color: var(--aios-agents-text-color);
}
#content #agents-single .agents-button:hover {
    background: var(--aios-agents-hover-color);
    border-color: var(--aios-agents-hover-color);
    color: #fff;
}
.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--aios-agents-hover-color);
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */