/*
Theme Name: anateisenberg_new.com
Theme URI: http://aios3-staging.agentimage.com/a/anateisenberg_new.com/htdocs/
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.4.4
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/
/*

TABLE OF CONTENTS

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

*/


/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/
:root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-title: 'Noto Serif', 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;
}

/* Sub Menu */
#nav li{
    position:relative;
    display: inline-block;
}

#nav .sub-menu{
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /*display: none;*/
    padding: 0;
    position: absolute;
    width:100%;
    min-width: 188px;
    left: 50%;
    margin-left: -94px;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
#nav .sub-menu a{
    color: #fff;
    display: block;
    padding: 10px;
    background: #cf540c;
}
#nav .sub-menu a:hover{
    background: #303030;
    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;
}


/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

/* Global */


body{
	font-family: 'Montserrat', Helvetica, Georgia, Sans-serif;
	font-size: 12px;
	background: #FFF;
	color: #000000;
	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;
}

label {
    display: inline;
}

a, a:link, a:visited, a:hover, a:focus, a:active {
    outline: none;
    text-decoration: none;
}

a.bkttop {
    font-size: 26px;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    position: fixed;
    bottom: -50px;
    right: 30px;
    color: #fff;
    z-index: 110;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
    a.bkttop:hover {
        transform: translateY(-5px);
    }

    a.bkttop.showBtn {
        opacity: 1;
        bottom: 30px;
    }

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;
}

div#main-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    opacity: .7;
    pointer-events: none;
}

/*header*/
header.main-header{
    position: fixed;
    left: 0;
    width: 100%;
    padding: 14px 15px;
    z-index: 1001;
    -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{
        max-width: 1140px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

        .hdr-top {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-bottom: 9px;
            margin-top: 17px;
        }

/*fixed header*/
header.main-header.show-fixed {
    background: #fff;
    box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.2);
    padding: 9px 15px;
}

    header.main-header.show-fixed .header-logo a img.fixed-logo{
        opacity: 1;
    }

        header.main-header.show-fixed .header-logo a img.default-logo{
            opacity: 0;
        }

            header.main-header.show-fixed .header-logo a{
                width: 173px;
            }

                header.main-header.show-fixed nav.header-nav ul#nav > li > a,
                header.main-header.show-fixed .hdr-contact span a{
                    color: #333333;
                }

                    header.main-header.show-fixed .header-translate {
                        background: rgb(200 60 0 / 3%);
                        color: #dd621a;
                    }

                        header.main-header.show-fixed .header-translate span.translator-trigger i {
                            background: url(images/translate-arrow-fixed.png) no-repeat;
                            background-size: contain;
                        }

                            header.main-header.show-fixed .cntct-trnslt .placehold {
                                color: #cf540c;
                            }

/*logo*/
.header-logo a {
    display: block;
    position: relative;
    width: 200px;
    -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-logo a img{
        -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-logo a img.fixed-logo{
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }


/*nav*/
nav.header-nav {
    position: relative;
    text-align: right;
}

    nav.header-nav ul#nav{
        font-size: 0;
        position: relative;
        z-index: 5;
    }

        nav.header-nav ul#nav > li{
            margin: 0 15px;
            position: relative;
            display: inline-block;
            vertical-align: top;
        }

            nav.header-nav ul#nav > li > a{
                font-size: 14px;
                text-align: center;
                color: #fff;
                font-weight: 500;
                font-family: var(--font-family-default);
                letter-spacing: 1px;
                padding: 5px;
                display: block;
                position: relative;
                text-transform: uppercase;
                z-index: 5;
                -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.header-nav ul#nav > li:first-child{
                    margin-left: 0 !important;
                }

                    nav.header-nav ul#nav > li:last-child{
                        margin-right: 0;
                    }

                        nav.header-nav ul#nav .sub-menu a{
                            color: #fff;
                            padding: 13px 5px;
                            font-size: 14px;
                            font-weight: 500;
                            font-family: var(--font-family-default);
                            text-transform: uppercase;
                            text-align: center;
                            letter-spacing: 1px;
                            -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.header-nav ul#nav .sub-menu li:hover > a{
                                background: #93b513;
                                color: #fff;
                            }

                                nav.header-nav ul#nav > li > a:hover{
                                    opacity: .7;
                                }

                                    ul#nav > li > .sub-menu::after {
                                        content: '';
                                        position: absolute;
                                        top: 5px;
                                        left: 0;
                                        right: 0;
                                        margin: auto;
                                        width: 0;
                                        height: 0;
                                        border-left: 5px solid transparent;
                                        border-right: 5px solid transparent;
                                        border-bottom: 5px solid #cf540c;
                                    }

                            #nav .sub-menu .sub-menu {
                                width: 200%;
                                display: flex;
                                flex-flow: row wrap;
                                background: #cf540c;
                            }
                            #nav .sub-menu .sub-menu li {
                                width: 50%;
                            }

                            #nav #menu-item-56170 .sub-menu  {
                                width: 600%;
                                display: flex;
                                flex-flow: row wrap;
                                background: #cf540c;
                            }
                            #nav  #menu-item-56170 .sub-menu li {
                                width: 50%;
                            }

                            ul#nav > li#menu-item-56170 > .sub-menu::after {
                                top: -5px !important;
                            }

                            #nav #menu-item-56170 .sub-menu {
                                left: -82px;
                                    top: 28px;
                            }

/*translate*/
.header-translate {
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .9px;
    font-family: var(--font-family-default);
    font-weight: 500;
    position: relative;
    width: 126px;
    text-align: center;
    border: solid 1px #dd621a;
    margin-left: 13px;
    -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;
    z-index: 10;
}

    .header-translate i.translator-flag-active {
        width: 16px;
        height: 16px;
        position: absolute;
        top: 5px;
        right: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% 100%;
        pointer-events: none;
    }

        .header-translate .ai-translator-dropdown ul {
            color: #000;
        }

            .header-translate span.translator-trigger {
                padding: 10px 5px;
                display: block;
            }

                .header-translate span.translator-trigger i {
                    display: inline-block;
                    width: 6px;
                    height: 6px;
                    background: url(images/translate-arrow.png) no-repeat;
                    background-size: contain;
                    vertical-align: unset;
                    margin-left: 8px;
                    -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-translate:hover{
                        background: #dd621a !important;
                        color: #fff !important;
                    }

                        .header-translate:hover span.translator-trigger i{
                            background: url(images/translate-arrow.png) no-repeat !important;
                            background-size: contain !important;
                        }

/*header contact*/
.hdr-contact {
    font-size: 0;
    position: relative;
    display: flex;
    align-items: center;
}

    .hdr-contact span a {
        display: inline-block;
        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;
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        letter-spacing: 1px;
        font-family: var(--font-family-default);
    }

        .hdr-contact span a:hover {
            color: #dd621a;
        }

            .hdr-contact em.ai-font-envelope-f {
                font-size: 10px;
            }

                .hdr-contact a.asis-mailto-obfuscated-email {
                    width: 32px;
                    height: 32px;
                    background: #585858;
                    display: flex !important;
                    align-items: center;
                    justify-content: center;
                    padding: 0;
                    color: #fff !important;
                    border-radius: 100%;
                    text-align: center;
                    margin: 0 14px;
                }

                    .hdr-contact a.asis-mailto-obfuscated-email:hover{
                        background: #dd621a;
                        color: #fff;
                    }

/*translate*/
.cntct-trnslt {
    display: inline-block;
    vertical-align: top;
    margin-left: 24px;
    margin-right: 3px;
    position: relative;
}

.cntct-trnslt .placehold {
    width: 116px;
    height: 30px;
    border: 1px solid #cf540c;
    background: transparent;
    font: 300 12px/30px 'Montserrat', Sans-serif;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    display: block;
    padding-right: 8px;
    cursor: pointer;
}

.cntct-trnslt .trans-drop {
    position: absolute;
    top: 31px;
    right: 0;
    font: 300 12px/30px 'Montserrat', Sans-serif;
    color: #cf540c;
    background: #fff;
    padding: 10px;
    border: 1px solid #cf540c;
    text-transform: uppercase;
    display: none;
    /* width: 175px; */
    width: 100%;
    text-align: left;
    z-index: 9;
}

.cntct-trnslt .trans-drop a {
    color: #cf540c;
    text-decoration: none;
    width: 100%;
    display: block;
    text-transform: capitalize;
}

.cntct-trnslt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 3px 0 3px;
    border-color: #cf540c transparent transparent transparent;
    right: 13px;
    top: 12px;
}

.cntct-trnslt .trans-drop img {
    width: 25px;
    margin-right: 5px;
}

/*slideshow*/
section.slideshow-area {
    overflow: hidden;
}

.slideshow-area,
.slider-holder {
    position: relative;
}

    .slider-holder .cycloneslider-slide::after,
    .slider-holder .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .25;
        z-index: 2;
        pointer-events: none;
    }

        .slider-holder .cycloneslider-template-responsive .cycloneslider-slide{
            background-color: transparent;
        }

            .slider-holder .cycloneslider-template-responsive{
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }

        .slider-tagline{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            z-index: 2;
            padding: 0 15px;
            visibility: hidden;
        }

            .tagline-text{
                font-size: 60px;
                text-align: center;
                text-transform: uppercase;
                color: #fff;
                font-weight: 600;
                font-family: var(--font-family-default);
                pointer-events: auto;
                margin-top: 40px;
                text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
                letter-spacing: 1.2px;
                visibility: hidden;
            }

                .tagline-text span {
                    display: block;
                    font-size: 24px;
                    font-weight: 400;
                    letter-spacing: 2.3px;
                    margin-bottom: 15px;
                }

/*slide cta*/
.slide-cta-area{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

    .slide-cta-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 457px;
        height: 84px;
        background: rgb(0 0 0 / 10%);
        border: solid 1px rgb(255 255 255 / 75%);
        font-size: 18px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        letter-spacing: 1.5px;
        width: 100%;
        margin: 0 15px;
        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;
        visibility: hidden;
    }

        .slide-cta-list {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0 100px !important;
            -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;
            overflow: hidden;
        }

            .slide-cta-list.hide-slide-cta{
                opacity: 0;
                pointer-events: none;
            }

            .slide-cta-list a::after {
                content: '';
                position: absolute;
                bottom: -6px;
                left: 0;
                width: 100%;
                height: 2px;
                background: #fff;
                opacity: .75;
                -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;
            }

                .slide-cta-list a:hover{
                    background: #dd621a;
                    border: solid 1px #dd621a;
                }

                    .slide-cta-list a:hover::after{
                        background: #dd621a;
                        opacity: 1;
                    }

                        .slider-content{
                            position: relative;
                        }

/*quick search*/
.qs-holder {
    font-size: 0;
    position: absolute;
    bottom: 30px;
    left: -25px;
    width: calc(100% + 50px);
    z-index: 5;
    background: #646363;
    padding: 25px 15px 16px;
    opacity: 0;
    pointer-events: none;
    -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;
}

    .qs-holder.active{
        bottom: 46px;
        opacity: 1;
        pointer-events: auto;
    }

    .qs-form{
        position: relative;
        max-width: 1140px;
        margin: 0 auto;
    }

        .qs-holder .qs-form select,
        .qs-holder .qs-form input {
            border-radius: 0;
            color: #fff;
            font-size: 11px;
            font-weight: 500;
            font-family: var(--font-family-default);
            -webkit-appearance: none;
            -moz-appearance: none;
            text-transform: uppercase;
            background: transparent url(images/qs-arrow.png) no-repeat scroll right 10px center;
            width: 100%;
            height: 38px;
            padding: 0 12px;
            border: solid 1px rgba(255,255,255,.4);
            line-height: 1;
            letter-spacing: 1px;
        }

            .qs-holder .qs-form .qs-search-input input{
                background: transparent url(images/qs-search-icon.png) no-repeat scroll left 14px center;
                padding-left: 40px;
            }

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

            .qs-holder .qs-form input{
                background: transparent;
            }

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

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

                    .qs-holder .qs-form .qs-field {
                        display: inline-block;
                        vertical-align: top;
                        margin-right: 5px;
                        margin-bottom: 5px;
                    }

                        .qs-holder .btn-form.qs-field input,
                        .qs-holder .btn-form.qs-field a {
                            background: #cf540c;
                            height: 38px;
                            padding: 0;
                            border: none;
                            text-transform: uppercase;
                            text-align: center;
                            font-size: 13px;
                            font-weight: 700;
                            letter-spacing: 0;
                        }

                            .qs-holder .btn-form.qs-field a{
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                background: #93b513;
                                color: #fff;
                            }

                                .qs-holder .btn-form.qs-field a img{
                                    margin-left: 9px;
                                }

                            .qs-holder .btn-form.qs-field input:hover{
                                background: #df6016;
                            }

                                .qs-holder .btn-form.qs-field a:hover{
                                    background: #a8ce1b;
                                }

                            .qs-holder .btn-form.qs-field {
                                position: relative;
                                vertical-align: bottom;
                                text-align: center;
                                width: 12.63%;
                                margin-right: 0;
                            }

                                .qs-holder .long-form {
                                    width: 34.562%;
                                }

                                    .qs-holder .short-form {
                                        width: 9.386%;
                                    }

                                .qs-holder .btn-form.qs-field.qsbtn1 {
                                    margin-right: 5px;
                                }

                                    .qs-holder .qs-close{
                                        position: absolute;
                                        top: -19px;
                                        right: -19px;
                                        z-index: 6;
                                        width: 36px;
                                        height: 36px;
                                        cursor: pointer;
                                        border: solid 2px #fff;
                                        background: #585858;
                                        color: #fff;
                                        font-size: 14px;
                                        font-weight: 300;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        -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;
                                        border-radius: 100%;
                                    }

                                        .qs-holder .qs-close:hover{
                                            background: #dd621a;
                                        }

/*inquiry form*/
.inquiry-holder {
    position: absolute;
    bottom: -100px;
    right: 0;
    left: 0;
    z-index: 5;
    max-width: 945px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
    background: #222222;
    z-index: 5;
    -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;
    opacity: 0;
    pointer-events: none;
}

    .inquiry-holder.active{
        bottom: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .inquiry-form {
        font-size: 0;
        position: relative;
        margin: 74px auto 21px;
        padding-bottom: 38px;
        max-width: 813px;
    }

        .iq-fields input,
        .iq-fields textarea {
            font-size: 14px;
            width: 100%;
            font-weight: 400;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: transparent;
            height: 45px;
            color: #fff;
            font-family: var(--font-family-default);
            padding: 0 19px;
            border-radius: 0;
            resize: none;
            border: none;
            border-bottom: solid 1px #acacac;
        }

            .iq-fields textarea {
                height: 76px;
                padding-top: 16px;
            }

                .iq-fields.iq-textarea {
                    width: 100%;
                    margin-bottom: 0;
                    position: relative;
                }

                    .iq-fields {
                        position: relative;
                        width: calc(100% / 2);
                        display: inline-block;
                        padding: 0 11px;
                        vertical-align: top;
                        margin-bottom: 22px;
                    }

                        .inquiry-form div.wpcf7 .ajax-loader {
                            display: block;
                            position: absolute;
                            right: 0;
                            left: 0;
                            margin: auto;
                            bottom: -18px;
                        }

                            .inquiry-form span.wpcf7-not-valid-tip {
                                font-size: 11px;
                                position: absolute;
                                width: auto;
                                top: auto;
                                bottom: 0;
                            }

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

                                    .inquiry-form div.wpcf7-response-output {
                                        margin: auto;
                                        position: absolute;
                                        width: calc(100% - 22px);
                                        font-size: 12px;
                                        color: #fff;
                                        text-align: center;
                                        left: 0;
                                        right: 0;
                                        margin-top: 5px;
                                    }

                                        .inquiry-form form {
                                            position: relative;
                                            margin-top: 24px;
                                        }

                                .iq-fields.iq-btn {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    margin: 37px auto 15px;
                                    position: relative;
                                    max-width: 283px;
                                    width: 100%;
                                    padding: 0;
                                }


                            .iq-fields.iq-btn input {
                                font-size: 13px;
                                color: #fff;
                                text-transform: uppercase;
                                font-family: var(--font-family-default);
                                letter-spacing: 1px;
                                font-weight: 500;
                                position: relative;
                                height: 50px;
                                border: solid 1px #acacac;
                                z-index: 5;
                                -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;
                            }

                        .iq-fields.iq-btn input:hover{
                            background: #cf540c;
                            color: #fff;
                            border: solid 1px #cf540c;
                        }

                    .iq-close{
                        font-size: 32px;
                        color: #acacac;
                        -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;
                        cursor: pointer;
                        position: absolute;
                        top: 30px;
                        right: 30px;
                        z-index: 6;
                    }

                .iq-close:hover{
                    color: #cf540c;
                }


/*global title*/
.global-site-title {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-family-default);
    position: relative;
    text-align: center;
    letter-spacing: 1.5px;
    padding-top: 27px;
}

    .global-site-title span{
        display: block;
        font-size: 22px;
        font-weight: 400;
        color: #93b513;
        letter-spacing: 2.2px;
        margin-bottom: 7px;
    }

        .global-site-title::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 43px;
            height: 3px;
            background: #cf540c;
            margin: auto;
        }

