/*
Theme Name: Caddo River Realty, Inc.
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/


/*

TABLE OF CONTENTS

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

*/


/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Outfit', sans-serif;
    --font-family-title: 'Noto Serif', serif;
    --font-size-default: 15px;
    --font-size-title: 18px;
    --font-color-default: #b6b4b5;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --black: #000;
    --white: #fff;
    --accent: #6ed624;
}


/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

.nav {
    display: flex;
    justify-content: flex-end;
}

.nav li {
    position: relative;
}

.nav > li {
    /*margin: 0 5% 0 0;*/
    margin: 0 3% 0 0;
}

.nav > li > a:after {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    left: 0;
    bottom: 0;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.nav li a {
    color: var(--white);
    font-size: 14px;
    letter-spacing: .120em;
    text-transform: uppercase;
    padding: 0;
    position: relative;
}


/* Sub Menu */

.nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    display: none;
    padding: 20px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 180px;
}

.nav .sub-menu > li:not(:first-child) {
    margin: 1px 0 0;
}

.nav .sub-menu a {
    color: var(--white);
    display: block;
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.nav .sub-menu a:hover {
    background: rgba(110, 214, 36, .8);
    color: var(--white);
    text-decoration: none;
}

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

.nav > li:hover > a,
.nav>li>a:focus {
    background: transparent !important;
}

.nav li:hover > a:after {
    width: 100%;
}

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


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/


/* Global */

html {
    overflow-x: hidden;
}

html.no-scroll {
    overflow: hidden;
}

body {
    color: var(--font-color-default);
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    font-weight: 300;
    line-height: 2;
    letter-spacing: .025em;
    background: var(--black);
    margin: 0;
    overflow: hidden;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

#main-wrapper {
    overflow: hidden;
}

a {
    outline: none;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var( --accent);
    text-decoration: none;
    outline: none;
    background: transparent;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

canvas {
    background-color: var(--black);
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

img {
    max-width: 100%;
}

.relative {
    position: relative;
}

.block {
    display: block;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
}

.text-uppercase {
    text-transform: uppercase;
}

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

.hidden {
    display: none;
}

.hidden-pc {
    display: none !important;
}


/*******************************************************
 *
 * Custom Container
 *
 *******************************************************/

.custom-container {
    width: 100%;
    max-width: 1465px;
    margin: auto;
}


/*******************************************************
 *
 * Global Title
 *
 *******************************************************/

.ttl {
    color: var(--accent);
    font-size: 4.688vw;
    font-weight: 500;
    letter-spacing: .025em;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 50px;
}

.ttl small {
    color: #b7b5b8;
    font-size: 1.250vw;
    font-weight: 300;
    letter-spacing: .5em;
    line-height: 1.2;
    display: block;
    margin: 0 0 0.625vw;
}

.ttl span {
    color: var(--white);
}


/*******************************************************
 *
 * Global Button
 *
 *******************************************************/

.siteBtn {
    display: block;
    width: 100%;
    max-width: 197px;
    border: 2px solid var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    line-height: 2.33;
    letter-spacing: .250em;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.siteBtn:hover {
    color: var(--white) !important;
    background: var(--accent) !important;
}


/*******************************************************
 *
 * Image Wrapper
 *
 *******************************************************/

.imgWrap {
    position: relative;
}

.imgWrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.imgWrap canvas {
    background: transparent;
}


/*******************************************************
 *
 * Black Overlay
 *
 *******************************************************/

.blackOverlay {
    position: relative;
}

.blackOverlay:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .25);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    z-index: 3;
}


/*******************************************************
 *
 * Accent
 *
 *******************************************************/

.accent {
    position: absolute;
    height: 57px;
    background: var(--accent);
}


/*******************************************************
 *
 * Global Backgrounds
 *
 *******************************************************/

.bgTexture {
    position: relative;
/*    background: url('images/common/texture.jpg')no-repeat center center/cover;*/
}
.section-texture {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

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

.bgTexture:before {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6ffffff', GradientType=0);
}

.hpTeam.bgTexture:before,
.footer.bgTexture:before {
    background: rgba(0, 0, 0, 0.8);
}

.bgTexture:after {
    background: url('images/common/texture_bgOverlay.png')no-repeat center center/100% 100%;
    opacity: .5;
    z-index: 2;
    display: none;
}

.bgTexture .container,
.bgTexture .custom-container,
.bgFalls .container,
.bgFalls .custom-container {
    position: relative;
    z-index: 3;
}


/* Falls Background */

.bgFalls {
    position: relative;
    background: #121212;
}

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

.bgFalls:before {
/*    filter: grayscale(1);
    background: url('images/common/falls.jpg')no-repeat center center/cover;
    background-attachment: fixed;*/
}
.section-falls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.git.bgFalls:before {
    opacity: 0.15;
}

.safari .bgFalls:before {
    background-attachment: initial !important;
}

.bgFalls:after {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e6ffffff', GradientType=0);
}


/*******************************************************
 *
 * Header
 *
 *******************************************************/

.header {
    position: fixed;
    width: 100%;
    left: 0;
    padding: 25px 0;
    z-index: 1032;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.header__inner {
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.header__logo {
    width: 17.74%;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}
.header__logo img {
    width: 100%;
    height: auto;
}

.fh__logo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}
.header__right {
    width: 68.94%;
    width: 66.94%;
    align-items: center;
    justify-content: flex-end;
}

.header__menu {
    flex: 1;
}

.toggleBtn {
    width: 4.95%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.toggleBtn div {
    width: 100%;
    height: 5px;
    background: var(--accent);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.toggleBtn div:first-child {
    width: 90%;
}

.toggleBtn div:nth-child(2) {
    width: 74%;
}

.toggleBtn div:not(:first-child) {
    margin: 10px 0 0 auto;
}

.toggleBtn:hover div {
    background: #97d84b;
}


/*==============================
 Fixed Header
===============================*/

.fh {
    padding: 7px 0;
    background: url('images/common/texture.jpg')no-repeat center center/cover;
    min-height: 85px;
    display: flex;
    align-items: center;
}

.fh:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 2;
}

.fh .header__logo {
    width: 10.03%;
}

.fh .fh__logo {
    opacity: 1;
}

.fh .nav .sub-menu {
    padding: 29px 0 0;
}


/*******************************************************
 *
 * Expandable Menu
 *
 *******************************************************/

.expandableMenu {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    transform: translateX(100%);
    z-index: 1034;
    overflow-y: auto;
/*    background: url('images/common/fm_bg.jpg')no-repeat center center/cover;*/
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}
.section-exMenu {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.expandableMenu.is-expanded {
    transform: translateX(0);
}

.expandableMenu__inner {
    min-height: 100vh;
    padding: 0 0 125px;
    overflow: hidden;
}
.expandableMenu .section-exMenu  {
    height: 100vh;
}
.expandableMenu__inner:before {
    background: rgba(0, 0, 0, .7);
}

.expandableMenu__top {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    z-index: 4;
}

.expandableMenu__top img {
    width: 16.25%;
    max-width: 260px;
    margin: auto;
}

.toggleBtn__close {
    color: var(--accent);
    font-size: 27px;
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.toggleBtn__close:hover {
    color: #97d84b;
}

.nav2 {
    display: block;
    column-count: 4;
    margin: 125px 11.31% 0;
    height: 330px;
    column-fill: auto;
    position: relative;
    opacity: 0;
    left: 50%;
    z-index: 4;
    transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

.expandableMenu.is-expanded .nav2 {
    left: 0;
    opacity: 1;
    /* height: 350px; */
    height: 390px;
}

.nav2 li:not(:nth-child(4n + 1)) {
    margin: 45px 0 0;
}

.nav2 li a {
    color: var(--white);
    font-size: 22px;
    letter-spacing: .05em;
    line-height: 1.5;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.nav2 li a:hover {
    color: var(--accent);
}

.expandableMenu .info {
    position: absolute;
    display: none;
    z-index: 4;
    right: calc((220/1600)*100%);
    right: clamp(2.19rem, calc(-16.72rem + 30.50vw), 19.88rem);
    bottom: calc((70/800)*100%);
}


/*******************************************************
 *
 * Global Info
 *
 *******************************************************/

.info {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .120em;
    margin-top: 30px;
}

.info__item:not(:first-child) {
    margin: 20px 0 0;
}

.info__item,
.info__item a,
.info__item em {
    color: var(--white);
    display: flex;
    align-items: flex-start;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.info__item i {
    color: var(--accent);
    font-size: 16px;
    width: 35px;
    margin: 4px 0 0;
}

.info__item .ai-font-envelope-f {
    font-size: 13px;
}

.info__item .ai-font-location-c {
    font-size: 22px;
}

.info__item a:hover,
.info__item em:hover {
    color: var(--accent);
}


/*******************************************************
 *
 * Fixed Info / SMIs
 *
 *******************************************************/

.fixedInfo {
    position: fixed;
    bottom: 6.74%;
    right: 2.81%;
    z-index: 10;
    text-shadow: -1px 1px 2px #333333;
}

.fixedInfo a,
.fixedInfo em {
    display: block;
    color: var(--white);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.fixedInfo .ai-font-phone {
    font-size: 14px;
}

.fixedInfo .ai-font-envelope-f {
    font-size: 11px;
}

.fixedInfo .smis {
    margin: 20px 0 30px;
    padding: 20px 0 0;
    border-top: 1px solid var(--white);
}

.fixedInfo .smis a {
    font-size: 20px;
}

.fixedInfo__txt {
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    letter-spacing: .075em;
    writing-mode: vertical-rl;
    display: flex !important;
    align-items: center;
    transform: rotate(180deg);
}

.fixedInfo__txt span {
    height: 80px;
    width: 1px;
    background: var(--white);
    margin: 0 0 30px;
    position: relative;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.fixedInfo__txt span:before,
.fixedInfo__txt span:after {
    position: absolute;
    content: '';
    height: 8px;
    width: 1px;
    top: 0;
    background: var(--white);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.fixedInfo__txt span:before {
    transform: rotate(-36deg);
    left: 2px;
}

.fixedInfo__txt span:after {
    transform: rotate(36deg);
    right: 2px;
}

.fixedInfo__top .asis-mailto-obfuscated-email,
.fixedInfo .smis a:not(:first-of-type) {
    margin: 20px 0 0;
}

.fixedInfo a:hover,
.fixedInfo em:hover {
    color: var(--accent);
}

.fixedInfo__txt:hover span,
.fixedInfo__txt:hover span:before,
.fixedInfo__txt:hover span:after {
    background: var(--accent);
}


/*******************************************************
 *
 * Homepage
 *
 *******************************************************/


/*==============================
 HP Banner
===============================*/

.bnr:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/home/slider_overlay.png')no-repeat center center/100% 100%;
    z-index: 4;
    pointer-events: none;
}
.bnr .aios-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.bnr .textwidget > canvas {
    height: 100%;
    width: 100%;
    display: block;
} 


/*==============================
 Quick Search
===============================*/

.qsWrap {
    background: #121212;
    padding: 55px 0 115px;
    display: none;
}

.qsBox {
    padding: 68px 6.14% 55px;
    align-items: flex-start;
    justify-content: space-between;
    -webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5);
}

.qsBox:before {
    background: rgb(18, 18, 18, .95);
}

.qsBox:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: saturate(0);
    background: url('images/home/qs_bg.jpg')no-repeat center center/cover;
}

.qsBox .ttl {
    width: 26.22%;
    margin: 35px 0 0;
    z-index: 5;
}

.qs {
    width: 67.70%;
    justify-content: space-between;
    z-index: 5;
}

.qs button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 58px;
    color: var(--white);
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .46);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(images/common/qs_arrow.png)no-repeat 98% center/9px 5px;
    border-radius: 0;
    padding: 0;
}

.qs > div:not(:nth-child(-n + 2)) {
    margin: 35px 0 0;
}

.qs__field,
.qs__field--col2,
.qs__btnsWrap {
    width: 47.01%;
}

.qs__field--col2,
.qs__btnsWrap {
    justify-content: space-between;
}

.qs__field--col2 .qs__field,
.qs__btnsWrap .qs__btn {
    width: 48.16%;
}

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

.qs__field select {
    width: 100%;
    height: 58px;
    color: var(--white);
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, .46);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('images/common/qs_arrow.png')no-repeat 98% center/9px 5px;
}

.qs__field--col2 select {
    background: url('images/common/qs_arrow.png')no-repeat 95% center/9px 5px;
}


/* QS Range Slider*/

.qs__range {
    align-self: flex-end;
    margin: 0 0 -5px;
}

.qs__rangeTop {
    margin: 0 0 15px;
    justify-content: space-between;
}

.qs__rangeTop input {
    color: var(--white);
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: transparent;
    outline: none;
    border: none;
    max-width: 100px;
}

.qs__rangeTop #range_max {
    text-align: right;
}

#qsPrice {
    border: none !important;
    background: transparent;
}

#qsPrice .ui-slider-range {
    height: 2px !important;
    margin: 2px 0 0;
    background: rgba(255, 255, 255, .46) !important;
    width: 100% !important;
    left: 0 !important;
}

#qsPrice .ui-slider-handle {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #cfe5d7 !important;
}


/* QS Buttons*/

.qs__btnsWrap .qs__btn {
    outline: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qs__btnsWrap .qs__btn:last-child {
    border-color: #676667;
}

.qs__btnsWrap .qs__btn:last-child:hover {
    background: #676667 !important;
}


/* QS Text*/

.qsBox__txt {
    width: 100%;
    text-align: right;
    color: #b3b1b4;
    font-size: 12px;
    line-height: 2.08;
    letter-spacing: .1em;
    margin: 10px 0 0;
    z-index: 4;
}

.qsWrap .accent {
    width: 45.39%;
    right: 0;
    bottom: -57px;
}


/*==============================
 Quick Search Version 2
===============================*/

.hp-slider-qs {
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hp-qs-form {
    width: 66%;
    display: block;
    margin: 0 auto;
}

.hp-qs-form-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.hp-qs-form-wrap .hp-qs-form-field:last-child {
    width: 35px;
    height: 37px;
}

.hp-qs-form-wrap .hp-qs-form-field:first-child {
    width: calc(100% - 35px);
    position: relative;
}

.hp-qs-form-wrap .hp-qs-form-field:first-child > select {
    width: 100% !important;
    left: 0;
    background-color: #fff;
    height: 1.946875% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
    outline: none;
    transform: translateY(-50%);
    border-radius: 4px;
    min-height: 31.15px;
}

.form-field-submit-icon {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border: 2px solid var(--accent);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.form-field-submit-icon:hover {
    background-color: #676667;
    border-color: #676667;
}

.form-field-submit-icon input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    background: transparent;
    border: none;
}

.form-field-submit-icon span {
    color: #fff;
    font-size: 22px;
}

.hp-qs-form-field input:not([type="submit"]) {
    width: 100%;
    height: 37px;
    border: 2px solid #fff;
    font-size: 15px;
    padding: 0 10px;
    color: #676667;
}


/*==============================
 Column 3 Layout
===============================*/

.col3 > div {
    font-size: 0;
}

.col3__link:before,
.col3__link:after {
    position: absolute;
    content: '';
}

.col3__link:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/home/fp_overlay.png')no-repeat center center/cover;
    z-index: 2;
}

.col3__link:after {
    width: 90.59%;
    height: 32.71%;
    left: 0;
    right: 0;
    top: 14.62%;
    margin: auto;
    z-index: 4;
    opacity: 0;
    background: url('images/common/hover_logo.png')no-repeat center center/contain;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.col3__tag {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white);
    font-size: 1.125vw;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .075em;
    text-transform: uppercase;
    background: var(--accent);
    padding: 0.563vw 1.813vw;
    z-index: 5;
}

.col3__link .imgWrap:before {
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    z-index: 4;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.col3__details {
    position: absolute;
    width: 51.73%;
    left: 8.17%;
    bottom: 10.63%;
    color: var(--white);
    z-index: 5;
}

.col3__detailsTop {
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid #b3b1b4;
    padding: 20px 4.08% 15px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.col3__detailsTop:before {
    position: absolute;
    content: '';
    width: 37.94%;
    height: 5px;
    background: var(--accent);
    left: 0;
    top: -5px;
}

.col3__detailsTtl {
    font-size: 1.875vw;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .025em;
}

.col3__detailsTxt {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.83;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin: 15px 0 0;
}

.col3__detailsTxt em {
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .1em;
    display: block;
}

.col3__btn {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    background: var(--accent);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.col3__link:hover:after {
    opacity: .2;
}

.col3__link:hover .col3__detailsTop {
    margin-bottom: 68px;
}

.col3__link:hover .imgWrap:before,
.col3__link:hover .col3__btn {
    opacity: 1;
}


/*==============================
 Featured Properties
===============================*/

.fpWrap {
    padding: 108px 0;
}


/*==============================
 HP About
===============================*/

.hpAbout {
    padding: 160px 0 140px;
}

.hpAbout__txt {
    width: 100%;
    max-width: 1220px;
    margin: auto;
}

.hpAbout__txt p {
    color: #000;
}

.hpAbout__txt p:not(:first-of-type) {
    margin: 30px 0 0;
}

.hpAbout__txt .siteBtn {
    margin: 70px auto 0;
    color: #000;
}


/*==============================
 HP Team
===============================*/

.hpTeam__inner {
    z-index: 3;
}

.hpTeam__left {
    width: 32.68%;
    padding: 108px 3.75% 108px 0;
}

.hpTeam__left .ttl {
    margin: 0 0 25px;
}

.hpTeam__left .siteBtn {
    margin: 40px 0 0;
}

.hpTeam__right {
    width: 67.31%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hpTeam__agents {
    /*width: 87.74%;*/
    width: 100%;
    position: relative;
    z-index: 3;
}

.hpTeam__rightBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.hpTeam__rightBg:before {
    background: rgba(0, 0, 0, .72);
}

.hpTeam__rightBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*==============================
 CTA
===============================*/

.ctaWrap {
    padding: 57px 0 0;
    background: #fff;
}

.ctaWrap .accent {
    top: 0;
    right: 0;
    width: 37.18%;
}

.cta__item {
    width: 50%;
}

.cta__txt {
    position: absolute;
    width: 38.28%;
    height: 44.57%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2.500vw;
    letter-spacing: .06em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .5);
    z-index: 3;
}

.cta__txt:after {
    position: absolute;
    content: '';
    width: 31.37%;
    height: 4px;
    background: var(--accent);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.cta__link:hover .cta__txt:after {
    width: 100%;
}


/*==============================
 Featured Communities
===============================*/

.fcWrap {
    padding: 110px 0;
}

.fc {
    margin: -5px;
}

.fc__item {
    padding: 5px;
}

.fc__link:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(110, 214, 36, .75);
    opacity: 0;
    z-index: 3;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.fc__img:before,
.fc__img:after {
    position: absolute;
    content: '';
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.fc__img:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('images/home/fc_overlay.png')no-repeat center center/cover;
    z-index: 2;
}

.fc__img:after {
    top: 35.21%;
    left: 0;
    right: 0;
    margin: auto;
    width: 96.36%;
    height: 30.89%;
    background: url('images/common/hover_logo.png')no-repeat center center/contain;
    opacity: 0;
    z-index: 4;
}

.fc__name {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 11.62%;
    color: var(--white);
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .075em;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 20px;
    z-index: 5;
}

.fc__name:after {
    position: absolute;
    content: '';
    width: 20.94%;
    height: 4px;
    background: var(--accent);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.fc__link:hover:before {
    opacity: 1;
}

.fc__link:hover .fc__img:after {
    opacity: .2;
}

.fc__link:hover .fc__name:after {
    background: var(--white);
}


/*==============================
 Sold Properties
===============================*/

.soldWrap {
    padding: 105px 0 110px;
}


/*==============================
 Testimonials
===============================*/

.testiWrap {
    padding: 105px 0;
    background: #121212;
}

.testiWrap__bg {
    position: absolute;
    width: 100%;
    left: 0;
}

.testiWrap .container {
    position: relative;
    z-index: 5;
}

.testiBox {
    padding: 40px 0;
    background: var(--black);
    -webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5);
}

.testiBox .accent {
    width: 60px;
    height: 185px;
}

.testiBox .accent__left {
    left: -60px;
    bottom: 0;
}

.testiBox .accent__right {
    right: -60px;
    top: 0;
}

.testi__item {
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .04em;
    padding: 35px 40px;
}

.testi .slick-slide {
    position: relative;
}


/*.testi .slick-slide:nth-of-type(even):before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: var(--accent);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}*/

.testi .slick-slide:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: var(--accent);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

ul.testi.testi-js.text-center .slick-list {
    margin: 0 -2px;
}

ul.testi.testi-js {
    overflow: hidden;
}

.testi_name {
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 20px 0 0;
}

.testiNav {
    margin: 35px 0 0;
    align-items: center;
    justify-content: center;
}

.testiNav__arrow {
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.testiNav__arrow:hover {
    color: var(--accent);
}

.testiNav .siteBtn {
    max-width: 350px;
    margin: 0 20px;
}

.testiWrap__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testiWrap__bgTop {
    top: 0;
    height: 53.57%;
}

.testiWrap__bgTop img {
    filter: saturate(0);
    opacity: .5;
}

.testiWrap__bgTop:before {
    background: rgba(18, 18, 18, .8);
}

.testiWrap__bgBot {
    bottom: 0;
    height: 46.42%;
}

.testiWrap__bgBot:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background: url('images/home/testi_bg02Overlay.png')no-repeat center center/100% 100%;
    z-index: 2;
}

.testiWrap__bgBot img {
    opacity: .15;
    filter: grayscale(1);
}


/*==============================
 Media
===============================*/

.media {
    padding: 100px 0 110px;
    background: #fff;
}

.feedWrap:last-of-type {
    margin: 12px 0 0;
}

.feedWrap__ttl {
    width: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 50px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.feedWrap:first-of-type .feedWrap__ttl {
    background: var(--accent);
}

.feedWrap:first-of-type .feedWrap__ttl:hover {
    color: var(--white) !important;
    background: #3f3f3f;
}

.feedWrap:last-of-type .feedWrap__ttl {
    color: var(--white) !important;
    background: #3f3f3f;
}

.feedWrap:last-of-type .feedWrap__ttl:hover {
    background: var(--accent);
}

.feed {
    width: 93%;
}

.feed > div {
    font-size: 0;
}

.feed__link:hover:before {
    background: rgba(110, 214, 36, .25);
}

.media__bgRight {
    position: absolute;
    width: 48.75%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    background: var(--black);
}

.media__bgRight:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d9ffffff', GradientType=1);
    z-index: 2;
}

.media__bgRight img {
    width: 76.92%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .2;
}


/*==============================
 Get In Touch
===============================*/

.git {
    padding: 70px 0;
    background: #fff;
}

.git:after {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.75) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.75) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.75) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#bfffffff', endColorstr='#bfffffff', GradientType=0);
}

.git__box {
    padding: 50px 5.11% 80px;
    background: #464646;
    align-items: flex-start;
    justify-content: space-between;
}

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

.git__box:before {
    opacity: .59;
    filter: grayscale(1);
    background: url('images/common/git_boxBg.jpg')no-repeat center center/cover;
}

.git__box:after {
    background: rgba(110, 214, 36, .85);
    z-index: 2;
}

.git__box .ttl,
.git__formWrap {
    z-index: 3;
}

.git__box .ttl {
    width: 23.57%;
    margin: 85px 0 0;
    color: var(--white);
}

.git__box .ttl small {
    color: #cce9b7;
}

.git__formWrap {
    width: 71.48%;
}

.git__formWrap form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.git__field:not(:nth-of-type(-n + 3)) {
    margin: 5px 0 0;
}

.git__field {
    width: 48.93%;
    position: relative;
}

.git__field--full {
    width: 100%;
}

.git__field span {
    display: block;
}

.git__field label {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.git__field input,
.git__field textarea {
    width: 100%;
    height: 70px;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 0 7px;
}

.git__field textarea {
    height: 80px;
    resize: none;
    padding: 30px 50px 7px 7px;
}

.git__field input:focus + label,
.git__field textarea:focus + label,
.git__field.not-empty input + label,
.git__field.not-empty textarea + label {
    font-size: 9px;
    top: 0;
    transform: none;
}

.git__btn {
    position: absolute;
    bottom: 20px;
    right: 2px;
    width: 35px;
    height: 35px;
}

.git__btn input {
    font-size: 0;
    border: none;
    background: transparent;
    outline: none;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.git__btn i {
    color: var(--white);
    font-size: 34px;
    pointer-events: none;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.git__btn:hover i {
    color: #3f3f3f;
}

.git .wpcf7-not-valid-tip {
    position: absolute !important;
    width: 200px !important;
    left: 7px !important;
    top: 10px !important;
}

.git .wpcf7-response-output {
    position: absolute !important;
    width: 100% !important;
    left: 0;
    color: white;
    text-align: center;
    bottom: -30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.git .wpcf7-spinner {
    position: absolute !important;
}


/*******************************************************
 *
 * Footer
 *
 *******************************************************/

.footer {
    padding: 90px 0 30px;
    border-top: 1px solid #23430d;
}

.footer__ttl {
    color: var(--accent);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .120em;
    text-transform: uppercase;
    margin: 0 0 25px;
}

.footer__logo {
    width: 31.57%;
}

.footer__menu {
    width: 23.68%;
    margin: 0 0 0 11.22%;
}

.footernav {
    column-count: 2;
    -moz-column-count: 2;
}

.footernav li:not(:nth-child(3n + 1)) {
    /*margin: 10px 0 0;*/
}

.footernav li {
    -moz-page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
}

.footernav li a {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .120em;
}

.footernav li a:hover,
.footer__disclaimer a:hover {
    color: var(--accent);
}

.footer__smis {
    margin: 25px 0 0;
}

.footer__smis a {
    color: var(--accent);
    font-size: 23px;
}

.footer__smis a:not(:last-child) {
    margin: 0 45px 0 0;
}

.footer__smis a:hover {
    color: #97d84b;
}

.footer__contact {
    width: 25.61%;
    margin: 0 0 0 7.59%;
}

.footer__disclaimer {
    color: #b3b1b4;
    font-size: 13px;
    line-height: 1.69;
    letter-spacing: .05em;
    margin: 40px 0 0;
}

.footer__disclaimer p {
    padding: 0 40px;
}

.footer__bot {
    margin: 45px 0 0;
    padding: 35px 0 0;
    border-top: 1px solid var(--accent);
}

.footer__copyright {
    color: #b3b1b4;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: .035em;
}

.footer__copyright span {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
}

.footer__botIcons {
    color: #b3b1b4;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    margin: 15px 0 0;
}

.footer__botIcons i:first-child {
    font-size: 23px;
    margin: 0 10px 0 0;
}

.footer .asis-mailto-obfuscated-email {
    word-break: break-all;
}


/*******************************************************
 *
 * POJO
 *
 *******************************************************/

nav#pojo-a11y-toolbar {
    top: calc( 100vh - 50px) !important;
}

nav#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
    transform: translateY(-100%) translateY(50px);
}

nav#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay,
nav#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle {
    background: var(--white);
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    background: var(--accent) !important;
}

nav#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle:hover {
    opacity: .8;
}

nav#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay a.active,
nav#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay a:hover {
    background: var(--primary);
    color: var(--secondary);
}


/*******************************************************
 *
 * AIOS fix forms style
 *
 *******************************************************/

.aidefcf-cl2 span:first-of-type,
.aidefcf-cl3 span:first-of-type {
    float: left !important;
}

.aidefcf-cl3 span:last-of-type {
    float: right;
}


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
}

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

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

.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: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

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


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}


/** Adjust width of content columns **/

#content-sidebar #content {
    width: 77.08%;
}

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


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* fullwidth template */

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

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


/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7
}


