/*
Theme Name: Eric Gerner & Amber Gerner
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. 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: 'Quicksand', sans-serif;
    --font-family-title: 'Italiana', serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --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;
    --default-transition: all ease .4s;
}
/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/
/* Sub Menu */
#nav li{
    position:relative;
    display: inline-block;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    /* padding: 21px 0 0; */
    padding: 12px 0 0;
    position: absolute;
    width: 100%;
    min-width: 200px;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    z-index: 6;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
#nav .sub-menu a{
    color: #fff;
    display: block;
    padding: 10px;
    background: #cf9d3c;
}
#nav .sub-menu a:hover{
    background: #000;
    color: #fff;
    text-decoration: none;
}
#nav .sub-menu .sub-menu{
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}
#nav li:hover > .sub-menu{
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
#nav .sub-menu li{
    position: relative;
    display: block;
    margin-bottom: 1px;
}
/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
/* Global */
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; 
}
a,a:hover,a:visited,a:focus,input,input:focus,textarea,textarea:focus,select:focus,select{
    outline: none !important;
    text-decoration: none !important;
}
.slick-slide{
    outline: none !important;
}
.label-hide{
    display: none !important;
}
.no-padding {
    padding: 0;
}
.no-padding-left {
    padding-left: 0;
}
.no-padding-right {
    padding-right: 0;
}
.no-margin {
    margin: 0;
}
.no-margin-left {
    margin-left: 0 !important;
}
.no-margin-right {
    margin-right: 0 !important;
}
div#main-wrapper{
    overflow: hidden;
    position: relative;
}
body.body-overflow {
    overflow: hidden;
}
/*header*/
header.main-header {
    z-index: 1101;
    position: fixed;
    padding: 34px 15px;
    width: 100%;
    left: 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;
}
    .header-inner {
        position: relative;
        max-width: 1373px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
header.main-header.show-fixed {
    background: #000;
    padding: 12px 15px;
}
/*logo*/
.header-logo a {
    display: block;
    max-width: 157px;
    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; */
}
    header.main-header.show-fixed .header-logo a{
        max-width: 78px;
    }
/*nav*/
.hdr-nav {
    margin-left: auto;
}
#nav{
    font-size: 0;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin-left: 30px;
}
    #nav > li{
        margin: 0 10px;
        position: relative;
        display: inline-block;
        vertical-align: top;
    }
        #nav > li::after{
            content: '';
            position: absolute;
            top: 8px;
            right: -38px;
            width: 1px;
            height: 10px;
            background: #fff;
            opacity: .5;
        }
            #nav > li:last-child::after{
                display: none;
            }
        #nav > li:first-child {
            margin-left: 0;
        }
            #nav > li:last-child {
                margin-right: 0;
            }
        #nav > li > a {
            font-size: 15px;
            text-align: center;
            color: #fff;
            font-weight: 600;
            font-family: var(--font-family-default);
            display: block;
            position: relative;
            z-index: 5;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 5px;
            -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;
        }
            #nav > li:hover > a{
                opacity: .7;
            }
                #nav .sub-menu a {
                    color: #000;
                    padding: 11px 5px;
                    font-size: 13px;
                    font-weight: 400;
                    font-family: var(--font-family-default);
                    text-transform: uppercase;
                    letter-spacing: .5px;
                    text-align: center;
                    position: relative;
                    display: block;
                    -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;
                    background: #fff;
                }
                    #nav .sub-menu li:hover > a {
                        background: #999999;
                        color: #fff;
                    }
                        ul#nav > li > ul.sub-menu::after {
                            content: '';
                            position: absolute;
                            /* top: 15px; */
                            top: 6px;
                            left: 0;
                            right: 0;
                            margin: auto;
                            width: 0;
                            height: 0;
                            border-left: 6px solid transparent;
                            border-right: 7px solid transparent;
                            border-bottom: 7px solid #fff;
                        }