/* fixed smi */
.side-contact {
    position: absolute;
    top: 0;
    left: 22px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
}

    .side-smi{
        font-size: 0;
        position: relative;
    }

        .side-smi a {
            display: flex;
            align-items: center;
            justify-content: center;
            border: solid 1px rgb(255 255 255 / 50%);
            width: 40px;
            height: 40px;
            border-radius: 100%;
            font-size: 20px;
            padding: 5px;
            color: #fff;
            background: rgb(88 88 88 / 50%);
            -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;
            margin: 14px 0;
            position: relative;
            pointer-events: auto;
        }

            .side-smi a:hover{
               background: #cf540c;
               border: solid 1px #cf540c;
               color: #fff;
            }

                 span.side-smi-border {
                    width: 1px;
                    height: 65px;
                    background: #fff;
                    display: block;
                    margin: 0 auto;
                }

                    span.scroll-down {
                        font-size: 13px;
                        color: #fff;
                        text-transform: uppercase;
                        display: block;
                        font-weight: 600;
                        transform: rotate(
                    90deg
                    );
                        position: absolute;
                        bottom: -55px;
                        left: -12px;
                        padding: 5px;
                        cursor: pointer;
                        pointer-events: auto;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        span.scroll-down:hover{
                            color: #cf540c;
                        }

.connect-button-wrap {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    visibility: hidden;
}

    .connect-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 207px;
        padding: 22px 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        background: #cf540c;
        transition: all .4s ease-in-out;
        pointer-events: auto;
        letter-spacing: 2px;
    }

        .connect-button a:hover{
            background: #93b513;
        }

            .connect-button {
                transform: rotate(-90deg);
                right: -82px;
                position: relative;
            }

/*site off*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}

    .site-offcanvas .offcanvas-backdrop.active {
        visibility: visible;
    }

        .site-offcanvas .offcanvas-backdrop {
            position: fixed;
            z-index: 1002;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            visibility: hidden;
        }

            .slide-connect-content {
                position: fixed;
                bottom: 0;
                right: -50%;
                width: 100%;
                max-width: 716px;
                height: 100%;
                opacity: 0;
                z-index: 1002;
                visibility: hidden;
                background: #222222;
                -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-connect-content.active {
                    right: 0;
                    opacity: 1;
                    visibility: visible;
                }

                    .slide-connect-inner-content {
                        position: relative;
                        height: 100%;
                        overflow-y: auto;
                        z-index: 2;
                        padding: 0;
                        z-index: 2;
                    }

                        .slide-connect-close{
                            font-size: 32px;
                            color: #acacac;
                            -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;
                            cursor: pointer;
                            position: absolute;
                            top: 50px;
                            right: 45px;
                        }

                    .slide-connect-close:hover{
                        color: #cf540c;
                    }


                        .slide-connect-content-holder {
                            /*max-width: 780px;
                            margin: 0 auto;
                            padding: 0 0 0;*/
                        }

                            .slide-connect-bottom-inner {
                                padding: 0 15px;
                                max-width: 580px;
                                margin: 0 auto;
                            }

                                .slide-connect-content-holder {
                                    position: relative;
                                    padding-bottom: 30px;
                                    padding-top: 134px;
                                }

                                    .connect-form {
                                        font-size: 0;
                                        position: relative;
                                        margin: 0 auto 0;
                                        padding-bottom: 38px;
                                        max-width: 580px;
                                    }

                                        .conn-fields input,
                                        .conn-fields textarea {
                                            font-size: 14px;
                                            width: 100%;
                                            font-weight: 400;
                                            -webkit-appearance: none;
                                            -moz-appearance: none;
                                            background: transparent;
                                            height: 45px;
                                            color: #fff;
                                            font-family: var(--font-family-default);
                                            padding: 0 0;
                                            border-radius: 0;
                                            resize: none;
                                            border: none;
                                            border-bottom: solid 1px #acacac;
                                        }

                                            .conn-check-label,
                                            .conn-fields-check span.wpcf7-list-item-label {
                                                font-size: 14px;
                                                font-weight: 400;
                                                font-family: var(--font-family-default);
                                                color: #fff;
                                                position: relative;
                                            }

                                                .conn-check-label{
                                                    padding: 0 11px;
                                                    width: 50%;
                                                }

                                            .conn-fields textarea {
                                                height: 108px;
                                                padding-top: 16px;
                                            }

                                                .conn-fields.conn-textarea {
                                                    width: 100%;
                                                    margin-bottom: 0;
                                                    position: relative;
                                                }

                                                    .conn-fields {
                                                        position: relative;
                                                        width: calc(100% / 2);
                                                        display: inline-block;
                                                        padding: 0 11px;
                                                        vertical-align: top;
                                                        margin-bottom: 22px;
                                                    }

                                                        .conn-fields.conn-fields-long{
                                                            width: 100%;
                                                        }

                                                        .connect-form div.wpcf7 .ajax-loader {
                                                            display: block;
                                                            position: absolute;
                                                            right: 0;
                                                            left: 0;
                                                            margin: auto;
                                                            bottom: -18px;
                                                        }

                                                            .connect-form span.wpcf7-not-valid-tip {
                                                                font-size: 11px;
                                                            }

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

                                                                    .connect-form div.wpcf7-response-output {
                                                                        margin: auto;
                                                                        position: absolute;
                                                                        width: calc(100% - 22px);
                                                                        font-size: 12px;
                                                                        color: #fff;
                                                                        text-align: center;
                                                                        left: 0;
                                                                        right: 0;
                                                                        margin-top: 5px;
                                                                    }

                                                                        .connect-form form {
                                                                            position: relative;
                                                                            margin-top: 24px;
                                                                        }

                                                                .conn-fields.conn-btn {
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: center;
                                                                    margin: 44px auto 15px;
                                                                    position: relative;
                                                                    max-width: 283px;
                                                                    width: 100%;
                                                                    padding: 0;
                                                                }


                                                            .conn-fields.conn-btn input {
                                                                font-size: 13px;
                                                                color: #fff;
                                                                text-transform: uppercase;
                                                                font-family: var(--font-family-default);
                                                                letter-spacing: 1px;
                                                                font-weight: 500;
                                                                position: relative;
                                                                height: 50px;
                                                                border: solid 1px #acacac;
                                                                z-index: 5;
                                                                -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;
                                                            }

                                                        .conn-fields.conn-btn input:hover{
                                                            background: #cf540c;
                                                            color: #fff;
                                                            border: solid 1px #cf540c;
                                                        }

                                                    .conn-fields-check {
                                                        display: flex;
                                                        align-items: center;
                                                        flex-wrap: wrap;
                                                        margin: 19px 0 23px;
                                                    }

                                                .conn-fields-check span.wpcf7-form-control-wrap.interested {
                                                    padding: 0 11px;
                                                    width: 50%;
                                                }

                                            .conn-fields-check span.wpcf7-list-item-label::after {
                                                content: '( )';
                                                letter-spacing: 2px;
                                                position: absolute;
                                                top: 1px;
                                                left: 0;
                                                width: 17px;
                                                white-space: nowrap;
                                                pointer-events: none;
                                            }

                                            .conn-fields-check span.wpcf7-list-item-label::before {
                                                content: '';
                                                position: absolute;
                                                top: 6px;
                                                left: 6px;
                                                width: 5px;
                                                height: 5px;
                                                border-radius: 100%;
                                                background: #fff;
                                                opacity: 0;
                                            }

                                            .conn-fields-check input {
                                                opacity: 0;
                                                position: absolute;
                                                left: 0;
                                                width: 100%;
                                                z-index: 1;
                                                cursor: pointer;
                                                margin: 0;
                                                height: 100%;
                                            }

                                        .conn-fields-check input:checked ~ span.wpcf7-list-item-label::before{
                                            opacity: 1;
                                        }


                            .conn-fields-check span.wpcf7-list-item {
                                position: relative;
                            }

                        .conn-fields-check span.wpcf7-form-control-wrap.label_first {
                            width: 50%;
                            padding: 0 11px;
                        }

                    .conn-fields-check span.wpcf7-form-control.wpcf7-radio {
                        display: flex;
                        width: 100%;
                        justify-content: space-between;
                        padding-right: 24px;
                    }

                .conn-fields-check span.wpcf7-list-item label span {
                    padding-left: 24px;
                }

/*featured properties*/
section.featured-properties-area {
    position: relative;
    padding: 71px 15px 0;
}

    .fp-holder {
        max-width: 1480px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

        .fp-holder .global-site-title {
            color: #222222;
        }

        .fp-inner {
            text-align: center;
            position: relative;
        }

            .fp-slider{
                position: relative;
                margin: 0 -11px;
            }

            .fp-list {
                padding: 11px 11px 25px;
                max-width: 501px;
                display: inline-block;
            }

                .fp-list a {
                    display: block;
                    position: relative;
                    border: solid 3px #fff;
                    -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-photo {
                        position: relative;
                        -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;
                        z-index: 5;
                    }

                        .fp-list a:hover{
                            border: solid 3px #cf540c;
                        }

                        .fp-list a:hover .fp-photo{
                            transform: scale(1.1);
                        }

                            .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;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                                }

                                    .fp-content {
                                        position: absolute;
                                        bottom: 0;
                                        left: 0;
                                        width: 100%;
                                        z-index: 6;
                                        display: flex;
                                        justify-content: space-between;
                                        text-align: left;
                                        padding: 24px 20px 10px 50px;
                                        flex-wrap: wrap;
                                        background: transparent;
                                        -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{
                                            background: rgb(207 84 12 / 90%);
                                            padding: 24px 20px 24px 50px;
                                        }

                                        .fp-list a:hover .fp-content::after{
                                            background: #fff;
                                        }

                                        .fp-content::after {
                                            content: '';
                                            position: absolute;
                                            top: 0;
                                            left: 30px;
                                            bottom: 0;
                                            margin: auto;
                                            width: 3px;
                                            height: calc(100% - 46px);
                                            background: #cf540c;
                                            -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-price {
                                            font-size: 32px;
                                            font-weight: 600;
                                            color: #fff;
                                            font-family: var(--font-family-default);
                                            letter-spacing: 3.5px;
                                            margin-bottom: 7px;
                                        }

                                            .fp-address {
                                                font-size: 16px;
                                                color: #fff;
                                                font-family: var(--font-family-default);
                                                letter-spacing: .3px;
                                                margin-bottom: 8px;
                                                line-height: 1.4;
                                            }

                                                .fp-specs {
                                                    font-size: 12px;
                                                    color: #fff;
                                                    text-transform: uppercase;
                                                    font-family: var(--font-family-default);
                                                    display: flex;
                                                    -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{
                                                        opacity: 1;
                                                    }

                                                    .fp-specs span {
                                                        display: flex;
                                                        align-items: center;
                                                        margin-right: 20px;
                                                    }

                                                        .fp-btn {
                                                            display: flex;
                                                            align-items: center;
                                                            justify-content: center;
                                                            max-width: 177px;
                                                            width: 100%;
                                                            height: 50px;
                                                            border: solid 1px #fff;
                                                            font-size: 13px;
                                                            text-transform: uppercase;
                                                            color: #cf540c;
                                                            font-weight: 600;
                                                            letter-spacing: 1px;
                                                            font-family: var(--font-family-default);
                                                            -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;
                                                            background: #fff;
                                                            margin-top: 16px;
                                                            opacity: 0;
                                                        }

                                                    .fp-list a:hover .fp-btn{
                                                        opacity: 1;
                                                    }

                                                .fp-dedtails {
                                                    padding: 0 15px 0 0;
                                                    width: 100%;
                                                }

                                        .fp-slick-slider {
                                            position: relative;
                                            margin: 29px 0 0;
                                        }

                                    .fp-slick-slider .slick-slide > div > div{
                                        display: block !important;
                                    }

                                .fp-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                    display:none;
                                }

                            .fp-specs span img {
                                margin-right: 9px;
                            }

                        .fp-list a::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                            z-index: 5;
                        }

                    .fp-list a::before {
                        content: '';
                        position: absolute;
                        bottom: -26px;
                        left: 0;
                        width: 100%;
                        height: 23px;
                        background: url(images/fp-shadow.png) no-repeat;
                        background-size: 100% 100%;
                        background-position: center;
                        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;
                    }

                        .fp-list a:hover::before{
                            opacity: 1;
                        }

                .fp-photo-holder{
                    overflow: hidden;
                }

            .fp-arrow-holder {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                display: flex;
                justify-content: space-between;
                width: 100%;
                pointer-events: none;
                padding: 0 0 0;
                margin: auto;
                height: 86px;
                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;
                z-index: 10;
            }

        .fp-arrow-holder span{
            width: 40px;
            height: 86px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 21px;
            color: #93b513;
            background: #dddddd;
            opacity: 1;
            border: none;
            pointer-events: auto;
            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;
            position: relative;
        }

    .fp-arrow-holder span:hover,
    .fp-arrow-holder span:focus{
        background: #cf540c;
        color: #fff;
    }

        .fp-arrow-holder span.fp-prev {
            left: 4px;
        }

            .fp-arrow-holder span.fp-next {
                left: -3px;
            }

                span.fp-prev::after {
                    content: '';
                    position: absolute;
                    top: -5px;
                    left: 0px;
                    margin: auto;
                    width: 0;
                    height: 0;
                    border-left: 10px solid transparent;
                    border-right: 0px solid transparent;
                    border-bottom: 5px solid #c0c0c0;
                }

                    span.fp-next::after {
                        content: '';
                        position: absolute;
                        top: -5px;
                        right: 0px;
                        margin: auto;
                        width: 0;
                        height: 0;
                        border-left: 0 solid transparent;
                        border-right: 10px solid transparent;
                        border-bottom: 5px solid #c0c0c0;
                    }

/*welcome + performance*/
section.welcome-performance-area {
    position: relative;
    padding: 0 15px 0;
}

    section.welcome-performance-area::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/wcp-bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        z-index: 1;
   /*      filter: grayscale(1);
        opacity: .1; */
    }

        section.welcome-performance-area::before {
            content: '';
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 50%;
            left: 0;
            background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
            z-index: 2;
        }

    .wcp-holder {
        max-width: 1480px;
        margin: 0 auto;
        z-index: 5;
        position: relative;
    }

        .performance-inner .global-site-title {
            text-align: left;
        }

            .performance-inner .global-site-title::after {
                right: auto;
            }

            .performance-area {
                /*background: #000;*/
                padding: 86px 15px 55px;
                border-bottom: solid 5px #93b513;
                position: relative;
            }

                .preformance-bg {
                    position: absolute;
                    top: 0;
                    right: 0;
                    height: 100%;
                    width: 68px;
                }

                .performance-area::after{
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: calc(100% - 68px);
                    height: 100%;
                    background: #000;
					opacity : .8;
                }

                    .preformance-bg span {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: calc((100vw - 1480px) / 2 + 100%);
                        height: calc(100% + 5px);
                        background: #000;
                        border-bottom: solid 5px #93b513;
						    opacity: .8;
                    }

                        .preformance-bg span::after{
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background: url(images/ww-bg.jpg) no-repeat;
                            background-size: cover;
                            background-position: left center;
                            opacity: .55;
                        }

                .performance-inner {
                    max-width: 1240px;
                    margin: 0 auto;
                    position: relative;
                    z-index: 5;
                }

                    .stats-number {
                        font-size: 35px;
                        color: #93b513;
                        font-weight: 600;
                        font-family: var(--font-family-default);
                        margin-bottom: 13px;
                        text-transform: uppercase;
                    }

                        .ww-stats-area {
                            display: flex;
                            justify-content: space-between;
                            flex-wrap: wrap;
                            margin-top: 41px;
                            max-width: 1218px;
                        }

                            .ww-stats-list {
                                /*width: calc(100% / 4 );*/
                                padding: 2px 0 3px;
                                margin-bottom: 30px;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                justify-content: center;
                                position: relative;
                            }

                                .ww-stats-list::after {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    right: -23%;
                                    width: 1px;
                                    height: 100%;
                                    background: #e2e2e2;
                                    opacity: .5;
                                }

                                    .ww-stats-list:last-child::after{
                                        display: none;
                                    }

                                .ww-label {
                                    font-size: 28px;
                                    color: #fff;
                                    font-weight: 400;
                                    font-family: var(--font-family-default);
                                    line-height: 1.25;
                                    text-transform: uppercase;
                                    letter-spacing: .3px;
                                    text-align: center;
                                }

                                    .ww-stats-list:last-child {
                                        border: none;
                                    }

                                        .ww-label span {
                                            display: block;
                                            font-size: 16px;
                                            font-weight: 500;
                                            margin-top: 1px;
                                            color: #cf540c;
                                            letter-spacing: 0;
                                        }

/*welcome*/
.welcome-area {
    position: relative;
}

    .welcome-area::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 35px;
        background: #000;
        z-index: 1;
    }

        .welcome-area::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 35px;
            background: url(images/wc-content-accent.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            filter: grayscale(1);
            opacity: .9;
            z-index: 2;
        }

        .wc-inner {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 5;
			background-color:#fff;
            align-items: flex-end;
        }

            .wc-inner > div {
                position: relative;
                z-index: 5;
            }

                .wc-inner::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: calc(100% - 68px);
                    height: calc(100% - 35px);
                    background: #fff;
                    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%);
                }

                    .wc-photo {
                        width: 44.392%;
                    }

                        .wc-content {
                            width: 55.608%;
                            padding: 82px 15px 60px;
                            background: #fff;
                        }

                            .wc-photo-inner {
                                position: relative;
                                margin-left: -62px;
                                margin-right: -58px;
                                margin-top: -132px;
                                margin-bottom: -61px;
                            }

                                .wc-text {
                                    max-width: 688px;
                                    margin: 0 0 0 auto;
                                }

                                    .wc-text p {
                                        font-size: 15px;
                                        color: #222222;
                                        font-family: var(--font-family-default);
                                        max-width: 643px;
                                        line-height: 2;
                                        padding-bottom: 30px;
                                        letter-spacing: .33px;
                                    }

/*cta*/
section.cta-area {
    position: relative;
    padding: 69px 15px;
    z-index: 5;
}

    .cta-holder {
        max-width: 1332px;
        margin: 0 auto;
    }

        .cta-inner {
            display: flex;
            flex-wrap: wrap;
        }

            .cta-list {
                width: calc(100% / 3);
                padding: 5px;
            }

                .cta-list a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 78px;
                    background: #cf540c;
                    font-size: 18px;
                    font-family: var(--font-family-default);
                    text-transform: uppercase;
                    color: #fff;
                    font-weight: 600;
                    letter-spacing: 1.5px;
                    width: 100%;
                    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;
                }

                    .cta-list a::after {
                        content: '';
                        position: absolute;
                        bottom: -6px;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: #cf540c;
                        -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;
                    }

                        .cta-list a:hover{
                            background: #93b513;
                        }

                            .cta-list a:hover::after{
                                background: #93b513;
                            }