/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */

#content .entry-title,
#content .archive-title,
h1.entry-title,
.single-aios-agents h1.agent-entry-title {
    color: var(--accent);
    font-size: 50px;
    font-weight: 600;
    letter-spacing: .025em;
    text-transform: uppercase;
}


/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {
    color: var(--accent);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: .025em;
    text-transform: uppercase;
}


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

.nav2 > li {
    margin: 0 0 45px !important;
}

.nav2 .sub-menu li {
    margin: 0 0 5px !important;
}

.nav2 .sub-menu li a {
    font-size: 16px;
}

#agents-results .agents-button {
    border-color: #fff;
    color: #fff;
}

#agents-results .agents-button:hover {
    background: #fff;
    color: #000;
}

#agents-results .agents-name {
    color: #fff;
}

#agents-results .agents-name a:hover {
    color: var(--accent);
}

#listings-results .listings-grid .listings-col.dark-bg .listings-footer {
    background: #6ed624 !important;
}

#listings-details .listings-plan > ul > li > strong,
#listings-details .listings-accordion-title,
#listings-details .listings-cta > li > a.button-legacy {
    /* color: #b6b4b5 !important; */
}

#listings-details .listings-cta > li > a.button-legacy {
    border: 2px solid #b6b4b5 !important;
}