/*burger menu*/
.header-burger-menu {
    width: 60px;
    height: 60px;
    border: solid 1px #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    /*margin-left: 85px;*/
    margin-left: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
    .header-burger-menu span {
        height: 2px;
        background: #fff;
        width: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
        .header-burger-menu span:nth-child(2) {
            margin: 7px 0;
            width: 50%;
        }
            .header-burger-menu:hover{
                background: #999999;
                border: solid 1px #999999 !important;
            }
                .header-burger-menu:hover span:nth-child(2){
                    width: 100%;
                }
                    header.main-header.show-fixed .header-burger-menu {
                        border: solid 1px #000;
                        padding: 5px 15px;
                        height: 51px;
                    }
/*site off*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}
.site-offcanvas .offcanvas-backdrop.active {
    visibility: visible;
}
.site-offcanvas .offcanvas-backdrop {
    position: fixed;
    z-index: 1110;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}
.slide-menu-content {
    position: fixed;
    bottom: 0;
    right: -10%;
    width: 100%;
    max-width: 656px;
    height: 100%;
    opacity: 0;
    z-index: 1110;
    visibility: hidden;
    background: #000;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.slide-menu-content.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}
.slide-menu-inner-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
    z-index: 2;
    padding: 0;
}
.slide-menu-bottom-inner {
    padding: 0 15px;
    margin: 0 auto;
    display: block;
}
.slide-menu-content-holder {
    position: relative;
    padding: 40px 15px 30px;
    height: 100%;
}
    .slide-menu-content-inner {
        position: relative;
        z-index: 5;
        max-width: 470px;
        margin: 0 auto;
    }
.b-menu {
    margin-top: 122px;
    padding: 0;
}
.b-menu .menu-main-nav-container {
    display: block;
}
ul#slidenav {
    font-size: 0;
    column-count: 2;
}
ul#slidenav > li > a {
    display: inline-block;
    padding: 4px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    -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;
    position: relative;
    letter-spacing: 2px;
}
    
ul#slidenav > li ul.sub-menu a {
    font-size: 13px;
    color: #dbdbdb;
    font-weight: 400;
    font-family: var(--font-family-default);
    padding: 4px 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    -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;
}
ul#slidenav li a:hover{
    color: #999999 !important;
}
ul#slidenav > li:hover > a{
    color: #999999 !important;
}
ul#slidenav li ul.sub-menu {
    margin-top: 9px;
    margin-left: 0;
}
ul#slidenav li ul.sub-menu li {
    margin-bottom: 0px;
}
ul#slidenav > li {
    margin-bottom: 15px;
    padding-bottom: 5px;
    position: relative;
    min-height: 139px;
}
ul#slidenav > li:nth-child(3) {
    margin-bottom: 315px;
}
ul#slidenav > li > a i {
    font-style: normal;
}
ul#slidenav > li.bmenu-dd {
    margin-top: 12px;
}
ul#slidenav > li > .sub-menu {
    margin-bottom: 10px;
    margin-top: 7px !important;
}
.close-burger-menu {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 56px;
    right: 50px;
    padding: 5px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 60px;
    height: 60px;
    border: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
}
.close-burger-menu:hover{
    background: #999999;
    border: solid 1px #999999;
}
body.active {
    overflow: hidden;
}
/*side fixed smi*/
.side-fixed-contact {
    position: fixed;
    top: 0;
    right: 27px;
    pointer-events: none !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 101;
}
    .fixed-smi{
        position: relative;
    }
        .fixed-smi a > em {
            /*text-shadow: 0 0 5px #000;*/
        }
            .fixed-smi span {
                display: block;
                text-align: center;
                margin: 8px 0;
            }
                .fixed-smi a {
                    width: 44px;
                    height: 44px;
                    font-size: 20px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    padding: 5px;
                    -webkit-transition: all 0.4s ease-in-out;
                    -moz-transition: all 0.4s ease-in-out;
                    -o-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                    pointer-events: auto;
                    position: relative;
                    z-index: 4;
                    color: #fff;
                    background: transparent;
                    border: solid 1px #fff;     
                    border-radius: 100%;       
                }
                    .fixed-smi a:hover {
                        background: #999999 !important;
                        border: solid 1px #999999;
                    }
                        .side-fixed-contact.black .fixed-smi a{
                            color: #999999;
                            border: solid 1px #999999;
                            text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279415px 0px;
                        }
/*slideshow*/
.slideshow-area,
.slider-holder {
    position: relative;
}
    .slider-holder::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
        z-index: 2;
        pointer-events: none;
        opacity: .5;
    }
        .slider-holder::before {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 50%;
            opacity: .8;
            background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
            z-index: 1;
            pointer-events: none;
        }
            .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-volume {
                display: none;
            }
/*global title*/
.global-site-title {
    text-align: center;
    font-size: 95px;
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    position: relative;
    padding: 0 0 20px;
}
    .global-site-title.white-text{
        color: #fff;
    }
        .global-site-title span {
            display: block;
            font-family: var(--font-family-default);
            font-size: 45px;
            margin-bottom: 5px;
            letter-spacing: 13px;
        }
            .global-site-title::before {
                content: '';
                position: absolute;
                bottom: 1px;
                left: 0;
                right: 0;
                margin: auto;
                width: 108px;
                height: 1px;
                background: #000;
            }
                .global-site-title::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    margin: auto;
                    width: 49px;
                    height: 3px;
                    background: #000;
                }
                    .global-site-title.white-text::after,
                    .global-site-title.white-text:before{
                        background: #fff;
                    }