/*testimonials*/
section.testimonials-area {
    background: #181818;
    padding: 53px 15px 74px;
    position: relative;
    max-height: 900px
}

    section.testimonials-area .testi-bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/testi-bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .23;
    }

        section.testimonials-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 230px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
            opacity: .5;
        }

            section.testimonials-area::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 230px;
                background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                opacity: .5;
            }

    .testi-holder .global-site-title img {
        margin: 0 auto 28px;
    }

        .testi-holder .global-site-title::after{
            display: none;
        }

            .testi-list {
                max-width: 696px;
                padding: 22px;
            }

                .testi-photo a {
                    display: block;
                    position: relative;
                    border: solid 2px rgb(255 255 255 / 75%);
                }

                    .testi-photo a canvas {
                        display: block;
                        width: 100%;
                        background: #000;
                        position: relative;
                        z-index: 2;
                        opacity: 0;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        .testi-photo a:hover canvas{
                            opacity: .3;
                        }

                            .testi-photo a img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: center;
                            }

                                .testi-label {
                                    font-size: 16px;
                                    color: #93b513;
                                    text-transform: uppercase;
                                    font-weight: 600;
                                    font-family: var(--font-family-default);
                                    margin-bottom: 5px;
                                    line-height: 1.25;
                                    min-height: 50px;
                                }

                                    .testi-content {
                                        padding: 35px 0 0;
                                    }

                                        .testi-text p {
                                            font-size: 15px;
                                            color: #fff;
                                            font-style: italic;
                                            line-height: 1.5;
                                            font-family: var(--font-family-default);
                                        }

                                            .testi-text p a {
                                                display: inline-block;
                                                color: #93b513;
                                                border-bottom: solid 1px #93b513;
                                                line-height: 1;
                                                -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;
                                            }

                                                .testi-text p a:hover{
                                                    color: #cf540c;
                                                    border-bottom: solid 1px #cf540c;
                                                }

                                                    .testi-text {
                                                        border-bottom: solid 1px rgb(147 181 19 / 50%);
                                                        padding: 0 0 20px;
                                                    }

                                                .testi-author a {
                                                    display: inline-block;
                                                    font-size: 15px;
                                                    color: #cf540c;
                                                    font-weight: 600;
                                                    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;
                                                    letter-spacing: .1px;
                                                }

                                            .testi-author a span{
                                                display: block;
                                                color: #fff;
                                                margin-top: 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;
                                            }

                                            .testi-author a:hover,
                                            .testi-author a:hover span{
                                                color: #93b513;
                                            }

                                        .testi-author {
                                            margin-top: 23px;
                                        }

                                    .testi-holder {
                                        max-width: 1390px;
                                        margin: 0 auto;
                                        position: relative;
                                        z-index: 5;
                                    }

                                .testi-slick-slider .slick-slide > div > div{
                                    display: block !important;
                                }

                            .testi-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                display:none;
                            }

                        .testi-slick-slider {
                            margin-top: 22px;
                            max-height: 569px;
                        }

                    .testi-arrow-holder {
                        display: flex;
                        pointer-events: none;
                        padding: 0 15px;
                        justify-content: center;
                        margin-top: 3px;
                    }

                        .testi-arrow-holder span{
                            display: flex;
                            align-items: center;
                            font-size: 20px;
                            color: #93b513;
                            padding: 5px;
                            border: none;
                            pointer-events: auto;
                            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;
                            position: relative;
                            text-transform: uppercase;
                            font-family: var(--font-family-default);
                            letter-spacing: 1.5px;
                            margin: 0 0;
                        }

                            .testi-arrow-holder span:hover,
                            .testi-arrow-holder span:focus{
                                color: #cf540c;
                            }

                                .testi-arrow-holder > a {
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    height: 50px;
                                    background: transparent;
                                    font-size: 13px;
                                    font-family: var(--font-family-default);
                                    text-transform: uppercase;
                                    color: #fff;
                                    font-weight: 600;
                                    letter-spacing: 1.5px;
                                    width: 100%;
                                    max-width: 283px;
                                    position: relative;
                                    border: solid 1px #fff;
                                    -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;
                                    margin: 0 20px;
                                    pointer-events: auto;
                                }

                                    .testi-arrow-holder > a:hover{
                                        background: #93b513;
                                        border: solid 1px #93b513;
                                    }

/*recently sold*/
section.recently-sold-area {
    position: relative;
    padding: 109px 15px 82px;
}

    section.recently-sold-area::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/rs-bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .07;
        filter: grayscale(1);
    }

        section.recently-sold-area::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
            z-index: 1;
        }

    .rs-holder {
        max-width: 1480px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

        .rs-holder .global-site-title {
            color: #222222;
        }

        .rs-inner {
            text-align: center;
            position: relative;
        }

            .rs-slider{
                position: relative;
                margin: 0 -11px;
            }

            .rs-list {
                padding: 11px 11px 25px;
                /*max-width: 501px;*/
            }

                .rs-list a {
                    display: block;
                    position: relative;
                    border: solid 3px #fff;
                    -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;
                }

                    .rs-photo {
                        position: relative;
                        -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;
                        z-index: 5;
                    }

                        .rs-list a:hover{
                            border: solid 3px #cf540c;
                        }

                        .rs-list a:hover .rs-photo{
                            transform: scale(1.1);
                        }

                            .rs-photo canvas {
                                display: block;
                                width: 100%;
                            }

                                .rs-photo img{
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    object-position: center;
                                }

                                .rs-list a::after {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                                }

                                    .rs-content {
                                        position: absolute;
                                        bottom: 0;
                                        left: 0;
                                        width: 100%;
                                        z-index: 6;
                                        display: flex;
                                        justify-content: space-between;
                                        text-align: left;
                                        padding: 24px 20px 10px 50px;
                                        flex-wrap: wrap;
                                        background: transparent;
                                        -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;
                                    }

                                        .rs-list a:hover .rs-content{
                                            background: rgb(207 84 12 / 90%);
                                            padding: 24px 20px 24px 50px;
                                        }

                                        .rs-list a:hover .rs-content::after{
                                            background: #fff;
                                        }

                                        .rs-content::after {
                                            content: '';
                                            position: absolute;
                                            top: 0;
                                            left: 30px;
                                            bottom: 0;
                                            margin: auto;
                                            width: 3px;
                                            height: calc(100% - 46px);
                                            background: #cf540c;
                                            -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;
                                        }

                                        .rs-slider .rs-price {
                                            font-size: 32px;
                                            font-weight: 600;
                                            color: #fff;
                                            font-family: var(--font-family-default);
                                            letter-spacing: 3.5px;
                                            margin-bottom: 7px;
                                        }

                                            .rs-slider .rs-address {
                                                font-size: 16px;
                                                color: #fff;
                                                font-family: var(--font-family-default);
                                                letter-spacing: .3px;
                                                margin-bottom: 8px;
                                                line-height: 1.4;
                                            }

                                                .rs-slider .rs-specs {
                                                    font-size: 12px;
                                                    color: #fff;
                                                    text-transform: uppercase;
                                                    font-family: var(--font-family-default);
                                                    display: flex;
                                                    -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;
                                                }

                                                    .rs-list a:hover .rs-specs{
                                                        opacity: 1;
                                                    }

                                                    .rs-slider .rs-specs span {
                                                        display: flex;
                                                        align-items: center;
                                                        margin-right: 20px;
                                                    }

                                                        .rs-btn {
                                                            display: flex;
                                                            align-items: center;
                                                            justify-content: center;
                                                            max-width: 177px;
                                                            width: 100%;
                                                            height: 50px;
                                                            border: solid 1px #fff;
                                                            font-size: 13px;
                                                            text-transform: uppercase;
                                                            color: #cf540c;
                                                            font-weight: 600;
                                                            letter-spacing: 1px;
                                                            font-family: var(--font-family-default);
                                                            -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;
                                                            background: #fff;
                                                            margin-top: 16px;
                                                            opacity: 0;
                                                        }

                                                    .rs-list a:hover .rs-btn{
                                                        opacity: 1;
                                                    }

                                                .rs-dedtails {
                                                    padding: 0 15px 0 0;
                                                    width: 100%;
                                                }

                                        .rs-slick-slider {
                                            position: relative;
                                            margin: 29px 0 0;
                                        }

                                    .rs-slick-slider .slick-slide > div > div{
                                        display: block !important;
                                    }

                                .rs-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                    display:none;
                                }

                            .rs-slider .rs-specs span img {
                                margin-right: 9px;
                            }

                        .rs-list a::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                            z-index: 5;
                        }

                    .rs-list a::before {
                        content: '';
                        position: absolute;
                        bottom: -26px;
                        left: 0;
                        width: 100%;
                        height: 23px;
                        background: url(images/fp-shadow.png) no-repeat;
                        background-size: 100% 100%;
                        background-position: center;
                        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;
                    }

                        .rs-list a:hover::before{
                            opacity: 1;
                        }

                .rs-photo-holder{
                    overflow: hidden;
                }

            .rs-arrow-holder {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                display: flex;
                justify-content: space-between;
                width: 100%;
                pointer-events: none;
                padding: 0 0 0;
                margin: auto;
                height: 86px;
                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;
                z-index: 10;
            }

		.side-contact {
    visibility: visible;
}

        .rs-arrow-holder span{
            width: 40px;
            height: 86px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 21px;
            color: #93b513;
            background: #dddddd;
            opacity: 1;
            border: none;
            pointer-events: auto;
            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;
            position: relative;
        }

    .rs-arrow-holder span:hover,
    .rs-arrow-holder span:focus{
        background: #cf540c;
        color: #fff;
    }

    .fc-prev,.fc-next{
    display:none !important;
}



        .rs-arrow-holder span.rs-prev {
            left: 4px;
        }

            .rs-arrow-holder span.rs-next {
                left: -3px;
            }

                span.rs-prev::after {
                    content: '';
                    position: absolute;
                    top: -5px;
                    left: 0px;
                    margin: auto;
                    width: 0;
                    height: 0;
                    border-left: 10px solid transparent;
                    border-right: 0px solid transparent;
                    border-bottom: 5px solid #c0c0c0;
                }

                    span.rs-next::after {
                        content: '';
                        position: absolute;
                        top: -5px;
                        right: 0px;
                        margin: auto;
                        width: 0;
                        height: 0;
                        border-left: 0 solid transparent;
                        border-right: 10px solid transparent;
                        border-bottom: 5px solid #c0c0c0;
                    }

                        .rs-ratus {
                            position: absolute;
                            top: 30px;
                            left: 30px;
                            z-index: 6;
                            background: #cf540c;
                            font-size: 15px;
                            color: #fff;
                            font-weight: 600;
                            text-transform: uppercase;
                            width: 105px;
                            height: 32px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-family: var(--font-family-default);
                        }

/*featured communities*/
section.featured-communities-area {
    background: #f9f9f9;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

    section.featured-communities-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% + 6px);
        height: calc(100% + 5px);
        background: url(images/fc-bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .1;
        filter: grayscale(1) blur(8.5px);
        z-index: 1;
    }

    .fc-holder{
        position: relative;
        z-index: 5;
    }

        .fc-holder .global-site-title {
            color: #222222;
        }

            .fc-list {
                max-width: 195px;
                padding: 0 15px 27px;
            }

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

                    .fc-photo {
                        position: relative;
                    }

                        .fc-photo canvas {
                            display: block;
                            width: 100%;
                            background: #000;
                            opacity: 0;
                            position: relative;
                            z-index: 2;
                            -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;
                        }

                            .fc-list a:hover .fc-photo canvas{
                                opacity: .3;
                            }

                                .fc-photo img {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    object-position: center;
                                }

                                    .fc-label {
                                        text-align: center;
                                        font-size: 16px;
                                        font-weight: 500;
                                        text-transform: uppercase;
                                        color: #222222;
                                        min-height: 35px;
                                        font-family: var(--font-family-default);
                                        margin-top: 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;
                                    }

                                        .fc-list a:hover .fc-label{
                                            color: #93b513;
                                        }

                                            .fc-slick-slider .slick-slide > div > div{
                                                display: block !important;
                                            }

                                        .fc-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                            /* display:none; */
                                        }

                                        .fc-slick-slider > div {
                                            display: inline-block;
                                            width: 189px;
                                            vertical-align: top;
                                        }

                                    .fc-slick-slider {
                                        margin: 43px -15px 0;
                                    }

/*social media*/
section.social-media-area {
    background: #fff;
    position: relative;
    padding: 109px 15px 106px;
}
.fc-slick-slider2{
    display:none;
}

.fc-slick-slider{
    display:block;
}




    section.social-media-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/sm-bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .2;
        filter: grayscale(1);
        z-index: 1;
    }

        section.social-media-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 90%;
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
            z-index: 2;
        }

            .sm-holder {
                position: relative;
                z-index: 5;
                max-width: 1348px;
                margin: 0 auto;
            }

                .sm-holder .global-site-title {
                    color: #222222;
                }

                    .sm-text {
                        font-size: 14px;
                        color: #5f5f5f;
                        text-align: center;
                        max-width: 750px;
                        margin: 0 auto;
                        line-height: 1.9;
                        letter-spacing: .1px;
                        margin-top: 36px;
                        font-family: var(--font-family-default);
                    }

                        .sm-inner {
                            display: flex;
                            flex-wrap: wrap;
                            margin-top: 44px;
                        }

                            .sm-inner > div {
                                width: 50%;
                            }

/*fb feed*/
.sm-fb-label {
    font-size: 16px;
    color: #222222;
    font-weight: 600;
    font-family: var(--font-family-default);
    line-height: 1.4;
    letter-spacing: .4px;
    display: flex;
}

    .sm-fb-label em {
        font-size: 43px;
        margin-top: 0px;
        margin-right: 22px;
    }

        .sm-fb-link a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 51px;
            background: #2a3890;
            font-size: 13px;
            font-family: var(--font-family-default);
            text-transform: uppercase;
            color: #fff;
            font-weight: 600;
            letter-spacing: 1.5px;
            width: 100%;
            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;
        }

            .sm-fb-link a em{
                font-size: 18px;
                margin-right: 18px;
            }

                .sm-fb-link a::after {
                    content: '';
                    position: absolute;
                    bottom: -4px;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: #2a3890;
                    -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;
                }

                    .sm-fb-link a:hover{
                        background: #93b513;
                    }

                        .sm-fb-link a:hover::after{
                            background: #93b513;
                        }

                            .sm-fb-link {
                                width: 145px;
                            }

                                .sm-fb-head {
                                    display: flex;
                                    justify-content: space-between;
                                    padding-top: 6px;
                                    margin-bottom: 42px;
                                }


.page_cube {
    margin: 0 0 0 0 !important;
}

.sub-links-box{
	    top: 112px !important;
}

                                    .sm-fb-feed-content {
                                        /* max-width: 593px; */
                                    }

                                        .sm-facebook-feed {
                                            padding-right: 15px;
                                        }

                                            .sm-fb-list-head {
                                                display: flex;
                                            }

                                                .sm-fb-list-author {
                                                    width: 70px;
                                                    height: 70px;
                                                    margin-right: 20px;
                                                }

                                                    .sm-fb-list-author a {
                                                        display: block;
                                                        position: relative;
                                                        border: solid 2px #93b513;
                                                        border-radius: 100%;
                                                        overflow: hidden;
                                                        padding: 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;
                                                    }

                                                        .sm-fb-list-author a:hover{
                                                            background: #93b513;
                                                        }

                                                        .sm-fb-list-label a {
                                                            font-size: 16px;
                                                            color: #222222;
                                                            font-weight: 600;
                                                            font-family: var(--font-family-default);
                                                            line-height: 1.4;
                                                            letter-spacing: .4px;
                                                            display: flex;
                                                            flex-direction: column;
                                                            -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;
                                                        }

                                                            .sm-fb-list-label a:hover{
                                                                color: #93b513;
                                                            }

                                                        .sm-fb-list-label a span{
                                                            font-size: 11px;
                                                            color: #8f8f8f;
                                                            font-weight: 400;
                                                        }

                                                    .sm-fb-list-label {
                                                        padding-top: 4px;
                                                    }

                                                .sm-fb-feed-list-holder {
                                                    background: #fff;
                                                /*     border: solid 1px rgb(207 84 12 / 25%);
                                                    padding: 28px 15px 0; */
                                                }

                                            .sm-fb-list {
                                                max-width: 530px;
                                                margin: 0 auto 30px;
                                                min-height: 402px;
                                            }

                                        .sm-fb-list-text {
                                            font-size: 13px;
                                            color: #5f5f5f;
                                            line-height: 1.7;
                                            letter-spacing: .25px;
                                            margin-top: 19px;
                                            font-family: var(--font-family-default);
                                            margin-bottom: 22px;
                                        }

                                    .sm-fb-list-photo a {
                                        display: block;
                                        position: relative;
                                    }

                                .sm-fb-list-photo a canvas {
                                    display: block;
                                    width: 100%;
                                    background: #000;
                                    position: relative;
                                    z-index: 2;
                                    opacity: 0;
                                    -webkit-transition: all 0.3s ease-in-out;
                                    -moz-transition: all 0.3s ease-in-out;
                                    -o-transition: all 0.3s ease-in-out;
                                    transition: all 0.3s ease-in-out;
                                }

                            .sm-fb-list-photo a:hover canvas{
                                opacity: .3;
                            }

                        .sm-fb-list-photo a img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            object-position: center;
                        }