#listings-details .listings-address span,
#listings-details .listings-description p,
#listings-details .listings-accordion-content ul li {
    color: var(--font-color-default) !important;
}

#listings-results .listings-grid .listings-col.dark-bg .listings-footer {
    background: #252525 !important;
}

li#menu-item-50 .sub-menu a {
    font-size: 10px;
}

.single-aios-agents #agents-single .agents-contact li,
.single-aios-agents #agents-single .agents-contact li > div > span {
    color: var(--font-color-default);
}

.single-aios-agents #agents-single .agents-contact li.agent-email-address {
    margin: 0 0 20px;
}

.single-aios-agents #agents-single .agents-button {
    color: var(--font-color-default);
    border-color: var(--font-color-default);
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body {
    width: 555px !important;
    min-height: 0 !important;
    padding: 30px !important;
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 11px;
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form .wpcf7-response-output {
    font-size: 12px;
    color: #000000;
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--accent);
}

.single-aios-agents .container #agents-single .agents-testi {
    margin-top: 30px;
    color: #000;
}

.single-aios-agents #agents-single .agents-testi-quote img {
    filter: invert(1);
}

.single-aios-agents #agents-single .agents-testi-description {
    padding: 0 40px;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    top: 20%;
    position: absolute;
    width: auto;
    left: 20%;
    font-size: 11px!important;
    right: auto !important;
}

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