/*intro popup section*/
.aiosp-wrap {
    z-index: 1143 !important;
}
.aiosp-bg {
    z-index: 1142 !important;
}
.aiosp-container.aiosp-ref-\#introNewsletterPopup .aiosp-content.aios-popup-body.newsletter-popup-body {
    min-height: auto;
    width: 95%;
    max-width: 754px;
    background: transparent;
    margin: 50px auto;
    padding: 0;
}
div#introNewsletterPopup {
    background: #000;
    position: relative;
    padding: 15px;
}
.intro-popup-holder .global-site-title {
    font-size: 72px;
}
.intro-popup-holder .global-site-title span{
    font-size: 36px;
    letter-spacing: 4px;
}
.aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close {
    color: #fff;
    opacity: .25;
    font-size: 0;
    width: auto;
    height: auto;
    line-height: 1;
    top: 50px;
    right: 50px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close::after {
    content: "\b0241";
    font-size: 30px;
    color: #fff;
    font-family: 'agentimage';
}
.aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close:hover{
    opacity: 1;
}
.intro-popup-holder {
    position: relative;
    overflow: hidden;
    padding: 92px 15px 120px;
    z-index: 5;
}
.intro-popup-form {
    max-width: 462px;
    margin: 40px auto 0;
}
.intro-popup-form form {
    position: relative;
    font-size: 0;
}
.intro-popup-fields input, .intro-popup-fields textarea {
    font-size: 14px;
    font-weight: 400;
    color: rgb(255 255 255 / 50%);
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    width: 100%;
    height: 69px;
    border-radius: 0;
    resize: none;
    border: none;
    border-bottom: 1px solid #fff;
    letter-spacing: 0.5px;
    padding: 0;
    text-transform: uppercase;
}
.intro-popup-fields textarea {
    height: 139px !important;
    padding-top: 36px;
    padding-right: 55px;
}
.intro-popup-fields.intro-popup-textarea {
    width: 100%;
    margin-bottom: 0;
    position: relative;
}
.intro-popup-fields {
    position: relative;
    width: 50%;
    display: inline-block;
    padding: 0 11px;
    vertical-align: top;
    margin-bottom: 11px;
}
.intro-popup-form div.wpcf7 .ajax-loader {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -18px;
}
.intro-popup-form span.wpcf7-not-valid-tip {
    font-size: 11px;
}
.intro-popup-form span.wpcf7-form-control-wrap {
    display: block;
}
.intro-popup-form div.wpcf7-response-output {
    margin: auto;
    position: absolute;
    width: calc(100% - 22px);
    font-size: 14px;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 5px;
}
.intro-popup-form .wpcf7-spinner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.intro-popup-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    bottom: 5px;
    left: 0;
    z-index: 100;
    border: 1px solid #ff0000;
    background: #fff;
    padding: .2em .8em;
    width: auto;
}
.intro-popup-fields input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: .5;
}
.intro-btn input {
    font-size: 0;
    border: 0;
    width: 46px;
    height: 47px;
}
.intro-btn {
    position: absolute;
    bottom: 30px;
    right: 19px;
    color: #fff;
    z-index: 5;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.intro-btn:hover{
    color: #999999;
}
.intro-btn em {
    position: absolute;
    font-size: 47px;
    pointer-events: none;
}
/*quick search*/
.quick-search-area {
    position: absolute;
    bottom: 161px;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 0 15px;
    display: none;
}
    .qs-holder {
        position: relative;
        display: block;
        max-width: 810px;
        margin: 0 auto;
    }
    .qs-holder .flexmls_connect__search_field > label {
        display: none;
    }
        .qs-form {
            position: relative;
            border: solid 5px rgb(255 255 255 / 10%);
        }

            .qs-form input {
                border-radius: 0;
                color: #666666;
                font-size: 15px;
                font-weight: 400;
                font-family: var(--font-family-default);
                -webkit-appearance: none;
                text-transform: uppercase;
                -moz-appearance: none;
                background: #fff;
                width: 100%;
                height: 85px;
                padding: 0px 60px;
                line-height: 1;
                letter-spacing: 1.3px;
                border: none;
            }
                .qs-form .qs-field {
                    display: inline-block;
                    vertical-align: bottom;
                    width: 100%;
                }
                    .btn-form.qs-field em {
                        font-size: 23px;
                        color: #000;
                        position: absolute;
                        pointer-events: none;
                        -webkit-transition: all 0.4s ease-in-out;
                        -moz-transition: all 0.4s ease-in-out;
                        -o-transition: all 0.4s ease-in-out;
                        transition: all 0.4s ease-in-out;
                    }
                        .btn-form.qs-field input {
                            text-transform: uppercase;
                            border: none;
                            font-size: 0;
                            height: 22px;
                            border: none;
                            padding: 0;
                            background: transparent;
                        }
                            .btn-form.qs-field:hover em{
                                color: #999999;
                            }
                                .btn-form.qs-field {
                                    position: absolute;
                                    text-align: center;
                                    width: 23px;
                                    margin: 0;
                                    bottom: 31px;
                                    right: 33px;
                                    z-index: 5;
                                }
                                    .long-form {
                                        width: 100%;
                                    }
                                .qs-form form {
                                    position: relative;
                                    font-size: 0;
                                }
                            .qs-text {
                                padding: 11px 0 0;
                                text-align: center;
                                font-size: 10px;
                                color: #fff;
                                letter-spacing: 3px;
                                font-family: var(--font-family-default);
                                font-weight: 400;
                                text-transform: uppercase;
                            }
                        a.scroll-down {
                            position: absolute;
                            bottom: 48px;
                            z-index: 5;
                            left: 0;
                            right: 0;
                            width: 50px;
                            height: 50px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            border: solid 1px #fff;
                            margin: auto;
                            border-radius: 100%;
                            color: #fff;
                            font-size: 19px;
                            -webkit-transition: all 0.4s ease-in-out;
                            -moz-transition: all 0.4s ease-in-out;
                            -o-transition: all 0.4s ease-in-out;
                            transition: all 0.4s ease-in-out;
                            opacity: .5;
                        }
                    a.scroll-down:hover{
                        background: #999999;
                        border: solid 1px #999999;
                        opacity: 1;
                    }
/*global btn*/
.global-site-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 181px;
    height: 50px;
    border: solid 1px #000;
    font-size: 14px;
    color: #000;
    letter-spacing: .2px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
    .global-site-btn a:hover{
        background: #999999;
        border: solid 1px #999999;
        color: #fff;
    }
/*welcome*/
section.welcome-area {
    position: relative;
    padding: 105px 15px 0;
}
    section.welcome-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 45%,rgba(255,255,255,0) 100%);
    }
        section.welcome-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 95%;
            height: 95%;
            background: url(images/wc-logo-accent.png) no-repeat;
            background-position: center;
            z-index: 2;
            opacity: .04;
            margin: auto;
        }
        .wc-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
            .wc-bg canvas {
                display: block;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                opacity: .5;
            }
                .wc-holder {
                    position: relative;
                    max-width: 1500px;
                    margin: 0 auto;
                    z-index: 5;
                }
                    .wc-inner {
                        display: flex;
                        flex-wrap: wrap;
                    }
                        .wc-photo {
                            width: 42.6%;
                        }
                            .wc-head .global-site-title {
                                text-align: left;
                                max-width: 315px;
                                margin: 0 auto;
                            }
                                .wc-head {
                                    padding: 113px 15px 0;
                                    width: 28%;
                                }
                                    .wc-head .global-site-title::after {
                                        right: auto;
                                        left: 30px;
                                    }
                                        .wc-head .global-site-title::before {
                                            right: auto;
                                        }
                                    .wc-content {
                                        width: 29.4%;
                                        padding: 114px 0 0;
                                    }
                                .wc-text p {
                                    font-size: 15px;
                                    color: #000;
                                    line-height: 1.65;
                                    letter-spacing: .7px;
                                    padding: 0 0 25px;
                                    font-family: var(--font-family-default);
                                }
                            .wc-content-inner {
                                max-width: 325px;
                            }
                        .wc-text {
                            margin: 0 0 19px;
                        }