/*fb feed*/
.sm-ins-label {
    font-size: 16px;
    color: #222222;
    font-weight: 600;
    font-family: var(--font-family-default);
    line-height: 1.4;
    letter-spacing: .4px;
    display: flex;
}

    .sm-ins-label em {
        font-size: 43px;
        margin-top: 0px;
        margin-right: 22px;
    }

        .sm-ins-link a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 51px;
            background: #cf540c;
            font-size: 13px;
            font-family: var(--font-family-default);
            text-transform: uppercase;
            color: #fff;
            font-weight: 600;
            letter-spacing: 1.5px;
            width: 100%;
            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;
        }

            .sm-ins-link a em{
                font-size: 18px;
                margin-right: 18px;
            }

                .sm-ins-link a::after {
                    content: '';
                    position: absolute;
                    bottom: -4px;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: #cf540c;
                    -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;
                }

                    .sm-ins-link a:hover{
                        background: #93b513;
                    }

                        .sm-ins-link a:hover::after{
                            background: #93b513;
                        }

                            .sm-ins-link {
                                width: 235px;
                            }

                                .sm-ins-head {
                                    display: flex;
                                    justify-content: space-between;
                                    padding-top: 6px;
                                    margin-bottom: 42px;
                                }

                                    .sm-ins-feed-content {
                                        max-width: 658px;
                                        margin: 0 0 0 auto;
                                    }

                                        .sm-instagram-feed {
                                            padding-left: 15px;
                                        }

                                            .sm-ins-counter {
                                                font-size: 12px;
                                                color: #8f8f8f;
                                                font-weight: 300;
                                                margin-top: 3px;
                                            }

                                                .sm-ins-counter span {
                                                    margin-right: 9px;
                                                }

                                                    .sm-ins-list-holder {
                                                        display: flex;
                                                        flex-wrap: wrap;
                                                        position: relative;
                                                        margin: 0 -17px;
                                                    }

                                                        .sm-ins-list {
                                                            width: calc(100% / 3);
                                                            padding: 17px;
                                                        }

                                                    .sm-ins-list a {
                                                        display: block;
                                                        position: relative;
                                                    }

                                                .sm-ins-list a canvas {
                                                    display: block;
                                                    width: 100%;
                                                    background: #000;
                                                    opacity: .1;
                                                    position: relative;
                                                    z-index: 2;
                                                    -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;
                                                }

                                            .sm-ins-list a img{
                                                position: absolute;
                                                top: 0;
                                                left: 0;
                                                width: 100%;
                                                height: 100%;
                                                object-fit: cover;
                                                object-position: center;
                                            }

                                        .sm-ins-list a:hover canvas{
                                            opacity: .3;
                                        }

                                    .sm-ins-list a em {
                                        position: absolute;
                                        bottom: 8px;
                                        right: 11px;
                                        font-size: 25px;
                                        color: #fff;
                                        text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);
                                        z-index: 2;
                                    }

/*newsletter*/
section.newsletter-form-area{
    background: #121212;
    padding: 29px 0;
}

    .newsletter-holder {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        .nl-title{
            font-size: 30px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 600;
            font-family: var(--font-family-default);
            letter-spacing: 4.4px;
            width: 50%;
            padding-right: 15px;
        }

            .nl-form {
                width: 50%;
                padding-left: 15px;
            }

        .nl-form input {
            font-size: 13px;
            width: 100%;
            font-weight: 400;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: transparent;
            height: 50px;
            text-transform: uppercase;
            color: #fff;
            font-family: var(--font-family-default);
            padding: 0 19px;
            border-radius: 0;
            resize: none;
            border: solid 1px rgb(255 255 255 / 36%);
            letter-spacing: .7px;
        }

            .nl-fields {
                position: relative;
                padding: 0 0;
                display: block;
            }

                .nl-form div.wpcf7 .ajax-loader {
                    display: block;
                    position: absolute;
                    right: 0;
                    left: 0;
                    margin: auto;
                }

                    .nl-form span.wpcf7-not-valid-tip {
                        font-size: 11px;
                        position: absolute;
                        top: auto;
                        bottom: 0;
                        width: auto;
                    }

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

                            .nl-form div.wpcf7-response-output {
                                margin: auto;
                                position: absolute;
                                width: 100%;
                                font-size: 12px;
                                color: #fff;
                                text-align: center;
                                left: 0;
                                right: 0;
                                /* margin-top: 0 !important; */
                                margin: 3px 0 0 !important;
                            }

                                .nl-form form {
                                    position: relative;
                                }

                            .nl-fields input.wpcf7-form-control.wpcf7-submit {
                                font-size: 0;
                                border: none;
                                padding: 0;
                                width: 100%;
                                height: 100%;
                                background: url(images/nl-btn-icon.png) no-repeat;
                                background-position: center;
                                -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;
                            }

                        .nl-btn {
                            width: 24px;
                            height: 24px;
                            position: absolute;
                            bottom: 12px;
                            right: 20px;
                        }

                    .nl-fields input.wpcf7-form-control.wpcf7-submit:hover{
                        opacity: .7;
                    }

/*footer*/
footer.main-footer{
    position: relative;
}

    .ftr-top {
        background: #010c05;
        position: relative;
        padding: 77px 0 54px;
    }

        .ftr-top::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/ftr-bg.jpg) no-repeat;
            background-position: center;
            background-size: cover;
            opacity: .05;
            filter: grayscale(1);
            z-index: 1;
        }

        .ftr-logo-holder {
            max-width: 242px;
        }

            .ftr-logo-holder span {
                display: block;
                margin-bottom: 22px;
            }

                .ftr-top > .container{
                    position: relative;
                    z-index: 5;
                }

                    .ftr-contact-right{
                        max-width: 292px;
                        margin: 0 0 0 auto;
                    }

.sw-form {

}

.page_cube.idxfeatured {
    margin: 0 !important;
}

    .sw-form input{
        font-size: 11px;
        width: 100%;
        font-weight: 400;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff;
        height: 26px;
        color: #969696;
        font-family: var(--font-family-default);
        padding: 0 10px;
        border-radius: 0;
        resize: none;
        border: none;
        letter-spacing: .7px;
    }

        .sw-fields {
            position: relative;
            padding: 0 0;
            display: inline-block;
            vertical-align: top;
            width: calc(100% - 62px);
        }

            .sw-form div.wpcf7 .ajax-loader {
                display: block;
                position: absolute;
                right: 0;
                left: 0;
                margin: auto;
            }

                .sw-form span.wpcf7-not-valid-tip {
                    font-size: 11px;
                    margin: 0 !important;
                    position: absolute;
                    top: auto;
                    bottom: 0;
                    width: auto;
                }

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

                .sw-form div.wpcf7-response-output {
                    margin: auto;
                    position: absolute;
                    width: 100%;
                    font-size: 9px;
                    color: #fff;
                    text-align: center;
                    left: 0;
                    right: 0;
                    margin-top: -18px !important;
                }

            .sw-form form {
                position: relative;
            }

        .sw-fields input.wpcf7-form-control.wpcf7-submit {
            font-size: 13px;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            padding: 0;
            width: 100%;
            height: 100%;
            background: #cf540c;
            -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;
        }

    .sw-btn {
        width: 51px;
        height: 26px;
        margin-left: 7px;
    }

        .sw-fields input.wpcf7-form-control.wpcf7-submit:hover{
            background: #93b513;
        }

            .sw-form {
                margin-top: 25px;
            }

.ftr-title {
    font-size: 15px;
    color: #93b513;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-family: var(--font-family-default);
    padding-top: 16px;
    margin-bottom: 6px;
}

    .ftr-title::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 22px;
        height: 2px;
        background: #9a3203;
    }

    .ftr-contact {
        font-size: 0;
        position: relative;
    }

        .ftr-contact span a {
            display: inline-block;
            padding: 5px 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;
            font-size: 15px;
            color: #fff !important;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: var(--font-family-default);
        }

            .ftr-contact span a:hover {
                color: #93b513 !important;
            }

                .ftr-contact span{
                    display: block;
                    margin-bottom: 5px;
                }

                    .ftr-contact-holder.ftr-phone {
                        padding-bottom: 70px;
                        margin-top: 33px;
                    }

                        .ftr-contact-holder.ftr-email {
                            padding-bottom: 39px;
                            margin-top: 33px;
                        }

                            .ftr-contact-holder.ftr-website {
                                padding-bottom: 29px;
                            }

                                .ftr-smi {
                                    display: flex;
                                    margin-top: 12px;
                                }

                                    .ftr-smi a {
                                        width: 28px;
                                        height: 28px;
                                        border: solid 1px rgb(255 255 255 / 35%);
                                        border-radius: 100%;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        font-size: 15px;
                                        color: #fff;
                                        -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;
                                        margin-right: 6px;
                                    }

                                        .ftr-smi a:hover{
                                            border: solid 1px #93b513;
                                            background: #93b513;
                                        }

.ftr-bottom {
    background: #93b513;
    padding: 26px 0 48px;
}

    .footer-copyright {
        text-align: center;
        margin-bottom: 15px;
    }

        .footer-copyright,
        .footer-copyright a{
            font-size: 11px;
            color: #000;
            line-height: 1.9;
            letter-spacing: .4px;
            font-family: var(--font-family-default);
            -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: #9a3203;
            }

                .footer-copyright a[href="https://www.agentimage.com"]{
                    text-decoration: underline !important;
                    color: #000;
                }

                    .footer-copyright a[href="https://www.agentimage.com"]:hover{
                        color: #9a3203;
                    }

                    .mls {
                        font-size: 22px;
                        color: #000;
                        text-align: center;
                    }

                        .mls em {
                            margin: 0 2px;
                        }

/*footer nav*/
.ftr-nav {

}

    ul.footernav {
        font-size: 0;
        margin-top: 23px;
        text-align: center;
    }

        ul.footernav > li > a {
            display: inline-block;
            padding: 5px;
            color: #000;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .7px;
            text-transform: uppercase;
            font-family: var(--font-family-default);
            -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.footernav li a:hover{
                color: #9a3203;
            }

                ul.footernav > li {
                    margin: 0 19px 2px;
                    display: inline-block;
                    vertical-align: top;
                    position: relative;
                }

                    ul.footernav > li::after {
                        content: '';
                        position: absolute;
                        top: 7px;
                        right: -18px;
                        width: 1px;
                        height: 8px;
                        background: #000;
                    }

                        ul.footernav > li:last-child::after{
                            display: none;
                        }


/*section 1*/
.admin-bar .hp-section-1 {
    padding-top: 113px;
}
.hp-section-1 {
    padding-top: 145px;
    position: relative;
}
    .hp-slideshow {
        overflow: hidden;
        height: auto!important;
        font-size: 0;
    }

    .hp-qs {
        text-align: center;
        /*background: #93b513 url(images/bg-qs.png) center no-repeat;*/
        background: rgba(147, 181, 19, .5);
        width: 100%;
        bottom: 0;
        left: 0;
        position: absolute;
        z-index: 1;
    }
        .hp-qs h2,
        .hp-qs h1 {
            font: 400 2em/1 'Montserrat', Sans-serif;
            /*letter-spacing: -.04em;*/
            color: #fff;
            /*text-transform: uppercase;*/
            overflow: hidden;
            padding: 0 0 4px;
            /* margin: 22px 0 0; */
            margin: 6px 0 0;
        }
            .hp-qs h2 span,
            .hp-qs h1 span {
                display: inline-block;
				font: 400 22px/20px 'Montserrat', Sans-serif;
				position: relative;
				margin-top: 1px;
            }
                .hp-qs h2 span:before, .hp-qs h2 span:after,
                .hp-qs h1 span:before, .hp-qs h1 span:after {
                    content: '';
                    position: absolute;
                    height: 1px;
                    width: 293px;
                    background: #fff;
                    top: 47%;
                    opacity: .1;
                }
                .hp-qs h2 span:before,
                .hp-qs h1 span:before {
                    left: -347px;
                }
                .hp-qs h2 span:after,
                .hp-qs h1 span:after {
                    right: -347px;
                }

        .qs-wrap {
            font-size: 0;
            padding: 16px 0 23px;
        }

            .qs-field, .qs-btn {
                display: inline-block;
                vertical-align: top;
            }
                .qs-field .qs-arrow {
                    display: block;
                    position: relative;
                }
                    .qs-field .qs-arrow:before {
                        content: '';
                        position: absolute;
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 4px 4px 0 4px;
                        border-color: #ffffff transparent transparent transparent;
                        right: 10px;
                        top: 17px;
                    }

                         .page-template-template-left-sidebar-sellers .qs-field .qs-arrow:before,  .page-template-template-left-sidebar-buyers .qs-field .qs-arrow:before {
                            top: 13px;
                         }

                .qs-field select {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    padding-left: 10px;
                }
                .qs-field select::-ms-expand {
                    display: none;
                }
                .qs-field select, .qs-field input[type="text"] {
                    width: 100%;
                    height: 38px;
                    border: 1px solid rgba(255,255,255,.2);
                    background: transparent;
                    font: 400 11px/1 'Montserrat', Sans-serif;
                    text-transform: uppercase;
                    color: #fff;
                }

                    .page-template-template-left-sidebar-sellers .qs-field select,
                    .page-template-template-left-sidebar-buyers .qs-field select,
                    .page-template-template-left-sidebar-sellers .qs-field input[type="text"],
                    .page-template-template-left-sidebar-sellers .qs-field input[type="text"] {
                        height: 30px;
                    }

                    .page-template-template-left-sidebar-sellers .ip-quick-search .bootstrap-select.btn-group .dropdown-toggle {
                        height: 30px;
                    }

				.qs-field select option{
					color:#000;
				}
                .qs-field input[type="text"] {
                    padding-left: 40px;
                    background: transparent url(images/icon-qs.png) 14px 10px no-repeat;
                }
            .qs-lg {
                /*width: 401px;*/
                width: 35.176%;
                padding-right: 7px;
            }
            .qs-sm {
                /*width: 112px;*/
                width: 9.825%;
                padding-right: 5px;
            }
            .qs-btn {
                /*width: 145.5px;*/
                width: 12.762%;
            }
                .qs-btn input[type="submit"], .qs-btn a.qs-advanced {
                    width: 100%;
                    height: 38px;
                    font: 700 12px/1 'Montserrat', Sans-serif;
                    text-transform: uppercase;
                    display: block;
                    color: #fff;
                }

                    .page-template-template-left-sidebar-sellers .qs-btn input[type="submit"],
                    .page-template-template-left-sidebar-buyers .qs-btn input[type="submit"] {
                        height: 30px;
                    }
                .qs-btn input[type="submit"] {
                    background: #cf540c;
                    border: 1px solid #cf540c;
                    transition: all .3s ease;
                }
                    .qs-btn input[type="submit"]:hover {
                        border: 1px solid #191919;
                        background: #191919;
                    }
                .qs-btn a.qs-advanced {
                    border: 1px solid #191919;
                    line-height: 38px;
                    padding-right: 18px;
                    background: #191919 url(images/icon-arrow-down.png) 91.5% 49% no-repeat;
                    transition: all .3s ease;
                }
                    .qs-btn a.qs-advanced:hover {
                        background-color: #cf540c;
                        border: 1px solid #cf540c;
                    }
            .qs-btn-1 {
                padding-right: 3.5px;
            }
            .qs-btn-2 {
                padding-left: 3.5px;
            }

.ip_sold {
    width: 295px;
}

    .sidebar .ip_sold {
        width: 262px;
		 margin: 12px 0 0 0;
    }


		a#IDX-saveSearch {
    margin: -16px 0 0 0;
}

span.IDX-searchSaved {
    margin: 0 0 0 68px;
}


				.idxpaginate {
    				width: 100%;
    				display: inline-block;
    			}
.idxpaginate ul li {
    border: none !important;
}

form.IDX-perPageForm {
    margin: 13px 0 0 0;
    color: #93B513 !important;
}

/*
.thiscontent .entry-content {
    display: none;
}

.page-id-103 .thiscontent .entry-content {
    display: block;
}
*/

a.view-det.forsolds {
    width: 100%;
    display: block;
    background: #A3A3A3;
    height: 31px;
    line-height: 31px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 15px 0 35px;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 0 0 10px;
    text-align: center;
}




/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/

/* Adjust minimum height of page area */
#content-sidebar, #content-full{
    /*min-height: 500px;*/
    /*min-height: 1716px;*/
    margin-top: 17px;
}
.page-id-78 #content-sidebar, .page-id-78 #content-full {
    min-height: auto;
}


/* Center Responsive cycloneslider */
.parent-pageid-101 #content .cycloneslider-template-responsive,
.parent-pageid-102 #content .cycloneslider-template-responsive,
.page-id-102 #content .cycloneslider-template-responsive{
    margin: 0 auto;
    max-width: 480px;
}

.parent-pageid-101 #content .cycloneslider-template-responsive a.cycloneslider-prev,
.parent-pageid-101 #content .cycloneslider-template-responsive a.cycloneslider-next,
.parent-pageid-102 #content .cycloneslider-template-responsive a.cycloneslider-prev,
.parent-pageid-102 #content .cycloneslider-template-responsive a.cycloneslider-next {
    top: calc(50% - 8px);
}

/** Adjust width of content columns **/
#content-sidebar #content{
    /*width: 77.08%;*/
    /*width: 71.492%;*/
    width: 71.9%;
}
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{
    /*width: 20.83%;*/
    width: 22.983%;
    padding-top: 20px;
}

#recommend-buttons {
    text-align: center;
}
#recommend-buttons a img {
    width: 100%;
    max-width: 202px;
}

ul.lists li {
    width: 200px;
    display: inline-block;
    vertical-align: top;
    height: 36px;
    margin: 0px 5px 0 0;
    text-align: left;
    padding: 6px 0 0 0;
    font-size: 13px;
}