.wpcf7-spinner {
    position: absolute;
}

.page-id-341 .aidefcf-wrapper .use-floating-validation-tip span.wpcf7-not-valid-tip,
.page-id-329 .aidefcf-wrapper .use-floating-validation-tip span.wpcf7-not-valid-tip {
    top: 0;
}

#content .entry em.ai-mobile-phone a:hover {
    color: var(--accent);
}

.page-id-0.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100%;
    padding: 0;
}

.ihf-details-template .header img.main__logo {
    -webkit-filter: drop-shadow(0px 2px 2px #222);
    filter: drop-shadow(0px 2px 2px #222);
}

.ihf-details-template .header .nav li a,
.ihf-details-template #listings-details .listings-slideshow-text span {
    text-shadow: -1px 1px 2px #000000;
}

.post-page-listings #content-full #content {
    /*padding: 0 50px;*/
}

ul.fp li.col3__item {
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 3);
    position: relative;
}

body.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    line-height: 1.1;
}

body.error404 .wpcf7 form .wpcf7-response-output {
    margin: 20px auto 0;
    font-size: 13px;
}

body #agents-results .agent-top {
    margin: 30px auto;
}

#ai-minimalist-testimonials-wrap h1 {
    padding: 30px 0 !important;
}

.ai-minimalist-testimonials-lists .ai-minimalist-testimonials-list .ai-minimalis-testimonials-cont {
    z-index: 6 !important;
    position: relative !important;
}