/*properties*/
section.featured-properties-area {
    padding: 91px 0 112px;
    position: relative;
}
    .fp-holder {
        max-width: 1600px;
        margin: 0 auto;
    }
        .fp-slick-slider {
            position: relative;
            margin: 42px -7px 73px;
        }
            .fp-slick-slider .slick-slide > div > div {
                /*display: block !important;*/
            }
                .fp-slick-slider:not(.slick-initialize) > div:not(:first-child){
                    display:none;
                }
                    .fp-list {
                        padding: 7px;
                        /*max-width: 537px;*/
                    }
                        .fp-list a {
                            display: block;
                            position: relative;
                            overflow: hidden;
                        }
                            .fp-photo {
                                position: relative;
                            }
                                .fp-photo canvas {
                                    display: block;
                                    width: 100%;
                                }
                                    .fp-photo img {
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        object-fit: cover;
                                        object-position: center;
                                    }
                                        .fp-list a::after {
                                            content: '';
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            width: 100%;
                                            height: 50%;
                                            background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                                            z-index: 5;
                                        }
                                    .fp-content {
                                        position: absolute;
                                        bottom: -41px;
                                        left: 0;
                                        width: 100%;
                                        padding: 3px 25px 0;
                                        z-index: 6;
                                        display: flex;
                                        align-items: flex-end;
                                        justify-content: space-between;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }
                                    .fp-list a:hover .fp-content{
                                        bottom: 29px;
                                    }
                                .fp-address {
                                    font-size: 22px;
                                    color: #fff;
                                    font-weight: 500;
                                    font-family: var(--font-family-default);
                                    text-transform: uppercase;
                                    letter-spacing: 2px;
                                }
                            .fp-address span{
                                display: block;
                                font-size: 15px;
                                letter-spacing: 1.5px;
                                margin-top: 9px;
                            }
                        .fp-specs{
                            font-size: 15px;
                            letter-spacing: 1.5px;
                            font-family: var(--font-family-default);
                            margin-top: 10px;
                            color: #fff;
                            text-transform: uppercase;
                            -webkit-transition: all 0.4s ease-in-out;
                            -moz-transition: all 0.4s ease-in-out;
                            -o-transition: all 0.4s ease-in-out;
                            transition: all 0.4s ease-in-out;
                            opacity: 0;
                        }
                    .fp-price{
                        font-size: 32px;
                        letter-spacing: 1.5px;
                        font-family: var(--font-family-title);
                        margin-top: 10px;
                        color: #fff;
                        text-transform: uppercase;
                        -webkit-transition: all 0.4s ease-in-out;
                        -moz-transition: all 0.4s ease-in-out;
                        -o-transition: all 0.4s ease-in-out;
                        transition: all 0.4s ease-in-out;
                        opacity: 0;
                    }
                .fp-view{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 101px;
                    height: 50px;
                    background: #999999;
                    border: solid 1px #999999;
                    color: #fff;
                    font-size: 14px;
                    letter-spacing: .2px;
                    -webkit-transition: all 0.4s ease-in-out;
                    -moz-transition: all 0.4s ease-in-out;
                    -o-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                    opacity: 0;
                }
                    .fp-list a:hover .fp-specs,
                    .fp-list a:hover .fp-price,
                    .fp-list a:hover .fp-view,
                    .fp-list a:hover::before{
                        opacity: 1;
                    }
            .fp-content::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 54px;
                background: #999999;
            }
        .fp-list a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: solid 5px #999999;
            z-index: 7;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            opacity: 0;
            pointer-events: none;
        }
            .fp-arrow-holder {
                display: flex;
                align-items: center;
                justify-content: center;
            }
                .fp-arrow-holder button {
                    border: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    padding: 5px;
                    background: transparent;
                    font-size: 18px;
                    width: 50px;
                    height: 50px;
                    -webkit-transition: all 0.4s ease-in-out;
                    -moz-transition: all 0.4s ease-in-out;
                    -o-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                    color: #000;
                }
                    .fp-arrow-holder .global-site-btn {
                        max-width: 180px;
                        width: 100%;
                        margin: 0 28px;
                    }
                        .fp-arrow-holder button:hover{
                            background: #999999;
                            color: #fff;
                        }
/*proven performance*/
section.proven-performance-area {
    position: relative;
    padding: 113px 0 110px;
    background: #000000;
}
    .pp-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        .pp-bg canvas {
            display: block;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .3;
        }
    .pp-holder {
        position: relative;
        z-index: 5;
    }
        .pp-list-holder {
            display: flex;
            /*justify-content: space-between;*/
            justify-content: center;
            margin: 78px 0 0;
        }
            .pp-list {
                text-align: center;
                position: relative;
                padding: 0 15px;
                /*width: 25%*/
                width: 50%;
                border-right: solid 1px #5d5d5d;
            }
                .pp-list:last-child{
                    border-right: none;
                }
                .pp-stats-number {
                    font-size: 65px;
                    font-weight: 400;
                    font-family: var(--font-family-title);
                    text-transform: uppercase;
                    margin-bottom: 12px;
                    color: #fff;
                    position: relative;
                }
                    .pp-text {
                        font-size: 14px;
                        font-weight: 400;
                        font-family: var(--font-family-default);
                        letter-spacing: 0.3px;
                        line-height: 1.8;
                        text-transform: uppercase;
                        color: #adadad;
                    }