#ihf-main-container li.list2 button {
    background: none !important;
    color: #93B513 !important;
    border: none !important;
    float: none !important;
    margin: 0 auto;
    width: 100%;
}

    .category.category-blog .sidebar, .post-under-blog-category .ip_qs {
        padding-top: 0;
    }

    .page-template-template-left-sidebar-buyers .sidebar, .page-template-template-left-sidebar-sellers .sidebar {
        max-width: 262px;
    }

    .sidebar #categories-2,
	.sidebar #archives-2 {
        /* display: none; */
    }

	.single-post .sidebar #categories-2,
	.single-post .sidebar #archives-2 {
        display: block;
    }

        .category.category-blog .sidebar #categories-2, .category.category-blog #archives-2 {
            display: block;
        }

		span.carousel-control {
    background: none !important;
}

        .category.category-blog .ip_qs, .post-under-blog-category .ip_qs {
            margin: 0;
        }

        .sidebar #categories-2 h2.widget-title, .sidebar #archives-2 h2.widget-title, .sidebar #categories-3 h2.widget-title, .sidebar #archives-3 h2.widget-title{
            background: #93b513;
            color: #fff;
            text-align: center;
        }

        .sidebar #categories-2 a, .sidebar #archives-2 a, .sidebar #categories-3 a, .sidebar #archives-3 a {
            color: #93b513;
        }

		.logo_txt {
    text-transform: uppercase;
    font-size: 11px;
    color: #000;
    font-weight: bold;
	    margin: -9px 0 0 0;
}

/* 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 post/page main headings (h1) */
#content .entry-title, .entry-title.new-entry-title {
    font: 700 35px/1 'Montserrat', Sans-serif;
    letter-spacing: .02em;
    color: #cf540c;
    margin: 15px 0 20px;
}

/* Style category/archive/etc main headings (h1) */
#content .archive-title {
    font: 700 35px/1 'Montserrat', Sans-serif;
    letter-spacing: .02em;
    color: #cf540c;
    margin: 15px 0 20px;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font: 500 24px/1 'Montserrat', Sans-serif;
    letter-spacing: .02em;
    color: #cf540c;
}

#content .entry-title, #content .archive-title {
    display: none;
}

#inner-page-wrapper {
    /*padding-top: 192px;*/
    padding-top: 23px;
}

p#breadcrumbs {
    display: none;
}

p#breadcrumbs, p.breadcrumbs {
    margin-top: 0;
    font: 600 10px 'Montserrat', Sans-serif;
    color: #93b513;
    letter-spacing: .06em;
}
    p#breadcrumbs a, p.breadcrumbs a {
        color: #646363;
    }
    p#breadcrumbs span.breadcrumb_last, p.breadcrumbs span.breadcrumb_last {
        text-decoration: underline;
        color: #93b513;
    }

#content .entry, #content .entry p {
    /*font: 400 15px/21.7px 'Montserrat', Sans-serif;*/
    font: 400 14px/23.8px 'Montserrat', Sans-serif;
    /*letter-spacing: .06em;*/
    color: #000;
    text-align: justify;
}

    #content .entry p.no-justify {
        text-align: left;
    }

.error404 .ip-banner {
    display: none;
}

/*.ip-banner {
    width: 100%;
    height: 306px;
    background: url(images/ip-banner-2.jpg) center/cover no-repeat;
}*/

body.archive .ip-banner{
	display: none;
}

.custom-title-wrapper{
	width: 100%;
    /* max-width: 820px; */
    max-width: 1047px;
}
.custom-title-wrapper h1{}
.custom-title-wrapper span{}

    .page-template-template-left-sidebar .ip-banner {
        background: url(images/ip-banner-1.jpg) center/cover no-repeat;
    }

    .page-id-9476 .ip-banner, .page-id-9474 .ip-banner, .page-id-9478 .ip-banner, .page-id-9480 .ip-banner,
    .page-id-9894 .ip-banner, .page-id-9921 .ip-banner, .page-id-9923 .ip-banner {
        display: none;
    }

    .parent-pageid-9480 .ip-banner, .parent-pageid-9476 .ip-banner, .parent-pageid-9478 .ip-banner, .parent-pageid-9474 .ip-banner {
        display: none;
    }

img.ip-video-placeholder {
    width: 100%;
    margin: 0 0 36px;
}

.page-template-template-left-sidebar-buyers #content-sidebar aside  {
	float:left !important;
}

.page-template-template-left-sidebar-sellers #content-sidebar aside  {
	float:left !important;
}

.page-template-template-left-sidebar-buyers #content-sidebar #content, .page-template-template-left-sidebar-sellers #content-sidebar #content{
    float: right;
}

.page-template-template-left-sidebar-buyers .buyers-ip {
    display: block;
}

.page-template-template-left-sidebar-sellers .sellers-ip {
	display: block;
}

.ip_cta_list {
    display: none;
}
    .ip_cta_list a.ip_cta {
        display: block;
        width: 100%;
        font: 400 15px/36px 'Montserrat', Sans-serif;
        color: #93b513;
        text-transform: capitalize;
        border-top: 1px solid rgba(147,181,19,.66);
        padding: 20px 5px;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

.impress-showcase-property span.impress-price,.impress-street,.impress-state,.impress-cityname,p.impress-address {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width: 61%;
    padding-right: 3%;
    font-size: 15px !important;
    color: #92b513;
    font-weight: normal;
}

.impress-row img {
    height: 278px;
}

p.impress-beds-baths-sqft span{
	color:#A3A3A3;
}

.impress-showcase-property .impress-beds-baths-sqft span {
    margin: 0 32px 0 !important;
    font-size: 12px;
    position: relative;
}

#tabs-3 .IDX-panel-collapse {
    height: auto !important;
}

p.impress-address {
    width: 195px;
}

span.impress-beds:before {
    background: url(images/listings-icon-bed.png)no-repeat;
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    left: -29px;
}

span.impress-baths:before {
    background: url(images/listings-icon-bath.png)no-repeat;
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    left: -22px;
}

p.impress-beds-baths-sqft br {
    display: none;
}

.impress-showcase-property span.impress-price {

    width: 100%;
	text-align:right;

}

p.impress-address br {
    display: none;
}



span.impress-cityname {
    width: auto;
    display: inline;
    padding: 0;
    margin: 0 0 0 0;
}

span.impress-state {
    margin: 0 0 0 6px;
}

.totalcount {
    display: block;
    color: #93B513 !important;
}

.impress-showcase-property br {
    display: none;
}

.impress-showcase-property .impress-address {
        margin: -20px 0 0 0;
    width: 100%;
}

.page-id-171 .impress-beds-baths-sqft{
	/* display:none; */
}

p.impress-beds-baths-sqft {
    margin: 0 0 40px 0;
}


    .ip_cta_list a.ip_cta.ip_cta_double {
        padding: 13px 0;
    }

    .ip_cta_list a.ip_cta:last-child {
        border-bottom: 1px solid rgba(147,181,19,.66);
    }

    .ip_cta_list a.ip_cta:hover {
        background: #93b513;
        color: #fff;
    }


	.IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-collapse, .IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-form {
    /* background: #8bc650; */
    background: #93b513;
}

.IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-nav>.IDX-active>a, .IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-nav>.IDX-active>a:focus, .IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-nav>.IDX-active>a:hover {
    color: #fff;
    background-color: #9abd16;
}


.IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-nav>li>a:focus, .IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-nav>li>a:hover{
	background-color: #7dbd3c;
}

.IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-collapse, .IDX-wrapper-standard .IDX-navbar-default .IDX-navbar-form {
    border-color: #325697;
}

div#IDX-detailsMap #IDX-map {
    width: 1108px !important;
}
.IDX-wrapper-standard .IDX-btn-primary{
    background: #93b513;
    border-color: #93b513;
}

.IDX-wrapper-standard .IDX-navbar-default{

	    background-color: #93b513;
    border-color: #93b513;
}

#IDX-leadToolsBar {
    color: #fff;
    background-color: #93b513;
}

.IDX-open>.IDX-wrapper-standard .IDX-btn-primary.IDX-dropdown-toggle, .IDX-wrapper-standard .IDX-btn-primary.IDX-active, .IDX-wrapper-standard .IDX-btn-primary:active, .IDX-wrapper-standard .IDX-btn-primary:focus, .IDX-wrapper-standard .IDX-btn-primary:hover{
	  background-color: #8bc650;
    border-color: #8bc650;
}

.page-template-default .ip_qs {
    margin-top: 0;
}

.ip_qs {
    background: #93b513 url(images/bg-ip-qs.jpg) top right no-repeat;
    padding: 19px 20.5px 0 !important;
    margin: 34px 0 0;
    width: 262px;
    max-width: 100%;
}

.sold_reports {
    background: #93b513;
    padding: 13px 20.5px 0 !important;

    width: 263px;
}

.sold_reports h2 {
    margin: 4px 0;
    font: 700 24px/1 'Montserrat', Sans-serif;
    letter-spacing: .04em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.archivehide{
	display:none;
}

    .page-template-template-left-sidebar-buyers .ip_qs, .page-template-template-left-sidebar-sellers .ip_qs {
        margin-top: 10px;
    }

    .ip_qs h2 {
        margin: 0;
        font: 700 24px/1 'Montserrat', Sans-serif;
        letter-spacing: .04em;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
    }
    .ip_qs .qs-wrap {
        padding: 17px 0 18px;
    }
        .ip_qs .qs-lg, .ip_qs .qs-btn {
            width: 100%;
            padding: 0 2.5px;
            margin: 0 0 8px;
        }



        .ip_qs .qs-sm {
            width: 50%;
            padding: 0 2.5px;
            margin: 0 0 8px;
        }

        .ip_qs .qs-field input[type="text"] {
            padding-left: 10px;
            background-image: none;
        }
        .ip_qs .qs-btn input[type="submit"], .ip_qs .qs-btn a.qs-advanced {
            font: 400 11px/1 'Montserrat', Sans-serif;
        }

        .ip_qs .qs-btn a.qs-advanced {
            background-image: none;
            text-align: center;
            padding-right: 0;
            line-height: 37px;
        }

        .ip_qs .qs-btn.qs-btn-1 {
            margin-top: 8px;
            margin-bottom: 5px;
        }


body[class*="page-template-template-left"] .ip_cta_list_2 {
    display: block;
}
.ip_cta_list_2 {
    margin: 30px 0 0;
    display: none;
    width: 262px;
    max-width: 100%;
}
    .ip_cta_2 {
        position: relative;
        margin: 0 0 8px;
    }
        .ip_cta_2:after {
            content: '';
            position: relative;
            display: none;
            width: 100%;
            height: 38px;
            background: url(images/bg-cta2-overlay.png) center top no-repeat;
            margin-top: -8px;
            background-size: cover;
        }

            .page-template-template-left-sidebar-buyers .ip_cta_2:after, .page-template-template-left-sidebar-sellers .ip_cta_2:after {
                height: 20px;
                background-size: 100% 100%;
                margin-top: 0;
            }

        .ip_cta_2 a {
            font: 700 24px/1 'Montserrat', Sans-serif;
            color: #fff;
            text-transform: uppercase;
            text-align: center;
            padding: 8px 8.5px;
            display: block;
            z-index: 2;
            position: relative;
        }
            .ip_cta_2 a:before, .ip_cta_2 a:after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                z-index: 1;
            }
                .ip_cta_2 a:before {
                    background: url(images/border-ip-cta2-top-left.png) top left no-repeat;
                }
                .ip_cta_2 a:after {
                    background: url(images/border-ip-cta2-bottom-right.png) bottom right no-repeat;
                }

            .ip_cta_2 a span {
                font: 400 16.92px/1 'Montserrat', Sans-serif;
                display: block;
                margin: 0 0 4px;
            }
            .ip_cta_title {
                position: absolute;
                width: 100%;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                z-index: 2;
                height: 43px;
            }
            .ip_cta_img {
                background: #010c05;
            }
                .ip_cta_img img {
                    width: 100%;
                    opacity: .5;
                }

            .ip_cta_2 a:hover .ip_cta_img {
                background: #93b513;
            }
                .ip_cta_2 a:hover .ip_cta_img img {
                    opacity: .2;
                }
    /*easing*/
    .ip_cta_img, .ip_cta_img img{
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }



/*inner page footer*/
/*
.ip-container section.ftr-nl {
    background: #93b513;
    font-size: 0;
    padding: 0;
}
    .ip-container .nl-wrap h2 {
        font: 700 23px/1 'Montserrat', Sans-serif;
        letter-spacing: .05em;
        color: #fff;
        padding-left: 17px;
        text-align: center;
        width: 37%;
        padding: 36px 0 37px 0;
        background: url(images/bg-ip-newsletter.jpg) 17px -10px no-repeat;
        margin-bottom: -2px;
        text-align: left;
    }

    .ip-container .nl-form {
        width: 63%;
        margin: 0;
        text-align: left;
        padding: 26px 18px 25px 43px;
    }

        .ip-container .nl-form input[type="email"] {
            border-color: #fff;
            color: #fff;
            text-transform: initial;
            font: 400 12px/1 'Montserrat', Sans-serif;
            letter-spacing: .11em;
            width: 77.625%;
            margin-right: 1.518%;
            height: 47px;
        }
        .ip-container .nl-form input[type="submit"] {
            width: 20.857%;
            background: #cf540c;
            font: 12px/1 'Montserrat', Sans-serif;
            letter-spacing: .11em;
            color: #fff;
            text-transform: uppercase;
            height: 47px;
            position: relative;
            top: initial;
            right: initial;
        }

        .nl-form div.wpcf7-response-output {
            font-size: 12px;
            text-align: center;
        }

    .ip-container section.ftr-mid {
        background: url(images/bg-footer.jpg)top center/cover no-repeat;
        position: relative;
        padding: 69px 0 46px;
    }
        .ip-container section.ftr-mid:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(13,13,13,.95);
        }*/

        .footer2-cntct {

        }
        .footer2-cntct.footer2-cntct-last {
            text-align: center;
        }
            .footer2-title {
                font: 700 34px/1 'Montserrat', Sans-serif;
                color: #93b513;
                text-transform: uppercase;
            }
                .footer2-title:after {
                    content: '';
                    position: relative;
                    display: block;
                    width: 23px;
                    height: 2px;
                    background: #894016;
                    margin: 34px 0 15px;
                }

                .footer2-cntct-last .footer2-title:after {
                    display: none;
                }

            .footer2-cntct strong {
                font: 700 14px/1 'Montserrat', Sans-serif;
                letter-spacing: .02em;
                color: #93b513;
                display: block;
                text-transform: uppercase;
                margin: 0 0 10px;
            }
            .footer2-cntct p {
                font: 500 17px/1 'Montserrat', Sans-serif;
                color: #fff;
                margin-bottom: 5px;
            }
                .footer2-cntct a {
                    color: #fff;
                }

            .footer2-cntct .ftr-smi.smi-list {
                margin-top: 38px;
            }

.thiscontent div#IDX-main,.thiscontent .entry-content {
    display: none;
}
.thiscontent.featureds #IDX-main {
    display: block;
}

        .footer2-logo {
            text-align: center;
            margin: 56px 0 0;
        }
            .footer2-logo img {
                max-width: 100%;
                margin: 0 50px;
            }


    /*.ip-container .footer-bottom-inner {
        padding: 45px 0 25px;
    }

        .ip-container .footer-credits {
            margin-top: 10px;
        }*/


/*featured properties on sidebar*/

.page-template-default .sp_fp_wrap  {
    display: block;
}
#content .sb_fp_mob {
    display: none;
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
}
.sp_fp_wrap {
    margin: 50px 0 0;
    display: none;
    width: 262px;
    max-width: 100%;
}
    .sp_fp_wrap h2, .sb_fp_mob h2 {
        text-align: center;
        text-transform: uppercase;
        font: 700 19px 'Montserrat', Sans-serif;
        /*letter-spacing: .05em;*/
        color: #121212;
        margin: 0 0 10px;
    }
        .sp_fp_wrap h2 span, .sb_fp_mob h2 span {
            color: #cf540c;
        }

    .sb_fp_list {

    }
        a.sb_fp {
            display: block;
            width: 100%;
            position: relative;
            margin: 0 0 19px;
        }
            .sb_fp_image {
                position: relative;
                width: 100%;
                height: 160px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                overflow: hidden;
            }
                .sb_fp_image:after {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: url(images/sb-fp-overlay.png) left bottom repeat-x;
                    z-index: 1;
                }
                .sb_fp_image:before {
                    content: '';
                    position: absolute;
                    right: 0;
                    bottom: 0;
                    width: 67px;
                    height: 72px;
                    background: url(images/sb-fp-plus.png) left bottom no-repeat;
                    z-index: 2;
                }
                .sb_fp_image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            .sb_fp_details {
                position: absolute;
                left: 0;
                bottom: 0;
                z-index: 1;
                font: 300 12px/19px 'Montserrat', Sans-serif;
                color: #fff;
                padding: 15px;
            }


/*schools page*/

.emphasize {
    color: #cf540c;
    font-weight: 600;
}


#content hr {
    border-top: 2px solid rgba(0,0,0,.3);
    margin: 26px 0px 22px;
}