.ai-minimalist-testimonials-lists .ai-minimalist-testimonials-list a .ai-minimalist-testimonials-rating {
    position: relative;
    z-index: 9;
}

body #agents-results .agent-top {
    display: none;
}

#agents-results .agents-contact li a:hover,
#agents-single .agents-contact li a:hover {
    color: var(--accent) !important;
}

.aios-custom-ihomefinder-template-img-loader canvas {
    z-index: 3 !important;
    background: #000 !important;
    opacity: 0 !important;
}

#listings-details .listings-form textarea {
    padding-right: 55px !important;
}

#listings-details .listings-form .listings-field.submit {
    right: 24px !important;
}

div#areaPickerClearAll span.glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

.aios-smf-theme-three .aios-smf-header #theme-title {
    padding: 0 0 50px !important;
}

.aios-smf-theme-three .aios-smf-header #theme-title h2 {
    margin-top: 0 !important;
}

#listings-details .listings-address {
    color: #fff !important;
}

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100% !important;
    padding: 0 !important;
}

.git.bgFalls .git__btn {
    height: auto;
}

.ihf-polygon-reset.leaflet-control {
    color: #000000;
}

.aios-smf-theme-three .aios-smf-group .aios-smf-group-items li .aios-smf-group-item .filter-view-img canvas {
    background-color: #000!important;
}