/*testimonials*/
section.testimonials-area {
    position: relative;
    padding: 110px 0 116px;
}
    .testi-holder {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
        .testi-photo {
            width: 50%;
        }
            .testi-photo-inner {
                float: right;
                width: calc((100vw - 1140px) / 2 + 100%);
            }
            .testi-photo img {
                width: 100%;
            }
                .testi-head {
                    width: 50%;
                    text-align: center;
                    position: relative;
                    padding: 50px 0 0;
                }
                    .testi-head .global-site-title::after {
                        right: auto;
                        left: 30px;
                    }
                        .testi-head .global-site-title::before {
                            right: auto;
                        }
                    .testi-head-inner {
                        position: relative;
                        margin-left: -100px;
                        background: #fff;
                        padding: 30px 84px;
                        min-height: 400px;
                    }
                        .testi-head .global-site-title {
                            z-index: 5;
                            text-align: left;
                        }
                            .testi-feed {
                                position: relative;
                                z-index: 3;
                                width: 100%;
                            }
                                .testi-slider {
                                    background: #fff;
                                    padding: 66px 15px 62px;
                                    margin: -182px 0 0 auto;
                                    min-height: 384px;
                                    position: relative;
                                }
                                    .testi-slider::after{
                                        content: '';
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        background: url(images/testi-bg.jpg) no-repeat;
                                        background-size: cover;
                                        background-position: center;
                                        filter: grayscale(1);
                                        opacity: .15;
                                    }
                                .testi-slick-slider {
                                    position: relative;
                                    z-index: 5;
                                    max-width: 1070px;
                                    margin: 0 auto;
                                }
                                    .testi-text {
                                        font-size: 15px;
                                        color: #000000;
                                        font-weight: 400;
                                        line-height: 2;
                                        letter-spacing: .7px;
                                        font-family: var(--font-family-default);
                                        font-style: italic;
                                        text-align: center;
                                    }
                                        .testi-author {
                                            font-size: 25px;
                                            font-weight: 400;
                                            color: #000;
                                            text-transform: uppercase;
                                            font-family: var(--font-family-title);
                                            letter-spacing: 2.5px;
                                            margin: 39px 0 0;
                                            text-align: center;
                                        }
                                            .testi-list {
                                                padding: 0 60px 12px;
                                                /*border-right: solid 1px rgb(0 0 0 / 10%);*/
                                            }
                                            .testi-slick-slider .slick-slide.slick-current.slick-active .testi-list{
                                                border-right: solid 1px rgb(0 0 0 / 10%);
                                            }
                                        .testi-slick-slider .slick-slide > div > div{
                                            display: block !important;
                                        }
                                    .testi-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                        display:none;
                                    }
                                .testi-arrow-holder {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    width: 100%;
                                    margin-top: 50px;
                                }
                            .testi-arrow-holder button {
                                border: none;
                                -webkit-appearance: none;
                                -moz-appearance: none;
                                padding: 5px;
                                background: transparent;
                                font-size: 18px;
                                width: 50px;
                                height: 50px;
                                -webkit-transition: all 0.4s ease-in-out;
                                -moz-transition: all 0.4s ease-in-out;
                                -o-transition: all 0.4s ease-in-out;
                                transition: all 0.4s ease-in-out;
                                color: #000;
                            }
                        .testi-arrow-holder .global-site-btn {
                            max-width: 180px;
                            width: 100%;
                            margin: 0 28px;
                        }
                    .testi-arrow-holder button:hover{
                        background: #999999;
                        color: #fff;
                    }                    
/*notable*/
section.notable-sales-area {
    position: relative;
    padding: 0 15px 82px;
}
    section.notable-sales-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    }
        .ns-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
            .ns-bg canvas {
                display: block;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                opacity: .25;
                filter: grayscale(1);
            }
                .ns-holder {
                    max-width: 1344px;
                    margin: 0 auto;
                    position: relative;
                    z-index: 5;
                }
                    .ns-slider {
                        position: relative;
                        margin-top: 70px;
                        margin-bottom: 60px;
                        padding: 0 55px 0;
                    }
                        .ns-slick-slider .slick-slide > div > div {
                            display: block !important;
                        }
                            .ns-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                display:none;
                            }
                                .ns-list a {
                                    display: block;
                                    position: relative;
                                }
                                    .ns-photo {
                                        position: relative;
                                    }
                                        .ns-photo canvas {
                                            display: block;
                                            width: 100%;
                                            -webkit-transition: all 0.4s ease-in-out;
                                            -moz-transition: all 0.4s ease-in-out;
                                            -o-transition: all 0.4s ease-in-out;
                                            transition: all 0.4s ease-in-out;
                                            background: #000;
                                            position: relative;
                                            z-index: 2;
                                            opacity: 0;
                                        }
                                            .ns-list a:hover .ns-photo canvas{
                                                opacity: .3;
                                            }
                                            .ns-photo img {
                                                position: absolute;
                                                top: 0;
                                                left: 0;
                                                width: 100%;
                                                height: 100%;
                                                object-fit: cover;
                                                object-position: center;
                                            }
                                        .ns-content {
                                            position: absolute;
                                            bottom: 54px;
                                            left: 0;
                                            width: 100%;
                                            padding: 0 15px 0;
                                            z-index: 6;
                                            text-align: center;
                                        }
                                    .ns-address {
                                        font-size: 18px;
                                        color: #fff;
                                        font-weight: 500;
                                        font-family: var(--font-family-default);
                                        text-transform: uppercase;
                                        letter-spacing: 1.6px;
                                    }
                            .ns-price{
                                font-size: 40px;
                                font-family: var(--font-family-title);
                                margin-bottom: 13px;
                                color: #fff;
                                text-transform: uppercase;
                            }
                        .ns-list a::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            height: 50%;
                            background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                            z-index: 5;
                        }
                    .ns-arrow-holder {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        pointer-events: none;
                    }
                .ns-arrow-holder button {
                    border: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    padding: 5px;
                    background: transparent;
                    font-size: 18px;
                    width: 50px;
                    height: 50px;
                    -webkit-transition: all 0.4s ease-in-out;
                    -moz-transition: all 0.4s ease-in-out;
                    -o-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                    color: #000;
                    pointer-events: auto;
                }
            .ns-arrow-holder button:hover{
                background: #999999;
                color: #fff;
            }
        .ns-slick-slider {
            max-width: 1210px;
            margin: 0 auto;
        }
            .ns-holder .global-site-btn a {
                margin: 0 auto;
            }