#content h2.school-title {
    font: 600 23px/1 'Montserrat', Sans-serif;
    letter-spacing: .06em;
    color: #cf540c;
}
    #content h2.school-title:before {
        content: '';
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 52px;
        height: 33px;
        background: url(images/icon-bus.png) center no-repeat;
        margin-right: 9px;
    }

    #content h2.school-title span {
        display: inline-block;
        vertical-align: middle;
    }

    a.school-btn-1 {
        display: block;
        width: 398px;
        max-width: 100%;
        background: #93b513;
        font: 600 13px/16.7px 'Montserrat', Sans-serif;
        letter-spacing: .12em;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        padding: 10px 0;
        margin: 30px 0;
    }

    a.school-btn-2 {
        display: block;
        width: 371px;
        max-width: 100%;
        background: #cf540c;
        font: 600 13px/16.7px 'Montserrat', Sans-serif;
        letter-spacing: .12em;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        padding: 10px 0;
        margin: 23px 0 44px;
    }

    #content ul.school-info-list {
        margin: -5px 0 0;
        list-style: none;
        font-size: 0;
    }
        #content ul.school-info-list li {
            font: 600 15px/25px 'Montserrat', Sans-serif;
            letter-spacing: .06em;
            color: #00537e;
            display: inline-block;
            vertical-align: top;
            text-align: left;
            padding-left: 15px;
            position: relative;
        }
            #content ul.school-info-list.school-info-list-alpine li {
                letter-spacing: .04em;
            }
        #content ul.school-info-list li:nth-child(odd) {
            width: 45.6%;
        }
        #content ul.school-info-list li:nth-child(even) {
            width: 54.2%;
        }
            #content ul.school-info-list li:before {
                content: '•';
                color: #00537e;
                margin-right: 6px;
                position: absolute;
                left: 0;
                top: 0;
            }

    .school-note {
        border-top: 2px solid rgba(0,0,0,.3);
        border-bottom: 2px solid rgba(0,0,0,.3);
        padding: 14.5px 15px;
        font: 600 15px 'Montserrat', Sans-serif;
        color: #848282;
        letter-spacing: .06em;
        margin: 25px 0 19px;
    }

    .no-margin-bottom {
        margin-bottom: 0!important;
    }




/*schools page end*/


/*Results page*/
.photogallery a {
    color: #A3A3A3 !important;
    font-size: 20px;
}

.breadcrumbs_hidden{
	display:none;
}

.photogallery .col-xs-3.pull-right.fs-12.ihf-grid-result-photocount {
    width: auto;
}

.parent-pageid-101 .table{
border: 1px solid #000;
text-align: center;
}
.parent-pageid-101 .table tr,.parent-pageid-101 .table td{
border: 1px solid #000;
padding : 5px;
}

.photogallery i.glyphicon.glyphicon-camera {
  color: #A3A3A3;
    font-size: 20px;
    font-style: normal !important;
}

.page_cube ul li {
    /* display: inline-block; */
     border: 1px solid #cf540c9e;
    /* padding: 3px; */
    /* width: 25px; */
    /* text-align: center; */
    /* margin: 0 3px 0 0; */
}

.page_cube ul {
    margin: 9px 0 !important;
}

.page_cube ul li.active {
    border: 1px solid #8080806e !important;
}

.page_cube ul li.active a {
    color: #787575f7 !important;
}
.page_cube ul li span{
    margin-right: 0;
}

.page_cube ul li a,
.page_cube ul li span a {
    display: block;
    text-align: center !important;
	color: #93B513 !important;
    margin: 0 !important;
}
.ihf-grid-result {
    display: none;
}

select.d_down {
    display: inline-block;
    border: 1px solid #cf540c9e;
    padding: 3px;
    width: 43px;
    text-align: center;
    color: #93B513;
    margin: 0 0 0 7px !important;
}

select.d_down option {
    display: block;
    text-align: center !important;
    color: #93B513 !important;
}

/*end Results page*/

/*search result */
.page-template-template-search-result #inner-page-wrapper {
    margin-bottom: 65px;
}
.page-template-template-search-result  #content-full {
    min-height: initial;
}

.page-template-template-search-result .ip-banner {
    display: none;
}

.rs-wrap {
    padding: 28px 32px 30px 29px;
    background: #93b513 url(images/rsp-qs.png) top left no-repeat;
    font-size: 0;
    margin: 55px 0 40px;
}
    #content .rs-wrap h2 {
        font: 30.26px/1 'Montserrat', Sans-serif;
        color: #fff;
        text-transform: uppercase;
        display: inline-block;
        vertical-align: middle;
        width: 18.536%;
        margin: 0;
    }
    .rs-form {
        display: inline-block;
        vertical-align: middle;
        width: 81.464%;
    }
        .rs-wrap .rs-field, .rs-wrap .rs-btn {
            display: inline-block;
            vertical-align: top;
        }

        .rs-lg {
            /*width: 254px;*/
            width: 28.898%;
            padding-right: 24px;
        }
        .rs-sm {
            /*width: 184px;*/
            width: 20.934%;
            padding-right: 24px;
        }
        .rs-xs {
            /*width: 148px;*/
            width: 16.949%;
            padding-right: 24px;
        }
        .rs-wrap .rs-btn {
            /*width: 143px;*/
            width: 16.27%;
        }
            .rs-field select {
                width: 100%;
                height: 38px;
                border: 1px solid rgba(255,255,255,.2);
                background: transparent;
                font: 400 11px/1 'Montserrat', Sans-serif;
                text-transform: uppercase;
                color: #fff;
                padding-left: 10px;
            }

            .rs-btn input[type="submit"] {
                width: 100%;
                height: 38px;
                font: 400 11px/1 'Montserrat', Sans-serif;
                text-transform: uppercase;
                display: block;
                color: #fff;
                background: #cf540c;
                border: 1px solid #cf540c;
            }

.rs-result.row {
    margin-left: -5px;
    margin-right: -5px;
}
    .rs {
        padding: 0 5px;
        margin: 0 0 51px;
    }
        .rs-img {
            position: relative;
        }
            .rs-img img {
                width: 100%;
            }

            .rs-oh {
                font: 600 15px/1 'Montserrat', Sans-serif;
                letter-spacing: .04em;
                color: #5b5b5b;
                text-align: center;
                width: 100%;
                position: absolute;
                bottom: 10px;
                left: 0;
                background: rgba(255,255,255,.72);
                padding: 9.5px 0;;
            }


        .rs-details {
            font-size: 0;
            margin: 12px 0 0;
        }
            .rs-result .rs-address {
                width: 50%;
                display: inline-block;
                vertical-align: middle;
                font: 600 15px/17px 'Montserrat', Sans-serif;
                letter-spacing: .025em;
                color: #000;
                padding-left: 5px;
            }

            .rs-result .rs-price {
                width: 50%;
                display: inline-block;
                vertical-align: middle;
                font: 600 21.04px/1 'Montserrat', Sans-serif;
                letter-spacing: .02em;
                text-align: right;
            }

            .rs-amm {
                color: #565555;
                text-align: center;
                font-size: 0;
                padding: 25px 0px 20px 6px;
            }
                .rs-amm > span {
                    text-transform: uppercase;
                    width: 33.333333%;
                    font: 300 12px/1 'Montserrat', Sans-serif;
                    letter-spacing: .14em;
                    display: inline-block;
                }
                    .rs-amm > span > em {
                        display: inline-block;
                        vertical-align: middle;
                        background-image: url(images/rsp-icons.png);
                    }

                .rs-beds {
                    text-align: left;
                }
                    .rs-beds em {
                        width: 25px;
                        height: 17px;
                        background-position: 0 0;
                        margin: -3px 9px 0 0;
                    }

                .rs-baths {
                    text-align: left;
                }
                    .rs-baths em {
                        width: 18px;
                        height: 17px;
                        background-position: -27px 0px;
                        margin: -6px 8px 0 7px;
                    }

                .rs-area {
                    text-align: right;
                }
                    .rs-area em {
                        width: 13px;
                        height: 15px;
                        background-position: 15px 0;
                        margin: -4px 0px 0 0;
                    }

            a.rs-btn {
                display: block;
                width: 100%;
                background: #cf540c;
                text-align: center;
                font: 400 14px/1 'Montserrat', Sans-serif;
                letter-spacing: .28em;
                color: #fff;
                text-transform: uppercase;
                padding: 8px 0;
            }

            .rs-credit {
                font: 700 14px/17px 'Montserrat', Sans-serif;
                letter-spacing: .14em;
                color: #666666;
                text-align: center;
                margin: 19px 0 0;
            }

.rs-pagination {
    text-align: right;
    padding-right: 46px;
    margin: 41px 0 0;
}
    .rs-pagination a.prev-page, .rs-pagination a.next-page {
        display: inline-block;
        vertical-align: top;
        margin: 7px 0 0;
    }

    .rs-pagination a.prev-page {
        margin-right: 7px;
    }
    .rs-pagination a.next-page {
        margin-left: 8px;
    }
        .rs-pagination a.prev-page:before {
            content: '';
            position: relative;
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 4.5px 8px 4.5px 0;
            border-color: transparent #666465 transparent transparent;
        }

        .rs-pagination a.next-page:before {
            content: '';
            position: relative;
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 4.5px 0 4.5px 8px;
            border-color: transparent transparent transparent #666465;
        }

        .rs-pagination span {
            display: inline-block;
            vertical-align: top;
            font: 300 19px/1 'Montserrat', Sans-serif;
            color: #5b5b5b;
            letter-spacing: .04em;
        }
            .rs-pagination span em {
                font-style: normal!important;
                font-weight: 400;
            }

/*search result end */


/*property details*/
#content #ihf-main-container .btn-primary {
    color: #ffffff;
    background-color: #cf550c;
    border-color: #cf550c;
}

#ihf-main-container .nav-tabs > li.active > a, #ihf-main-container .nav-tabs > li.active > a:hover, #ihf-main-container .nav-tabs > li.active > a:focus {
    color: #cf550c;
}

#ihf-main-container .nav-tabs > li > a {
    color: #92b513;
}

.page-id-0 .ip-banner, .page-template-template-property-details .ip-banner {
    display: none;
}
.page-id-0 #inner-page-wrapper, .page-template-template-property-details #inner-page-wrapper {
    margin-bottom: 53px;
}

.page-template-template-property-details a.list-det-new {
    font-size: 14px;
    display: block;
    color: #418bca;
    text-decoration: none;
    margin: 10px 0;
}

    .page-template-template-property-details a.list-det-new:hover {
        text-decoration: none;
    }

.cstm-prop-wrapper {

}
    .cstm-gallery {

    }
        .cstm-gall-img {

        }

            .cstm-gall-img canvas {
                display: block;
                width: 100%;
                height: auto;
                background-size: cover !important;
            }

            .cstm-gall-img img {
                 height: 437px;
				text-align: center;
				margin: 18px auto;
            }

    .cstm-prop-details {
        /* border: 1px solid #676767; */
        border-top: none;
        font-size: 0;
        padding: 12px 28px 12px 12px;
    }
        .cstm-prop-left {
            width: 50%;
            display: inline-block;
            vertical-align: top;
        }

            .cstm-prop-left > span {
                display: inline-block;
                vertical-align: middle;
                font: 300 15.2px/1 'Lato', sans-serif;
                letter-spacing: .14em;
                color: #565555;
                text-transform: uppercase;
            }
                .cstm-prop-left > span span {
                    display: inline-block;
                    vertical-align: bottom;
                }

            .cstm-prop-left > span.cstm-beds {
                margin-right: 55px;
            }
                .cstm-prop-left > span.cstm-beds em {
                    display: inline-block;
                    vertical-align: bottom;
                    width: 32px;
                    height: 22px;
                    background: url(images/custom-property-icons.png) 0 0 no-repeat;
                    margin: 0px 15px 0 0;
                }

            .cstm-prop-left > span.cstm-baths {
                margin-right: 70px;
            }
                .cstm-prop-left > span.cstm-baths em {
                    display: inline-block;
                    vertical-align: bottom;
                    width: 23px;
                    height: 23px;
                    background: url(images/custom-property-icons.png) -33px 0 no-repeat;
                    margin: -2px 13px 0 0;
                }

            .cstm-prop-left > span.cstm-area {

            }
                .cstm-prop-left > span.cstm-area em {
                    display: inline-block;
                    vertical-align: bottom;
                    width: 19px;
                    height: 21px;
                    background: url(images/custom-property-icons.png) -57px 0 no-repeat;
                    margin: -2px 2px 0 0;
                }

        .cstm-prop-right {
            width: 50%;
            display: inline-block;
            vertical-align: top;
            text-align: right;
        }
            .cstm-prop-right > span {
                display: inline-block;
                vertical-align: middle;
                font: 700 14.95px/1 'Montserrat', Sans-serif;
                letter-spacing: .145em;
                color: #cf550c;
                text-transform: uppercase;
            }
                .cstm-prop-right > span.cstm-vt a, .cstm-prop-right > span.cstm-wv a {
                    color: #cf550c;
                }

                .cstm-prop-right > span.cstm-vt {
                    margin-right: 20px;
                    height: 11px;
                }
                    .cstm-prop-right > span.cstm-vt em {
                        display: inline-block;
                        vertical-align: middle;
                        width: 9px;
                        height: 18px;
                        background: url(images/custom-property-icons.png) -77px 0 no-repeat;
                        margin: -4px 7px 0 0;
                    }

                .cstm-prop-right > span.cstm-wv {
                    margin-right: 30px;
                    height: 17px;
                }
                    .cstm-prop-right > span.cstm-wv em {
                        display: inline-block;
                        vertical-align: middle;
                        font-size: 25px;
                        margin: -2px 7px 0 0 ;
                    }

    .cstm-prop-title {
        /* margin: 27px 0 15px; */
    }
	.cstm-prop-title h4{
		/* color:#92b513; */
		/* font-weight:400; */
	}
	.cstm-prop-title span{
		color:#92b513;
		font-weight:400;
	}
        #content .cstm-prop-address {
            /* font: 600 17.95px/22px 'Montserrat', Sans-serif; */
            font: 400 17.95px/22px 'Montserrat', Sans-serif;
            letter-spacing: .085em;
            /* color: #000; */
            margin: 0!important;
			color:#92b513;
        }
        #content .cstm-prop-price {
            display: block;
            /* font: 600 17.95px/22px 'Montserrat', Sans-serif; */
            font: 400 17.95px/22px 'Montserrat', Sans-serif;
            letter-spacing: .085em;
        }

    .cstn-prop-content > img {
        max-width: 100%;
    }

    .cstm-propery-bottom {
        margin: 0px 14px 0;
    }
        .cstm-cta-list {
            font-size: 0;
            /* margin: 22px -3px 45px; */
        }
            .cstm-cta-list a {
                display: inline-block;
                margin: 0 6px 12px;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
            }
                .cstm-cta-list a:hover {
                    opacity: .8;
                }


        .cstm-credits {
            font-size: 11px;
            color: #000;
        }
            .cstm-credits #ihf-board-detail-disclaimer {
                font-size: 11px;
                margin-top: 23px;
                margin-bottom: 24px;
            }

            .cstm-credits  #ihf-board-detail-updatetext {
                font-size: 11px;
                margin-bottom: 25px;
            }

            .cstm-credits a {
                color: #000 !important;
            }


/*property details end*/


/*conatct form on sidebar*/
.page-id-0 .footer-form.side_form, .page-template-template-property-details .footer-form.side_form {
    display: block;
}

.footer-form.side_form {
    margin: 91px 0 0;
    display: none;
}
    .footer-form.side_form h2 {
        text-align: center;
        margin-bottom: 23px;
    }
        .footer-form.side_form h2:after {
            content: '';
            position: relative;
            display: block;
            width: 90px;
            height: 2px;
            background: #e08e5f;
            margin: 14px auto 0;
        }

    .footer-form.side_form .ftr-field input[type="text"], .footer-form.side_form .ftr-field input[type="email"], .footer-form.side_form .ftr-field textarea {
        border: 1px solid #c7bdbe;
    }

    .footer-form.side_form .ftr-field input[type="submit"] {
        bottom: 12px;
        right: 14px;
    }


/*conatct form on sidebar end*/
.page-id-0 .ip_cta_list_3 {
    display: none;
}
.page-template-template-property-details  .ip_cta_list_3 {
    display: block;
}
.ip_cta_list_3 {
    display: none;
    margin: 76px 0 0;
}


/*contact info on sidebar*/
.page-id-0 .sb_info,  .page-template-template-property-details  .sb_info{
    display: block;
}

.page-id-0 .ip_qs, .page-template-template-property-details .ip_qs {
    margin: 30px 0 0;
}

.sb_info {
    display: none;
    padding: 50px 5px 48px;
    text-align: center;
    position: relative;
    font-size: 0;
    margin: 0 0 0;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
    color: #000;
}

    .sb_info:before,.sb_info:after {
        content: '';
        position: absolute;
        width: 101px;
        height: 101px;
        z-index: 1;
    }
    .sb_info:before {
        background: url(images/sb-info-border-top-left.png) left top no-repeat;
        top: 0;
        left: 0;
    }

    .sb_info:after {
        background: url(images/sb-info-border-bottom-right.png) bottom right no-repeat;
        bottom: 0;
        right: 0;
    }

    .sb_info h2 {
        font: 25px/1 'Montserrat', sans-serif;
        color: #d0560d;
        text-transform: uppercase;
        margin: 0 0 12px;
    }

    span.sb_info_phone {
        display: inline-block;
        vertical-align: middle;
        font: 600 17px/1 'Montserrat', sans-serif;
    }

    span.sb_info_email {
        font: 600 17px/1 'Montserrat', sans-serif;
        margin: 10px 0 0;
        display: block;
    }
        span.sb_info_email a {
            color: inherit;
        }

    em.sb_info_sep {
        width: 2px;
        height: 27px;
        vertical-align: middle;
        display: inline-block;
        background: #a3a3a3;
        margin: 0 7px;
    }




/*contact info on sidebar end*/


/*Listings Template*/
.ip-listings-link {
    display: block;
    border: 1px solid #666666;
    min-height: 260px;
    padding: 18px 5px;
    color: #666666;
    margin-bottom: 30px;
}

    .ip-listings-link:hover{
        color: #666666;
    }

    .ip-listings-img canvas {
        width: 100%;
        height: 122px;
    }

    .ip-listings-info {
        text-align: center;
    }

    .ip-listings-address {
        font-size: 13px;
        text-transform: capitalize;
    }

    .ip-price {
        color: #d56320;
        font-size: 18px;
        font-weight: bold;
        margin-top: 5px;
    }

    span.ip-listings-title {
        font-size: 22.5px;
        font-weight: 700;
        color: #d56320;
        line-height: 20px;
        margin: .75em 0;
        display: block;
    }

    .ip-listings-addinfo p{
        font-size: 15px;
        color: #666666;
        padding: 0 0 12px 0 !important;
        margin: 0 !important;
    }