/*Listing Details*/
.ihf-details-template #listings-details .listings-box {
    background: #000;
}

.ihf-details-template #listings-details .listings-cta>li>a.button-legacy.active,
.ihf-details-template #listings-details .listings-cta>li>a.button-legacy:hover {
    color: var(--aios-custom-ihomefinder-secondary-color) !important;
}

.ihf-details-template #listings-details .listings-cta.white>li>a {
    color: var(--aios-custom-ihomefinder-secondary-color);
}

.ihf-details-template #listings-details .listings-cta.white>li>a.active,
.ihf-details-template #listings-details .listings-cta.white>li>a:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.ihf-details-template #listings-details .listings-smi ul>li>a:hover {
    color: var(--aios-custom-ihomefinder-secondary-color);
    background: #fff;
    border-color: #fff;
}

.ihf-details-template #listings-details .listings-form h2 span {
    color: var(--aios-custom-ihomefinder-secondary-color);
}

.ihf-details-template #ihf-main-container.ihf-modal-container .modal input[type=submit],
.ihf-details-template #ihf-main-container.ihf-modal-container .modal button[type=submit],
.ihf-details-template #ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout {
    /* background: var(--aios-custom-ihomefinder-secondary-color); */
    /* border: 1px solid var(--aios-custom-ihomefinder-secondary-color); */
}