/*cta*/
section.cta-area {
    position: relative;
    padding: 98px 15px;
}
    .cta-holder {
        max-width: 1400px;
        margin: 0 auto;
    }
        .cta-feed {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            margin: 41px -19px 0;
        }
            .cta-col {
                width: calc(100% / 3);
            }
                .cta-col:nth-child(2){
                    display: flex;
                    flex-direction: column-reverse;
                }
                .cta-list {
                    padding: 19px;
                    width: 100%;
                }
                    .cta-list a {
                        display: block;
                        position: relative;
                    }
                        .cta-photo {
                            position: relative;
                        }
                            .cta-photo canvas {
                                display: block;
                                width: 100%;
                                background: #424242;
                                position: relative;
                                z-index: 2;
                                opacity: .82;
                                -webkit-transition: all 0.4s ease-in-out;
                                -moz-transition: all 0.4s ease-in-out;
                                -o-transition: all 0.4s ease-in-out;
                                transition: all 0.4s ease-in-out;
                            }
                                .cta-list a:hover .cta-photo canvas {
                                    opacity: .45;
                                }
                                .cta-list:nth-child(2) .cta-photo canvas {
                                    background: #000;
                                }
                                .cta-photo img{
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    object-position: center;
                                    filter: grayscale(1);
                                }
                                    .cta-label {
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        color: #fff;
                                        text-transform: uppercase;
                                        z-index: 5;
                                        text-align: center;
                                        font-size: 30px;
                                        font-family: var(--font-family-title);
                                        letter-spacing: 3px;
                                        line-height: 1.3;
                                    }
/*videos*/
section.featured-videos-area {
    position: relative;
    padding: 58px 15px 100px;
}
    section.featured-videos-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 660px;
        height: 55.5%;
        background: url(images/fv-bg-accent.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        z-index: 2;
    }
        .fv-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
        }
            .fv-bg::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, rgba(255,255,255,1) 45%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
                z-index: 2;
            }
            .fv-bg canvas {
                display: block;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                opacity: .5;
                filter: grayscale(1);
            }
                .fv-holder {
                    max-width: 1320px;
                    margin: 0 auto;
                    position: relative;
                    z-index: 5;
                }
                    .fv-slick-slider .slick-slide > div > div,
                    .fv-thumb-slick-slider .slick-slide > div > div {
                        display: block !important;
                    }
                        .fv-slick-slider:not(.slick-initialize) > div:not(:first-child),
                        .fv-thumb-slick-slider:not(.slick-initialize) > div:not(:first-child){
                            display:none;
                        }
                            .fv-list a {
                                display: block;
                                position: relative;
                            }
                                .fv-photo {
                                    position: relative;
                                }
                                    .fv-photo canvas {
                                        display: block;
                                        width: 100%;
                                        background: #000;
                                        position: relative;
                                        z-index: 2;
                                        opacity: 0;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }
                                        .fv-list a:hover .fv-photo canvas {
                                            opacity: .3;
                                        }
                                        .fv-photo img {
                                            position: absolute;
                                            top: 0;
                                            left: 0;
                                            width: 100%;
                                            height: 100%;
                                            object-fit: cover;
                                            object-position: center;
                                        }
                                            .fv-slick-slider {
                                                margin: 70px 0 0;
                                            }
                                        .fv-list a::after{
                                            content: '';
                                            position: absolute;
                                            top: 0;
                                            left: 0;
                                            right: 0;
                                            bottom: 0;
                                            width: 90px;
                                            height: 90px;
                                            background: url(images/play-icon.png) no-repeat;
                                            background-position: center;
                                            background-size: contain;
                                            z-index: 5;
                                            margin: auto;
                                        }
                                    .fv-thumb-slick-slider .fv-list a::after{
                                        display: none;
                                    }
                                .fv-thumb-slick-slider .fv-list a .fv-photo{
                                    filter: grayscale(1);
                                }
                            .fv-thumb-slick-slider .fv-list{
                                padding: 10px;
                            }
                        .fv-thumb-slider {
                            position: relative;
                            max-width: 890px;
                            margin: 10px auto 40px;
                        }
                    .fv-thumb-slick-slider {
                        max-width: 752px;
                        margin: 0 auto;
                    }
                    .fv-holder .global-site-btn{
                        padding-top: 40px;
                    }
                .fv-arrow-holder {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    pointer-events: none;
                }
            .fv-arrow-holder button {
                border: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                padding: 5px;
                background: transparent;
                font-size: 18px;
                width: 50px;
                height: 50px;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
                color: #000;
                pointer-events: auto;
            }
        .fv-arrow-holder button:hover{
            background: #999999;
            color: #fff;
        }
    .fv-holder .global-site-btn a{
        margin: 0 auto;
    }