#content a {
    color: #93b513;
}
    #content a:hover {
        text-decoration: underline;
    }

.sold-banner-btn {
    display: block;
    width: 526px;
    max-width: 100%;
    /*height: 87px;*/
    background: url(images/sold_report_banner_bg.jpg) left top/auto 100% repeat-x;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    padding: 17px 0;
    cursor: default;
}
    .sold-banner-btn strong {
        display: block;
        font: 700 30px/1 'Montserrat', Sans-serif;
        color: #cf540c;
        text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    }
    .sold-banner-btn span {
        display: block;
        font: 600 20px/1 'Montserrat', Sans-serif;
        color: #fff;
        text-shadow: 1px 1px 1px rgba(0,0,0,.5);
        margin: 3px 0 0;
    }

#content h1, #content h2, #content h3, #content h4, #content h5 {
    font-family: 'Montserrat', Sans-serif;
}
.page-id-237 #content .entry-title, .page-id-237 .entry-title.new-entry-title,
.page-id-237 #content h1, .page-id-237 #content h2, .page-id-237 #content h3, .page-id-237 #content h4, .page-id-237 #content h5,
.page-id-237 #content .entry, .page-id-237 #content .entry p,
.page-id-237 .ip_cta_list a.ip_cta,
.page-id-237 .ip_qs h2 {
    /* font-family: 'Montserrat', sans-serif; */
}

.page-id-250 #content .entry-title, .page-id-250 .entry-title.new-entry-title,
.page-id-250 #content h1, .page-id-250 #content h2, .page-id-250 #content h3, .page-id-250 #content h4, .page-id-250 #content h5,
.page-id-250 #content .entry, .page-id-250 #content .entry p,
.page-id-250 .ip_cta_list a.ip_cta,
.page-id-250 .ip_qs h2 {
    /* font-family: 'Montserrat', sans-serif; */
}

.sidebar .ip_cta_list a.ip_cta {
    padding: 1px 5px;
}

    .page-template-template-left-sidebar-buyers .sidebar .ip_cta_list a.ip_cta,  .page-template-template-left-sidebar-sellers .sidebar .ip_cta_list a.ip_cta {
        line-height: 24px;
        font-size: 13px;
    }

#content .line {
    /* background: #93b513 !important; */
    background: #999 !important;
    height: 1px;
    width: auto;
    color: #cad4d9;
    display: block;
}

.arrow_whole {
    position: relative;
}

a.arrow_left.ai-arrow-a-p.slick-arrow {
    position: absolute;
    top: 99px;
    font-size: 40px;
    z-index: 1;
    color: #fff !important;
    text-shadow: 1px 1px 1px grey;
    left: 9px;
    cursor: pointer;
    text-decoration: none !important;
}

a.goback {
    float: right;
	color: #92b513;
}

a.list-det-new {
    color: #92b513;
}

a.arrow_right.ai-arrow-a-n.slick-arrow {
    position: absolute;
    top: 99px;
    font-size: 40px;
    z-index: 1;
    color: #fff !important;
    text-shadow: 1px 1px 1px grey;
    right: 9px;
    cursor: pointer;
    text-decoration: none !important;
}

.line {
    background-color: transparent !important;
    display: none;
}

#content .entry-content h2 {
    font: 700 21px/1 'Montserrat', Sans-serif;
    letter-spacing: .02em;
    color: #cf540c;
    margin: 15px 0 20px;
}

#content .entry-content h3 {
    font: 700 18px/1 'Montserrat', Sans-serif;
    letter-spacing: .02em;
    color: #cf540c;
    margin: 15px 0 20px;
}

.ftr-broker img {
    /*width: 100%;*/
    width: 232px;
    transform: translateZ(0);
    margin-top: 25px;
    max-width: 100%;
}

.footer2-logo div > img {
    width: 240px;
}

.page-template-full-width-towns-template .sp_fp_wrap {
    display: block;
}

.page-id-110  #content ul, .page-id-102  #content ul{
    margin-left: 20px;
}

.page-id-110 #content ul li a, .page-id-102 #content ul li a {
    text-align: left !important;
    letter-spacing: 0px;
    font-size: 14px;
}

.page-id-85 #content a {
    font-family:'Montserrat', Sans-serif;
}

.readmo {
    cursor: pointer;
    color: #93b513;
}
.readmore_test {
    display: none;
}
.readmore_test.active {
    display: block;
}

.page-id-75 #content .entry-content h2, .page-id-75 #content .entry, .page-id-75 #content .entry p,
.page-id-75 #content .entry-title, .page-id-75 .entry-title.new-entry-title, .page-id-75 #content .entry-content h3
{
    font-family: 'Montserrat', Sans-serif
}

.page-id-250 #content .entry-content h2, .page-id-250 #content .entry, .page-id-250 #content .entry p,
.page-id-250 .entry-title.new-entry-title, .page-id-250 #content .entry-content h3
{
    font-family: 'Montserrat', Sans-serif
}

table.table.table-striped tbody > tr:first-child {
    background: #93b513;
    border: 1px solid #93b513;
}

    table.table.table-striped tbody > tr:first-child th {
        padding: 5px 0;
        border-right: 1px solid #000;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        font-weight: 400!important;
    }
        table.table.table-striped tbody > tr:first-child th strong {
            font-weight: 400!important;
        }

    table.table.table-striped tbody > tr:first-child th:first-child {
        border-left: 1px solid #000;
    }

    table.table.table-striped tbody > tr:first-child th:last-child {
        border-right: 1px solid #000;
    }

    table.table.table-striped tbody > tr:first-child {
        color: #fff;
    }

table.table.table-striped tbody > tr:nth-child(2) > td {
    border-top: 1px solid #93b513;
}



table.table.table-striped tbody > tr > td:first-child {
    background: #fff;
    color: #000;
    border-bottom-color: #000;
}

table.table.table-striped tbody > tr:last-child > td:first-child {
    border-bottom-color: #000;
}

table.table.table-striped tbody > tr:first-child > td:first-child {
    background: #93b513;
    color: #cf540c;
}


table.table.table-striped tbody > tr > td.no-bg-color:first-child {
    background: none;
    border-bottom-color: #000;
}

#content .entry-content table.table.table-striped h3 {
    font-size: 16px;
}



.page-id-103 table.table.table-striped tbody > tr > td,
.page-id-104 table.table.table-striped tbody > tr > td,
.page-id-106 table.table.table-striped tbody > tr > td,
.page-id-107 table.table.table-striped tbody > tr > td,
.page-id-108 table.table.table-striped tbody > tr > td,
.page-id-109 table.table.table-striped tbody > tr > td,
.page-id-110 table.table.table-striped tbody > tr > td,
.page-id-111 table.table.table-striped tbody > tr > td,
.page-id-112 table.table.table-striped tbody > tr > td,
.page-id-113 table.table.table-striped tbody > tr > td,
.page-id-114 table.table.table-striped tbody > tr > td,
.page-id-115 table.table.table-striped tbody > tr > td,
.page-id-116 table.table.table-striped tbody > tr > td,
.page-id-117 table.table.table-striped tbody > tr > td,
.page-id-142 table.table.table-striped tbody > tr > td
{
    font-size: 12px;
}

.ip-container .backtotop {
    display: none;
}

.page-id-101 table.table.table-striped tbody > tr > td {
    text-align: center;
}

.map-mapping-wrap {
    /*max-width: 796px;
    width: 100%;
    height: 682px;*/
    margin: 0 auto;
}

    #map-mapping {
        display: block;
        position: relative;
        width: 796px;
        height: 682px;
        margin: 0 auto;
        transform-origin: top left;
    }

        #map-mapping .modal-map {
            display: none;
            position: absolute;
            min-width: 220px;
            padding: 15px;
            z-index: 20;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
            background: rgba(0,0,0,.8);
        }
            #map-mapping .modal-map:after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: -9px;
                margin: 0 auto;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 9px 8.5px 0 8.5px;
                border-color: #000000 transparent transparent transparent;
                opacity: .8
            }
                #map-mapping .modal-map a {
                    color:  #fff;
                    letter-spacing: initial;
                    display:  block;
                    text-align:  left;
                }

                #map-mapping .modal-map br {
                    display:  none;
                }

                #map-mapping .modal-map a:hover {
                    color: #93b513;
                    text-decoration:  underline;
                }

        /* Areas */
        #map-mapping .oldtappan{bottom:660px;right:195px;}
        #map-mapping .norwood{bottom:612px;right:100px;}
        #map-mapping .alpine{bottom:447px;right:10px;}
        #map-mapping .closter{bottom:512px;right:115px;}
        #map-mapping .harington{bottom:557px;right:165px;}
        #map-mapping .haworth{bottom:469px;right:190px;}
        #map-mapping .demarys{bottom:454px;right:110px;}
        #map-mapping .cresskill{bottom:392px;right:100px;}
        #map-mapping .bergenfield{bottom:337px;right:210px;}
        #map-mapping .tenafly{bottom:332px;right:110px;}
        #map-mapping .englewood-cliff{bottom:182px;right:75px;}
        #map-mapping .leonia{bottom:82px;right:185px;}
        #map-mapping .englewood{bottom:207px;right:138px;}
        #map-mapping .fortlee{bottom:42px;right:130px;}
        #map-mapping .teaneck{bottom: 212px;right: 255px;}

.page-id-9339 .ai-default-cf7wrap textarea {
    height: 111px;
}

.page-id-9339 .ai-default-cf7wrap input[type="submit"], .page-id-9339 .ai-default-cf7wrap input.wpcf7-submit {
    font-size: 15px;
}

span.testi-name {
    color: #93b513;
    font-weight: 400;
    font-size: 15px;
}

:target {
  display: block;
  position: relative;
  top: -191px;
  visibility: hidden;
}

#content-div table {
    width: 100%;
}

.ol-menu {
    display: block;
    width: 100%;
    background-color: #b1d71c;
    margin: 10px 0;
}
    #content .ol-menu ul {
        margin: 0;
        font-size: 0;
        text-align: center;
    }
        .ol-menu ul li {
            display: inline-block;
            padding: 1% 2%;
            vertical-align: middle;
            text-align: center;
            width: 16%;
        }
            #content .ol-menu ul li a {
                color: #00537e;
                text-decoration: none;
                font-size: 15px;
            }

#content #map-shadow {

}
    #content #towns-mapping .town-coordinates + p {
        display: none;
    }
    #content .town-hide {
        font-size: 0;
    }
        #content .town-hide + p {
            display: none;
        }
        #content #towns-mapping .town-left {
            display: block;
            width: 50%;
            margin: 0 auto;
        }
            #content #towns-mapping .town-left .ft-img {
                max-width: 205px;
                margin: 0 auto;
            }
            #content #towns-mapping .town-left .ft-img + br {
                display: none;
            }
            #content #towns-mapping .town-left .town-title {
                line-height: 1;
            }

        #content #towns-mapping .town-right {
            margin-left: 0;
            text-align: left;
            width: 100%;
            position: relative;
            display: block;
            width: 100%;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            font-size: 12px;
            color: #353535;
            line-height: 22px;
        }
            #content #towns-mapping .town-right > span > br:first-child, #content #towns-mapping .town-right > span + br {
                display: none;
            }

            #content #towns-mapping .town-details {
                padding: 15px 0 15px 70px;
            }
                #content #towns-mapping .town-right a.view-more {
                    display: block!important;
                    position: absolute;
                    margin-top: 0;
                    bottom: 12px;
                    right: 10px;
                }

.after-map {
    position: relative;
}
    .clm-title {
        display: block;
        color: #cf540c;
        margin: 25px 0;
    }

    .clm-border {
        position: relative;
    }
        .clm-border:after, .clm-border:before {
            content: '';
            position: absolute;
            width: 1px;
            height: 329px;
            background: url(images/chinese/hp-vertical-line.png) center/100% auto no-repeat;
            top:0;
        }
        .clm-border:before {
            left: 0;
        }
        .clm-border:after {
            right: 0;
        }

.korean {
    background-color: #dddddd;
    padding: 10px;
    margin-bottom: 15px;
}
    .korean-ps, .ol-title, #content p.org{
        color: #d45f00;
    }

.page-id-9480 #content .ol-menu ul li a {font-size: 12px;}

.ae-boxed-header {
    color: #d45f00;
    float: left;
    font-family: "Palatino Linotype","Book Antiqua",Palatino,serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 46px;
    margin-left: 14px;
    padding: 0;
    width: 100%;
}

#content td.paddingLR8.alignCenter a {
    color: #00537e;
}

#content .ae-hebrew-content-div ul, #content ul.heb {
    margin-right: 40px;
    margin-left: 0;
	text-align:right;
}

#content ul, #content a {
    text-align: left;
}

#content ol[class*="number-list"] {
    counter-reset: listNumbering;
    list-style: none;
}
    #content ol[class*="number-list"] li {
        counter-increment: listNumbering;
        position: relative;
    }
        #content ol[class*="number-list"] li:before {
            content: counter(listNumbering) '.';
            font: 400 14px/1 'Montserrat', Sans-serif;
            letter-spacing: .02em;
            color: #cf540c;
            left: -30px;
            position: absolute;
            min-width: 20px;
            text-align: center;
        }
        #content ol.number-list-h3 li:before {
            font: 400 18px/1 'Montserrat', Sans-serif;
        }
        #content ol.number-list-h2 li:before {
            font: 400 22px/1 'Montserrat', Sans-serif;
        }

#content ul[style*="list-style-type:none;"],
#content ul[style*="list-style-type: none;"],
#content ul[style*="list-style-type:none"],
#content ul[style*="list-style-type: none"] {
    margin-left: 0;
}
#content ul{
	margin: 0 0 1.12em 40px;
}
.ai-contact-wrap span.content-title.red-color {
    /*color: #ff0000;*/
    color: #cf540c;
}

#content .cycloneslider-template-standard {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 35px;
}

.sold-reports-form {
    margin-top: 40px;
}

    .sidebar  > div:first-child .sold-reports-form  {
        margin-top: 0;
    }

.post-under-blog-category .ip-banner, .category-blog .ip-banner,
.page-id-7227 .ip-banner,
.page-id-9201 .ip-banner,
.page-id-9892 .ip-banner,
.page-id-103 .ip-banner,
.page-id-104 .ip-banner,
.page-id-105 .ip-banner,
.page-id-106 .ip-banner,
.page-id-107 .ip-banner,
.page-id-108 .ip-banner,
.page-id-109 .ip-banner,
.page-id-110 .ip-banner,
.page-id-111 .ip-banner,
.page-id-112 .ip-banner,
.page-id-113 .ip-banner,
.page-id-114 .ip-banner,
.page-id-115 .ip-banner,
.page-id-116 .ip-banner,
.page-id-117 .ip-banner,
.page-id-9898 .ip-banner,
.page-id-9900 .ip-banner,
.page-id-9902 .ip-banner,
.page-id-9905 .ip-banner,
.page-id-9907 .ip-banner,
.page-id-9909 .ip-banner,
.page-id-9911 .ip-banner,
.page-id-9913 .ip-banner,
.page-id-9915 .ip-banner,
.page-id-9917 .ip-banner,
.page-id-9919 .ip-banner,
.page-id-78 .ip-banner,
.page-id-85 .ip-banner,
.page-id-86 .ip-banner,
.page-id-87 .ip-banner,
.page-id-89 .ip-banner,
.page-id-171 .ip-banner,
.page-id-332 .ip-banner,
.page-id-1234 .ip-banner,
.page-id-1236 .ip-banner,
.page-id-1241 .ip-banner,
.page-id-1243 .ip-banner,
.page-id-1245 .ip-banner,
.page-id-9205 .ip-banner,
.page-id-9196 .ip-banner,
.page-id-1247 .ip-banner,
.page-id-9403 .ip-banner,
.page-id-9198 .ip-banner
{
    /*display: none;*/
}

/* Hi !  No need to do this, just please check the screenshot http://prntscr.com/jlt3bw. This will show every page  */
/*** new listings template ***/

.listingcontent .ip-banner {
    display: none;
}

.listingcontent {
    min-height: 900px;
}