.ihf-details-template #ihf-main-container.ihf-modal-container .modal input[type=submit]:hover,
.ihf-details-template #ihf-main-container.ihf-modal-container .modal button[type=submit]:hover,
.ihf-details-template #ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout:hover {
    color: var(--aios-custom-ihomefinder-secondary-color) !important;
    background: #fff !important;
    border: 1px solid var(--aios-custom-ihomefinder-secondary-color) !important;
}

.ihf-details-template #listings-details .listings-form [type=submit] {
    color: var(--aios-custom-ihomefinder-secondary-color);
}

.ihf-details-template #listings-details .listings-form [type=submit]:hover {
    opacity: 0.8;
}


/*Listing Details*/

.call-to-actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 0 0 100px;
    position: relative;
    z-index: 10;
    max-width: 1140px;
    margin: 0 auto;
}

.call-to-actions a {
    margin: 15px;
    color: #000;
}

.fpWrap .ttl small,
.hpAbout .ttl small,
.hpAbout .ttl span,
.fcWrap .ttl small,
.media .ttl small {
    color: #000;
}
.hp-qs-form-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    text-overflow: ellipsis;
}
.hp-qs-form-field .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 250px !important;
}
.hp-qs-form-field .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: unset;
    top: 100%;
}

body.ihf-results-template.aios-custom-ihomefinder-dark-mode #listings-results .listings-list .listings-col:nth-child(even) .listings-info {
    color: #000;
}
body.ihf-results-template.aios-custom-ihomefinder-dark-mode #listings-results .listings-list .listings-col:nth-child(even) .listings-plan span img {
    -webkit-filter: none;
    filter: none;
}
body.ihf-results-template.aios-custom-ihomefinder-dark-mode #listings-results .listings-list .listings-col:nth-child(even) .listings-link {
    border-color: var(--aios-ihf-template-results-page-secondary-color) !important;
    color: var(--aios-ihf-template-results-page-secondary-color) !important;
}
body.ihf-results-template.aios-custom-ihomefinder-dark-mode #listings-results .listings-list .listings-col:nth-child(even) .listings-link:hover,
body.ihf-results-template.aios-custom-ihomefinder-dark-mode #listings-results .listings-list .listings-col:nth-child(even) .listings-link:focus-within {
    border-color: var(--aios-ihf-template-results-page-primary-color) !important;
    color: #fff !important;
}
body.ihf-results-template.ng-tns-0-0 .ihf-search {
    overflow: hidden;
}
body.ihf-results-template.ng-tns-0-0 .ihf-listings-container {
    height: calc(100vh - calc((101/1570)*100vw));
    overflow: hidden;
    overflow-y: visible;
}

.fpWrap, .fcWrap, .testiWrap{
    /* opacity: 0; */
}

.hp-slider-qs, .qsWrap, .fixedInfo, .hpAbout, .hpTeam, .ctaWrap, .git, footer.footer, .media {
    /* display: none; */
}

.fpWrap .siteBtn {
    max-width: 297px;
    margin: 70px auto 0;
    color: #000;
}
.hdr-info-wrap{
    color: #ffffff;
    text-align: center;
    margin-right: auto;
    margin-left: 15px;
    line-height: 1.75;
    font-size: 18px;
    font-size: clamp(14px, 1.13vw, 18px);
}
/*
#ihf-save-listing-form .form-group > .ihf-modal-form-response-output.output-error{
    display: none !important;
}*/