/*social media*/
section.social-media-area {
    position: relative;
    padding: 102px 15px 120px;
}
    .sm-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        .sm-bg canvas {
            display: block;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
            .sm-holder {
                max-width: 1312px;
                margin: 0 auto;
                display: flex;
                flex-wrap: wrap;
                position: relative;
                z-index: 5;
            }
                .sm-holder::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    width: 1px;
                    height: 87%;
                    background: #fff;
                    z-index: 2;
                    margin: auto;
                    opacity: .3;
                }
                .sm-feed-list {
                    width: 50%;
                    position: relative;
                }
                    .sm-feed-inner {
                        max-width: 555px;
                    }
                        .sm-feed-list.fb-feed {
                            padding-right: 15px;
                        }
                            .sm-feed-list.ins-feed {
                                padding-left: 15px;
                            }
                                .sm-feed-list.ins-feed .sm-feed-inner{
                                    margin: 0 0 0 auto;
                                }
                                    .sm-feed-inner .global-site-title {
                                        text-align: left;
                                    }
                                        .sm-feed-inner .global-site-title::after {
                                            right: auto;
                                            left: 30px;
                                        }
                                            .sm-feed-inner .global-site-title::before {
                                                right: auto;
                                            }
                                        .sm-feed-account {
                                            display: flex;
                                            align-items: center;
                                            justify-content: space-between;
                                            margin: -6px 0 0;
                                        }
                                    .fb-feed .sm-feed-account img{
                                        opacity: 0;
                                    }
                                .sm-feed-account a {
                                    display: inline-block;
                                    color: #fff;
                                    font-size: 25px;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }
                            .sm-feed-account a:hover{
                                color: #999999;
                            }
                        .fb-feed-list-content {
                            display: flex;
                            flex-wrap: wrap;
                            margin-bottom: 37px;
                        }
                    .fb-feed-list-logo {
                        width: 18%;
                    }
                .fb-feed-list-text {
                    width: 82%;
                    padding-left: 26px;
                    padding-top: 15px;
                }
            .fb-feed-list-text span {
                display: block;
                color: #999999;
                font-size: 15px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .9px;
                font-family: var(--font-family-default);
                margin-bottom: 8px;
            }
        .fb-feed-list-text p {
            color: #999999;
            font-size: 15px;
            font-weight: 400;
            font-family: var(--font-family-default);
            line-height: 2;
            letter-spacing: .7px;
        }
            .facebook-feed {
                margin: 23px 0 0;
            }
                .fb-feed-list-photo a {
                    position: relative;
                    display: block;
                }
                    .fb-feed-list-photo canvas {
                        display: block;
                        width: 100%;
                        background: #000;
                        -webkit-transition: all 0.4s ease-in-out;
                        -moz-transition: all 0.4s ease-in-out;
                        -o-transition: all 0.4s ease-in-out;
                        transition: all 0.4s ease-in-out;
                        position: relative;
                        z-index: 2;
                        opacity: 0;
                    }
                        .fb-feed-list-photo img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            object-position: center;
                        }
                            .fb-feed-list-photo a:hover canvas{
                                opacity: .3;
                            }
                                .instagram-slick-slider .slick-slide > div > div {
                                    /*display: block !important;*/
                                }
                            .instagram-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                display:none;
                            }
                        .instagram-slick-slider {
                            margin: 1px -9px 0;
                            position: relative;
                        }
                    .ins-list {
                        padding: 9px;
                    }
                .ins-list a{
                    display: block;
                    position: relative;
                }
            .ins-list canvas{
                display: block;
                width: 100%;
                position: relative;
                z-index: 2;
                background: #000;
                opacity: 0;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }
        .ins-list a:hover canvas{
            opacity: .3;
        }
    .ins-list img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
/*footer*/
footer.main-footer {
    position: relative;
    padding: 113px  15px 106px;
    background: #fff;
}
    
    .ftr-holder {
        position: relative;
        z-index: 5;
        max-width: 1312px;
        margin: 0 auto;
    }
        .footer-details {
            padding: 0 0;
        }
            .ftr-bg{
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
                .ftr-bg canvas{
                    display: block;
                    width: 100%;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    height: 100%;
                    opacity: .25;
                    filter: grayscale(1);
                    /*background-attachment: fixed;*/
                }
                    .ftr-bg::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(to bottom, rgba(255,255,255,1) 45%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
                        z-index: 2;
                    }
/*footer nav*/
.ftr-nav {
    border-top: solid 1px rgba(0,0,0,.05);
    border-bottom: solid 1px rgba(0,0,0,.05);
    padding: 32px 0;
    margin: 30px 0 0;
}
    ul.footernav {
        font-size: 0;
        margin: 0 0;
        text-align: center;
    }
        ul.footernav > li > a {
            display: inline-block;
            padding: 5px;
            color: #000;
            font-size: 15px;
            font-weight: 600;
            font-family: var(--font-family-default);
            text-transform: uppercase;
            -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;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
            ul.footernav li a:hover{
                color: #999999 !important;
            }
                ul.footernav > li {
                    margin: 0 30px 0;
                    display: inline-block;
                    vertical-align: top;
                    position: relative;
                }
                    ul.footernav > li:last-child{
                        margin-right: 0;
                    }
                        ul.footernav > li:first-child{
                            margin-left: 0;
                        }  
/*footer logo*/
.ftr-logo a {
    display: block;
    max-width: 191px;
    margin: 0 auto;
}
/*footer details*/
.ftr-contact {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 51px;
    flex-wrap: wrap;
    text-align: center;
}
    .ftr-contact span {
        /* display: block;
        margin: 0 19px 2px; */
		display: flex;
		margin: 0 19px 2px;
		text-align: left;
    }
        .ftr-contact a {
            display: inline-block;
            padding: 5px;
            color: #333333;
            font-size: 15px;
            font-weight: 400;
            -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;
            font-family: var(--font-family-default);
            line-height: 1.4;
        }
            .ftr-contact a:hover{
                color: #999999 !important;
            }
                .ftr-contact em.ai-font-phone {
                    font-size: 11px;
                    margin-right: 8px;
                }
                    .ftr-contact em.ai-font-envelope-f {
                        font-size: 11px;
                        margin-right: 9px;
                    }
                        .ftr-contact em.ai-font-location-c {
                            font-size: 18px;
                            top: 3px;
                            margin-right: 10px;
                        }
                            span.ftr-loc {
                                position: relative;
                            }
                        span.ftr-loc a {
                            display: inline-flex;
                            top: 1px;
                            position: relative;
                        }
                    .ftr-contact a em {
                        margin-right: 13px;
                    }
                .ftr-contact em.ai-font-location-b {
                    font-size: 22px;
					margin-right: 10px;
                }
/*footer smi*/
.ftr-smi {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 51px 0 0;
}
    .ftr-smi a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 43px;
        height: 43px;
        background: #000;
        color: #fff;
        font-size: 20px;
        margin: 0 6px;
        -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;
        padding: 5px;
        border-radius: 100%;
    }
        .ftr-smi a:hover{
            background: #999999;
        }
/*disclaimer*/
.ftr-disclaimer {
    text-align: center;
    font-size: 11px;
    color: #999999;
    line-height: 2;
    letter-spacing: .2px;
    font-family: var(--font-family-default);
    margin: 29px auto 4px;
    max-width: 1140px;
}
    .ftr-disclaimer 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;
    }
        .ftr-disclaimer a:hover{
            color: #000;
        }