.listingcontent .listings-search {
    font-size: 0;
    display: block;
    padding: 27px 0;
    background: url(images/listings-search-bg.png) no-repeat #93b513;
    margin-top: 35px;
	min-height:900px;
}

    .listingcontent .listings-search h2 {
        display: inline-block;
        width: 19.5%;
        margin: 0 1.5% 0 0 !important;
        vertical-align: middle;
        font-size: 30px !important;
        color: #fff;
        font-family: 'Oswald', sans-serif !important;
        text-transform: uppercase;
        font-weight: 400 !important;
        text-align: center;
        line-height: 1;
    }

        .listingcontent .listings-search form {
            /*font-size: 11px;*/
            font-family: 'Muli', sans-serif;
            color: #fff;
            display: inline-block;
            width: 79%;
            vertical-align: middle;
            margin: 0 !important;
        }

        .listingcontent .listings-search select {
            width: 11.88%;
            display: inline-block;
            vertical-align: top;
            height: 38px;
            border: 1px solid #a3c035;
            padding: 0 10px;
            background: url(images/listings-search-arrow.png) no-repeat;
            background-position: 95% 50%;
            margin-right: 2%;
            -webkit-appearance: none;
            -moz-appearance: none;
                font-size: 11px
        }

            .listingcontent .listings-search select::-ms-expand {
                display: none;
            }

            .listingcontent .listings-search select.med {
                width: 10.77%;
            }

            .listingcontent .listings-search select.wide {
                width: 25.55%;
            }

        .listingcontent .listings-search input[type="submit"] {
            display: inline-block;
            vertical-align: top;
            width: 16.11%;
            background: #cf540c;
            height: 38px;
            line-height: 38px;
            border: 0;
            text-transform: uppercase;
            font-size: 11px
        }

    .listingcontent .listings-list {
        display: block;
        margin-top: 40px;
    padding-top: 56px;
    }

        .listingcontent .listings-list .list-row {
            margin: 0 -7px;
            font-size: 0;
        }

            .listingcontent .listings-list .list-col {
                width: 33.33%;
                display: inline-block;
                vertical-align: top;
                padding: 0 7px;
                font-family: 'Lato', sans-serif;
                margin-bottom: 50px;
            }

                .listingcontent .list-col .img-wrap {
                    display: block;
                    width: 100%;
                    position: relative;
                }

                    .listingcontent .list-col .img-wrap canvas {
                        display: block;
                        width: 100%;
                        height: auto;
                        background-size: cover !important;
                    }

                    .listingcontent .list-col .img-wrap span {
                        position: absolute;
                        bottom: 10px;
                        left: 0;
                        width: 100%;
                        line-height: 1;
                        font-size: 15px;
                        color: #5b5b5b;
                        text-align: center;
                        font-weight: 600;
                        padding: 10px 0;
                        background: rgba(255,255,255,.72);
                    }

                .listingcontent .list-col .list-details {
                    display: block;
                    font-size: 0;
                    margin: 12px 0 22px;
                    font-family: 'Lato', sans-serif;
                }

                    .listingcontent .list-col .list-details .det-top {
                        color: #000;
                        font-size: 0;
                        line-height: 1;
                        font-weight: 600;
                    }

                        .listingcontent .list-col .list-details .det-top span {
                            display: inline-block;
                            vertical-align: middle;
                            width: 65%;
                            padding-right: 3%;
                            font-size: 15px;
							color: #92b513;
							font-weight: normal;
                        }

                        .listingcontent .list-col .list-details .det-top span.list-price {
                            font-size: 17px;
                            width: 35%;
                            text-align: right;
                            padding: 0;
                        }

						.lprice {
						font-size: 17px;
					}

                    .listingcontent .list-col .list-details .det-bot {
                        color: #565555;
                        font-size: 0;
                        line-height: 1;
                        font-weight: 300;
                        text-transform: uppercase;
                        display: block;
                        margin-top: 22px;
                    }

                        .listingcontent .list-col .list-details .det-bot > div {
                            font-size: 12px;
                            position: relative;
                            display: inline-block;
                            width: 33.33%;
                        }
                        .listingcontent .list-col .list-details .det-bot > div.photogallery {
                            min-height: 50px;
                        }

                            .listingcontent .list-col .list-details .det-bot > div span {
                               display: inline-block;
                               height: 18px;
                               margin-right: 5px;
                            }

                                .listingcontent .list-col .list-details .det-bot > div.beds span {
                                    width: 26px;
                                    background: url(images/listings-icon-bed.png)
                                }

                                .listingcontent .list-col .list-details .det-bot > div.baths {
                                    text-align: center;
                                }

                                    .listingcontent .list-col .list-details .det-bot > div.baths span {
                                        width: 19px;
                                        background: url(images/listings-icon-bath.png)
                                    }

                                .listingcontent .list-col .list-details .det-bot > div.sqft {
                                    text-align: right;
                                }

                                    .listingcontent .list-col .list-details .det-bot > div.sqft span {
                                        width: 15px;
                                        background: url(images/listings-icon-sq.png)
                                    }

                .listingcontent .listings-list .list-col a.view-det {
                    	width: 100%;
						display: block;
						background: #A3A3A3;
						height: 31px;
						line-height: 31px;
						font-size: 14px;
						font-weight: 400;
						letter-spacing: 3px;
						margin: 15px 0 20px;
						color: #fff !important;
						text-decoration: none;
						text-transform: uppercase;
						padding: 0 0 0 10px;
						text-align: center;
                }

				span.listnumber {
					font-size: 12px;
					text-align: center;
					width: 100%;
					display: block;
					color: #999;
                    /*display: none;*/
				}

                    .listingcontent .listings-list .list-col a.view-det:hover {
                        text-decoration: none !important;
                    }

                .listingcontent .listings-list .list-col .list-courtesy {
                    /*color: #666;
                    font-size: 14px;
                    font-weight: 700;
                    text-align: center;
                    display: block;
                    letter-spacing: 1.5px;
                    line-height: 17px;*/
					color: #999;
					font-size: 12px;
					font-weight: 700;
					text-align: center;
					display: block;
					letter-spacing: 1.5px;
					line-height: 17px;
					padding: 0 10px;
                }

    .listingcontent .listings-page {
        display: block;
        text-align: right;
        font-size: 18px;
        color: #5c5c5c;
        font-family: 'Lato', sans-serif;
        font-weight: 300;
    }

        .listingcontent .listings-page a {
            display: inline-block;
            font-size: 14px;
            color: #666465 !important;
            text-decoration: none;
        }

        .listingcontent .listings-page span {
            color: #666;
            font-weight: 400;
        }

            .listingcontent .listings-page a:hover {
                text-decoration: none !important;
            }

            .listingcontent .listings-page a.page-prev {
                margin-right: 10px;
            }

            .listingcontent .listings-page a.page-next {
                margin-left: 10px;
            }

			.listingcontent .btn-group.bootstrap-select.show-tick.wide {
			width: 25.55%;
			margin: 0 18px 0 0;
		}

		.listings-search select option {
    color: #000;
}

.sidebar .ai-default-cf7wrap input[type="text"], .sidebar .ai-default-cf7wrap input[type="tel"],
.sidebar .ai-default-cf7wrap input[type="email"], .sidebar .ai-default-cf7wrap select, .sidebar .ai-default-cf7wrap textarea {
    margin: 2px 0;
}

.sidebar .ai-contact-wrap input[type="submit"], .sidebar .ai-contact-wrap input.wpcf7-submit {
    margin-top: 0;
}

.page-id-9892 #content-sidebar .sidebar,
.page-id-9898 #content-sidebar .sidebar,
.page-id-9902 #content-sidebar .sidebar,
.page-id-9907 #content-sidebar .sidebar,
.page-id-9911 #content-sidebar .sidebar,
.page-id-9915 #content-sidebar .sidebar,
.page-id-9919 #content-sidebar .sidebar,
.page-id-9894 #content-sidebar .sidebar,
.page-id-9900 #content-sidebar .sidebar,
.page-id-9905 #content-sidebar .sidebar,
.page-id-9909 #content-sidebar .sidebar,
.page-id-9913 #content-sidebar .sidebar,
.page-id-9917 #content-sidebar .sidebar,
.page-id-9921 #content-sidebar .sidebar,
.page-id-9923 #content-sidebar .sidebar{
    display: none;
}
.page-id-9892 #content-sidebar #content,
.page-id-9898 #content-sidebar #content,
.page-id-9902 #content-sidebar #content,
.page-id-9907 #content-sidebar #content,
.page-id-9911 #content-sidebar #content,
.page-id-9915 #content-sidebar #content,
.page-id-9919 #content-sidebar #content,
.page-id-9894 #content-sidebar #content,
.page-id-9900 #content-sidebar #content,
.page-id-9905 #content-sidebar #content,
.page-id-9909 #content-sidebar #content,
.page-id-9913 #content-sidebar #content,
.page-id-9917 #content-sidebar #content,
.page-id-9921 #content-sidebar #content,
.page-id-9923 #content-sidebar #content{
    width: 100%;
}

.sbfp_btn_list {
    display: none;
}
.page-id-103 .sbfp_btn_list,
.page-id-105 .sbfp_btn_list,
.page-id-107 .sbfp_btn_list,
.page-id-109 .sbfp_btn_list,
.page-id-111 .sbfp_btn_list,
.page-id-113 .sbfp_btn_list,
.page-id-115 .sbfp_btn_list,
.page-id-104 .sbfp_btn_list,
.page-id-106 .sbfp_btn_list,
.page-id-108 .sbfp_btn_list,
.page-id-110 .sbfp_btn_list,
.page-id-112 .sbfp_btn_list,
.page-id-114 .sbfp_btn_list,
.page-id-117 .sbfp_btn_list,
.page-id-116 .sbfp_btn_list {
    display: block;
}
    .page-id-103 a.sbfp_id_103.sbfp_btn,
    .page-id-105 a.sbfp_id_105.sbfp_btn,
    .page-id-107 a.sbfp_id_107.sbfp_btn,
    .page-id-109 a.sbfp_id_109.sbfp_btn,
    .page-id-111 a.sbfp_id_111.sbfp_btn,
    .page-id-113 a.sbfp_id_113.sbfp_btn,
    .page-id-115 a.sbfp_id_115.sbfp_btn,
    .page-id-104 a.sbfp_id_104.sbfp_btn,
    .page-id-106 a.sbfp_id_106.sbfp_btn,
    .page-id-108 a.sbfp_id_108.sbfp_btn,
    .page-id-110 a.sbfp_id_110.sbfp_btn,
    .page-id-112 a.sbfp_id_112.sbfp_btn,
    .page-id-114 a.sbfp_id_114.sbfp_btn,
    .page-id-117 a.sbfp_id_117.sbfp_btn,
    .page-id-116 a.sbfp_id_116.sbfp_btn{
        display: block;
    }

    a.sbfp_btn {
        display: none;
        background: #cf540c;
        border: 1px solid #cf540c;
        font: 700 12px/1 'Montserrat', Sans-serif;
        text-transform: uppercase;
        color: #fff !important;
        padding: 10px;
        width: 100%;
        max-width: 360px;
        text-align: center !important;
        margin: 0 auto 7px;
    }

.page-template-template-left-sidebar-sellers .sold_reports {
    background: #ffffff;
    padding: 13px 20.5px 0 !important;
    width: 262px;
    border: 1px solid #93b513;
}

.page-template-template-left-sidebar-sellers .sold_reports h2 {
    color: #93b513;
}

.page-id-85 #content .entry .col-md-3 {
    text-align: center;
}

#content #attachment_1094.alignleft {
    margin-top: 0;
}
#content .entry div[id*="attachment_"].alignleft, #content .entry div[id*="attachment_"].alignright {
    margin-top: 0;
}

.float-sb .ip_sold .use-floating-validation-tip span.wpcf7-not-valid-tip {
    width: 95%;
    left: 2.5%;
    top: 2px;
    line-height: 1;
}

.page-id-260 .aios-mortgage-calculator-standalone-reset + br {
    display: none;
}

.page-id-313 div[style*="position: fixed"].float-sb form + .ip_cta_list_2, .page-id-313 div[style*="position: absolute"].float-sb form + .ip_cta_list_2 {
    opacity: 0;
}

.page-id-78 .use-floating-validation-tip .aidefcf-cl2 span.wpcf7-not-valid-tip  {
    width: 91%;
    left: 5%;
}

.page-template-template-recommendations #content blockquote {
    width: 100%;
    margin: 0;
}

.testi-img img{
    background-size: cover !important;
    background-position: center center !important;
 }

 #content strong,  #content b{
 	font-weight: 400!important;
 }

#content h2,
#content h3,
#content h4,
.aidefcf-title span,
.aidefcf-subtitle span {
    font-weight: 400 !important;
}

/*custom 404*/
.c404-wrap {

}
    #content .c404-wrap h1.entry-title {
        display: block;
        margin-top: 0;
    }
    .search-results h1.entry-title.new-entry-title {
        display: none;
    }
    .search-results #content .archive-title {
        display: block;
    }
    .c404-wrap label.screen-reader-text {
        display: none;
    }
    .search-results .c404-wrap label.screen-reader-text {
        display: inline;
    }

    .c404-wrap input#s {
        border: 1px solid #d2d1d1;
        border-radius: 5px;
        height: 24px;
        display: inline-block;
        vertical-align: top;
        padding-left: 5px;
        padding-right: 5px;
        min-width: 230px;
        font-size: 11px;
        color: #a4a3a3;
    }
    .c404-wrap input#searchsubmit {
        width: 26px;
        height: 24px;
        font-size: 9px;
        padding: 0;
        font-weight: 700;
        border-radius: 5px;
        border: none;
        color: #fff;
        display: inline-block;
        vertical-align: top;
        /*background: #848282;
        background: -moz-linear-gradient(top, #848282 0%, #181616 100%);
        background: -webkit-linear-gradient(top, #848282 0%,#181616 100%);
        background: linear-gradient(to bottom, #848282 0%,#181616 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#848282', endColorstr='#181616',GradientType=0 );*/
        background: url(images/btn-search-bg.jpg) center/cover no-repeat;
        font-size: 0;
    }

.blog-holder{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

.cntslide {
    float: right;
    /* margin-right: 64px; */
    /* width: 16%; */
}

#IDX-moreinfoContactForm div#IDX-firstName-group,
#IDX-moreinfoContactForm div#IDX-email-group {
    padding-left: 0;
    padding-right: 3px;
}

#IDX-moreinfoContactForm div#IDX-lastName-group {
    padding-right: 0;
    padding-left: 3px;
}

#IDX-moreinfoContactForm input {
    width: 100%;
}

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

.hp-quick-search input.form-control {
    padding-left: 12px;
}

.ip-quick-search .bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
}

div#IDX-moreinfoformResponse:before {
    content: '';
    clear: both;
    display: block;
}

#content #IDX-main ul {
    margin: 0;
}

#content .IDX-navbar-nav a {
    color: #fff;
}

div#IDX-mapSearchFields #IDX-mapSearch,
div#IDX-mapSearchFields #IDX-userLocation,
div#IDX-mapSearchFields #IDX-mapTab-criteria {
    background: #fff;
    border: 1px solid #93b513;
    margin-right: 5px;
}

.float-sb[style*="position: relative;"] {
    overflow-y: visible!important;
}
.sp_fp_wrap[style*="position: fixed;"] {
    z-index: 3;
    background: #fff;
}
/*.page-id-136 #custom_html-39 .sp_fp_wrap,
.page-id-136 #custom_html-41 .sp_fp_wrap {
    position: relative!important;
    top: 0!important;
}*/

.page-template-template-listings-new-idx .ui-widget-overlay {
    z-index: 1012!important;
}
.page-id-9339 #find_my_home_worth_form_container div.wpcf7-response-output {
    text-align: center;
}

div#IDX-detailsMap #IDX-map {
    max-width: 100%;
}
input#IDX-amin_numrooms,
input#IDX-amax_numrooms,
input#IDX-amin_tax,
input#IDX-amax_tax {
 min-height: 38px !important;
}
input#IDX-aw_remarksConcat{
     min-height: 38px !important;
    width: 100%;
}
#rsCity option {
    color: #000;
}
.qs-arrow option {
    color: #000;
}
.ip_qs .bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}
.ip_qs .bootstrap-select.btn-group.show-tick .dropdown-menu li a.opt span.text {
    padding-right: 20px;
}

.ip_qs .dropdown-menu>li>a,
.ip_qs .bootstrap-select.btn-group .dropdown-menu li a.opt {
    padding-left: 10px;
    padding-right: 10px;
}

#content a.school-btn-1,
#content a.school-btn-2 {
    text-align: center;
    color: #fff;
}

.shortcode.impress-property-showcase.impress-row .impress-showcase-property img {
    margin-bottom: 15px;
}

.ai-default-cf7wrap select {
    background: #fff;
}
.sidebar div.wpcf7-response-output {
    text-align: center;
}


/* TEAM PAGE */
.page-id-85 #content .team_info span.icon {
    display: inline-block;
    margin-right: 10px;
}
.dropdown-backdrop {
    display:none;
}

#content .leaflet-touch .leaflet-bar a {
    text-align: center;
}

#content .post-40121 .entry .shortcode.impress-property-showcase.impress-row .impress-showcase-property img {
    object-fit: cover;
    object-position: center;
}

#content .post-40121 .entry .impress-street {
    width: 100%;
}

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

.page-9394-img {
    float: right;
    padding-right: 20px;
}
#IDX-map{
    width:100% !important;
}
#content iframe[src*="https://www.youtube.com/"] {
    display: block;
    margin: 1.2em auto;
}
.page-id-278 .float-sb,
.page-id-266 .float-sb {
    position: relative!important;
    top: 0!important;
}
.page-id-322 table th[scope="col"] {
    text-align: center;
}
.amh-navigation.amh-nav-1 .amh-menu li a {
    font-family: 'Montserrat', Helvetica, Georgia, Sans-serif;
}


.ip-banner{
    position: relative;
    width: 100%;
    display: block !important;
}
    .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;
    }

.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}

header.main-header.show-fixed .cntct-trnslt .placehold {
    color: #cf540c;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li ul {
    background: #cf540c;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li ul a {
    color: #fff;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li:hover > a, .aios-mobile-header-wrapper .amh-navigation .amh-menu li.open > a {
    background: #93b513;
}

.preformance-bg span {
	width: 100%;
}

#siteLinks a img{
    width: 50%;
}
#siteLinks a.a2a_dd.addtoany_share_save.addtoany_share {
    height: 1.3em !important;
}

div#custom-share-icon-idx span {
    position: relative;
    top: -4px;
}


.cta-item a .cta-desc {
    color: #fff;
}

/* .cta-item {
    margin-bottom: 18px;
    width: calc(100% / 4 - 10px);
    text-align: center;
} */

.cta-item a .cta-desc h2 {
    font-size: 14px;
    margin-bottom: 10px;
}

.cta-item a .cta-desc p {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.4;
}

.cta-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.performance-area {
    padding-top: 50px;
}

.cta-item {
    width: 100%;
    text-align: left;
        margin-bottom: 18px;
}

.post-page-sold-reports-bergen-county .ihf-listing-search-results{
    display: none;
}

.page-template-template-listings-new-idxdetails-php #IDX-propertyRemarks{
    display: block !important;
}