/*copyright*/
.footer-copyright {
    margin-bottom: 13px;
    text-align: center;
}
.footer-copyright, 
.footer-copyright a {
    font-size: 12px;
    color: #000;
    line-height: 2;
    letter-spacing: 1px;
    font-family: var(--font-family-default);
    font-weight: 400;
    -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;
}
    .footer-copyright a:hover{
        color: #999999;
    }
        .footer-copyright a[href="https://www.agentimage.com"]{
            text-decoration: underline !important;
            color: #000;
        }   
            .footer-copyright a[href="https://www.agentimage.com"]:hover{
                color: #999999;
            }
                .footer-copyright span{
                    /*text-transform: uppercase;*/
                }
.mls {
    font-size: 32px;
    color: #000;
    opacity: .5;
    text-align: center;
}
.mls em {
    margin: 0 2px;
}
.ft-bottom {
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*******************************************************
 *
 * 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: 74%; }
#content-full #content { width: 100%; }
/* Adjust width of sidebar */
.sidebar{ width: 24%; }
/* 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 {
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    font-size: 40px;
    letter-spacing: 3px;
}
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
}
.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}
/** Updates **/
.header-logo {
    max-width: 225px;
}
.header-logo > div {
    display: flex;
    align-items: center;
}
.broker-logo-hdr {
    margin-left: 20px;
}
.broker-logo-hdr img {
    max-width: 120px;
}
.show-fixed .broker-logo-hdr img {
    max-width: 70px;
}  
.broker-logo-ftr {
    margin-top: 30px;
}
.broker-logo-ftr img {
    margin: 0 auto;
}
#nav > li:nth-child(3) .sub-menu {
    column-count: 2;
    min-width: 400px;
    margin-left: 0;
    left: 50%;
    transform: translate(-50%, -20px);
}
#nav > li:nth-child(3):hover > .sub-menu {
    transform: translate(-50%, 0%);
}
.post-page-home-valuation .ip-banner {
    display: block;
}
.pp-list-holder{
    max-width: 900px;
    margin: 78px auto 0;
}
#content .ai-communities-pagination span.page-numbers.current {
    color: var(--aios-communities-primary-color);
}
#listings-details .listings-form textarea {
    padding-right: 30px !important;
}
.single-aios-listings .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    width: auto;
}
.page-id-132 .entry.entry-content iframe {
    min-height: 768px;
}
.properties-printable-logo {
    position: absolute;
    top: 60px;
    left: 50%;
    z-index: 1;
    width: 50%;
    transform: translateX(-50%);
}
.ai-contact-wrap a {
  transition: var(--default-transition);
}
.ai-contact-wrap span.context-mob a:hover,
.ai-contact-wrap span.context-email a:hover {
  color: #cfcfcf
}
.aios-testimonials-content.entry,
.listing-module-page .entry-title {
  display: none;
}
.container-theme-filter {
  width: 100% !important;
}
.page-id-130 p#breadcrumbs{
    padding: 20px 0;
}
.newsletter-form-wrap {
	max-width: 400px;
	margin: 0 auto;
}
.newsletter-form-wrap .wpcf7 form {
    position: relative;
}
.newsletter-form-wrap .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    left: auto;
    top: 0.85em;
    right: 0.35em;
    padding: 0.25em 0.5em;
    line-height: 1;
    height: auto;
    width: auto;
}
.newsletter-form-wrap .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 11px;
    margin: 1em auto 0;
    text-align: center;
    padding: 0.25em 1em;
}
.newsletter-form-wrap .wpcf7 form .wpcf7-spinner {
    position: absolute;
    top: 100%;
    margin: 0;
    right: 0;
}
.page-id-4686 #content .entry-title {
	text-align: center;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
.featured-properties-area, .proven-performance-area, .cta-area, .social-media-area, .main-footer {
    display:none;
}
.testimonials-area, .notable-sales-area, .featured-videos-area{
    opacity:0;
}
.ftr-logo {
    display: flex;
    justify-content: center;
}
.ftr-logo a {
    display: block;
    max-width: 191px;
    margin: 0 25px 0 0;
}
.for-map {
	position: relative;
}
.footer-map {
	display: inline-block;
  position: absolute;
  right: 0;
	margin-top: 30px;
}
.footer-map iframe {
	border: 0;
	width: 190px;
	height: 100px;
	margin-top: 10px;
}
.post-page-featured-listings #inner-page-wrapper .entry > #breadcrumbs{
    display: none;
}

.postid-317 #content .community-title,
.postid-22812 #content .community-title {
	text-align: center;
}
.postid-317 #content .community-featured-image,
.postid-22812 #content .community-featured-image {
	display: none;
}

.category-sellers-guide .post {
	float: left;
	width: 33.33%;
	padding: 0 10px;
	min-height: 600px;
	border-bottom: none;
}
.category-sellers-guide #content .archive-thumbnail {
	width: 100%;
	float: none;
}
.category-sellers-guide #content .archive-content.archive-has-thumbnail {
	width: 100%;
	float: none;
	display: block;
}
.category-sellers-guide #content .archive-subtitle {
	line-height: 1.1;
	margin: 10px 0 !important;
}
 .category-sellers-guide #content img.wp-post-image {
	max-width: 100%;
}
.grecaptcha-badge {
    z-index: 1000 !important;
}
iframe[name="widgetCta"] {
    right: 76px !important;
}