/*
Theme Name: dollylenz.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.7
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

*/


:root {
    --body-font:        'Roboto', sans-serif;
    --primary-font:     'Montserrat', sans-serif;
    --secondary-font:   'Alegreya Sans', sans-serif;
    --tertiary-font:    'Oswald', sans-serif;
}


:before,
:after{
    pointer-events: none;
}

/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/

/* Header */

header.header {
    position: fixed;
    z-index: 1010;
    width: 100%;
    left: 0;
    padding: 0 110px 0 55px;
    font-size: 0;
    pointer-events: none;
}

.header .h-left{
    width: 20%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: 1px;
}

    .header a.h-logo {
        display: inline-block;
        vertical-align: middle;
        pointer-events: auto;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(-50%);

        transition: 400ms ease;
        -webkit-transition: 400ms ease;
    }

    .header.fixed a.h-logo{
        visibility: hidden;
        opacity: 0;
        top: -10px;
    }

.header a.h-logo span {
        display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 2px 0 0 -0.07em;
    font-weight: 300;
}

.header .h-right {
    width: 80%;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

    .header .nav-wrap {
        display: inline-block;
        vertical-align: top;
        padding-right: 15px;
        padding: 40px 15px;
        position: relative;

        transition: 400ms ease;
        -webkit-transition: 400ms ease;
    }

        .header.fixed .nav-wrap{
            padding: 20px 15px;
        }

        .header .nav-wrap:before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: calc(100% + 110px);
            height: 100%;
            background-color: #1d1d1d;
            opacity: 0;

            transition: 400ms ease;
            -webkit-transition: 400ms ease;
        }

        .header.fixed .nav-wrap:before{
            opacity: 1;
        }

        header.header ul#nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            pointer-events: auto;
        }

        header.header ul#nav > li {
            position: relative;
        }

        header.header ul#nav a {
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            letter-spacing: .160em;
            line-height: 1;
            font-family: var(--secondary-font);
            padding: 20px 15px;
            display: block;
            transition: 400ms ease;
            -webkit-transition: 400ms ease;
        }

        header.header.fixed ul#nav a {
            color: #fff;
        }


        header.header ul#nav > li:hover > a{
            color: #800020;
        }

        header.header ul#nav .menu-item-description {
            display: none;
        }


.slide-menu-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 110px;
    height: 100%;
    padding-top: 40px;
    z-index: 2030;

    transition: 400ms ease;
    -webkit-transition: 400ms ease;
}

    .fixed .slide-menu-side {
        padding-top: 20px;
    }

    .slide-menu-side .bmenu-btn {
        display: block;
        position: relative;
        width: 25px;
        border: 0;
        height: 13px;
        outline: none;
        margin: 20px auto 0;
        text-decoration: none;
        background-color: transparent;
        font-family: var(--secondary-font);
        pointer-events: auto;
    }


        .slide-menu-side .bmenu-btn:before,
        .slide-menu-side .bmenu-btn:after{
            display: block;
            position: absolute;
            font-size: 14px;
            color: #fffefe;
            left: 50%;
            top: 0;
            line-height: 1;
            letter-spacing: .500em;
            text-transform: uppercase;
            font-weight: 700;

            transform: rotate(90deg) translate(40px , -50%);
            -webkit-transition: all 0.35s ease-in-out;
            -moz-transition: all 0.35s ease-in-out;
            -o-transition: all 0.35s ease-in-out;
            transition: all 0.35s ease-in-out;
            transform-origin: 0 0;
        }

            .slide-menu-side .bmenu-btn:hover:before,
            .slide-menu-side .bmenu-btn:hover:after{
                color: #800020;
            }

            .slide-menu-side .bmenu-btn:before {
                opacity: 1;
                pointer-events: auto;
                content: 'Menu';}

            .slide-menu-side .bmenu-btn.active:before,
            .fixed .slide-menu-side .bmenu-btn:before {
                pointer-events: none;
                opacity: 0;}

            .slide-menu-side .bmenu-btn:after {
                opacity: 0;
                pointer-events: none;
                content: 'Close';}

            .slide-menu-side .bmenu-btn.active:after {
                pointer-events: auto;
                opacity: 1;}

        .slide-menu-side .bmenu-btn span {
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            transition-timing-function: cubic-bezier(.55,.055,.675,.19);
            transition-duration: .22s;
        }

            .slide-menu-side .bmenu-btn.active span {
                transition-delay: .12s;
                transition-timing-function: cubic-bezier(.215,.61,.355,1);
                transform: rotate(225deg);
                width: 15px;
                left: 5px;
            }

            .slide-menu-side .bmenu-btn span::before,
            .slide-menu-side .bmenu-btn span::after {
                content: '';
                display: block;
                position: absolute;
                width: 100%;
                height: 1px;
                background: #fff;

                transition: 300ms ease;
                -webkit-transition: 300ms ease;
            }

            .slide-menu-side .bmenu-btn:hover span::before,
            .slide-menu-side .bmenu-btn:hover span::after{
                background-color: #800020;
            }

            .slide-menu-side .bmenu-btn span::before {top: 0;}
            .slide-menu-side .bmenu-btn.active span::before {top: 5px;}
            .slide-menu-side .bmenu-btn span::after {bottom: 0;}
            .slide-menu-side .bmenu-btn.active span::after {
                bottom: 7px;
                transform: rotate(-90deg);
            }


#slide-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1010;
    font-size: 0;
    pointer-events: none;
    top: 0;
    right: -100%;
    background: rgba(24, 24, 24, .20);
    opacity: 0;
    visibility: hidden;

    transition: 800ms ease-in-out;
    -webkit-transition: 800ms ease-in-out;
}

    #slide-menu.active{
        opacity: 1;
        right: 0;
        visibility: visible;
    }

    #slide-menu .slide-menu-main {
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #181818;
        opacity: 0;
        pointer-events: auto;
        padding: 60px 0;
        z-index: 1;

        transition: 800ms ease-in-out;
        -webkit-transition: 800ms ease-in-out;
    }

    .slide-menu-main:before {
        z-index: -1;
        width: 605px;
        height: 100%;
        max-width: 80%;
        background-image: url(images/newhomepage/sliding-menu-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right top;
        opacity: .03;
        content: '';
        top: 0;
        right: 0;
        position: absolute;
    }

    #slide-menu.active .slide-menu-main{
        opacity: 1;
        right: 0;

        transition-delay: 300ms;
    }

        #slide-menu .side-menu-nav {
            display: block;
            position: relative;
        }

    .slide-menu-content{
        position: relative;
        display: block;
        z-index: 1;
        height: 100%;
    }

        .slide-menu-content > .container {
            height: 100%;
        }

        .slide-menu-content-wrap {
            display: flex;
            height: 100%;
        }

        .slide-menu-content-wrap .slide-menu-main-left {
            height: 100%;
            width: 50%;
        }

        .slide-menu-content-wrap .slide-menu-main-left > div,
        .slide-menu-content-wrap .slide-menu-main-left > div > div{
            height: 100%;
        }

            ul#fix-nav {
                display: flex;
                flex-direction: column;
                height: 100%;
                justify-content: space-between;
            }

            ul#fix-nav > li {
                display: block;
                position: relative;
            }

                ul#fix-nav a {
                    font-size: 54px;
                    color: #fff;
                    line-height: 1;
                    letter-spacing: 0;
                    text-transform: capitalize;
                    font-family: var(--secondary-font);
                    display: block;
                    padding-left: 30px;
                    position: relative;

                    transition: 400ms ease;
                    -webkit-transition: 400ms ease;
                }

                ul#fix-nav a:hover{
                    color: #800020;
                }

                ul#fix-nav a span.menu-item-description {
                    position: absolute;
                    left: 0;
                    top: 0;
                    color: #707070;
                    font-weight: 300;
                    font-family: var(--tertiary-font);
                    font-size: 10px;
                    text-transform: uppercase;
                    letter-spacing: .200em;
                    writing-mode: vertical-rl;
                    text-orientation: mixed;
                    top: 50%;
                    transform: translateY(-50%);
                }

        .slide-menu-main-right {
            width: 50%;
            height: 100%;
        }

            .side-menu-details {
                height: 100%;
                flex-direction: column;
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
            }

            .side-menu-details .side-menu-logo{}

            .side-menu-details .side-menu-logo img{
                margin-left: auto;
                max-width: 216px;
            }

            .appointment-wrap{
                max-width: 440px;
                display: flex;
                justify-content: space-between;
                /*align-items: flex-end;*/
                width: 100%;
                margin-left: auto;
            }

            .appointment-wrap ul {
                font-family: inherit;
                font-weight: 300;
                color: #c2c2c2;
                font-size: 13px;
                text-transform: capitalize;
                letter-spacing: .070em;
                line-height: 24px;
            }

            .appointment-wrap ul a{
                display: block;
                text-transform: initial;

                transition: 400ms ease;
                -webkit-transition: 400ms ease;
            }

            .appointment-wrap ul a:hover{
                color: #800020;
            }

            .appointment-wrap ul:not(:last-child) {
                margin-bottom: 20px;
            }

            .appointment-wrap ul li span{
                display: block;
                margin-bottom: 15px;
            }

            .appointment-wrap a.appointment-link {
                font-family: inherit;
                font-weight: 300;
                color: #c2c2c2;
                font-size: 13px;
                text-transform: capitalize;
                letter-spacing: .070em;
                line-height: 24px;
                margin-top: 30px;
                display: block;

                transition: 400ms ease;
                -webkit-transition: 400ms ease;
            }

            .appointment-wrap a.appointment-link:hover{
                color: #800020;
            }

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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 200px;
    text-align: center;
    margin-left: -100px;
    left: 50%;
    line-height: 1;
    padding-top: 0;

    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;

    transition: 600ms ease;
    -webkit-transition: 600ms ease;
    -moz-transition: 600ms ease;
    -o-transition: 600ms ease;
}

    .fixed #nav .sub-menu{
        padding-top: 20px;
    }

    #nav li:hover > .sub-menu{
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

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

    header ul#nav .sub-menu a {
        padding: 10px;
        background: #1d1d1d;
        display: block;
    }

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

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

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


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

/* Global */

body{
    font-family: var(--body-font);
    font-size: 14px;
    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; */
}

/* General Fixes */
    .grecaptcha-badge {
        z-index: 1020;
        bottom: 100px !important;
    }
/* End */

.hide-on-mobile{display: block;}
.show-on-mobile{display: none;}

.cm-container.container {
    width: 100%;
    padding: 0 45px;
}


[placeholder]:focus::-webkit-input-placeholder {
    transition: all 0.2s linear;
    transform: translate(10px, 0);
    opacity: 0;
    color:inherit;
}

input[type=text]:focus::-webkit-input-placeholder {
  color:inherit;
}

textarea {
  overflow-x:hidden;
}

a:hover,a:visited,select,a:link,a:visited{
  border:none;
  outline:none;
}


/* General Style */

.site-title {
    display: block;
    position: relative;
    margin-bottom: 80px;
}

    .site-title-inner {
        display: inline-block;
        vertical-align: middle;
        padding-top: 20px;
        padding-right: 20px;
        min-width: 340px;
        border-top: 1px solid rgba(255, 255, 255, .20);
    }

    .site-title.white-bg .site-title-inner {
        border-top: 1px solid rgba(0, 0, 0, .20);
    }

    .site-title span {
        color: #797575;
        font-size: 18px;
        font-weight: 300;
        letter-spacing: .140em;
        line-height: 1;
        margin-bottom: 20px;
        display: block;
        text-transform: uppercase;
        font-family: var(--tertiary-font);
    }

    .site-title h1,
    .site-title h2,
    #content .site-title h2{
        font-size: 57px;
        color: #fff;
        font-weight: 700;
        letter-spacing: .060em;
        line-height: 1;
        text-transform: uppercase;
        font-family: var(--secondary-font);
    }

    /* .hp-wc .site-title h1 {
        text-transform: capitalize;
    } */

    .site-title.white-bg h2,
    #content .site-title.white-bg h2{
        color: #800020;
    }

a.site-btn,
div.site-btn,
button.site-btn {
    display: inline-block;
    padding: 25px 0;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .380em;
    font-weight: 700;
    position: relative;
    font-family: var(--secondary-font);

    transition: 400ms ease;
    -webkit-transition: 400ms ease;
}

    .site-btn.red-line{
        color: #fff;
    }

    .site-btn.red-line:hover{
        color: #800020;
    }

    .site-btn.red-line:before,
    .site-btn.red-line:after {
        background: #800020;
        height: 2px;
        content: '';

        transition: 400ms ease;
        -webkit-transition: 400ms ease;

        display: inline-block;
        vertical-align: middle;
    }

    .site-btn.red-line:before{
        width: 160px;
        margin-right: 20px;
        right: 100%;}
    .site-btn.red-line:after {
        width: 0;
        margin-left: 0;
        left: 100%}

    .site-btn.red-line:hover:before{
        margin-right: 0;
        width: 0;}
    .site-btn.red-line:hover:after{
        margin-left: 20px;
        width: 160px;}


/* Homepage Styles */

.hp-upperfold {
    background: #1d1d1d;
    display: block;
    overflow: hidden;
}

section.hp-ss {
    padding-right: 110px;
    position: relative;
    display: block;
    font-size: 0;
    z-index: 2;
}

    .ss-wrap{
        display: block;
        position: relative;
        z-index: 1;
    }

        .ss-wrap:before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            opacity: .20;
            z-index: 1;
            pointer-events: none;
        }

    .ss-smi {
        position: absolute;
        bottom: 0;
        z-index: 1;
        width: 100%;
        z-index: 5;
        pointer-events: none;
    }

        .ss-smi .ss-smi-wrap {
            display: inline-block;
            pointer-events: auto;
        }

        .ss-smi ul.smi-links,
        #content .ss-smi ul.smi-links {
            color: #fff;
            display: block;
            margin: 0;
        }

        .ss-smi ul.smi-links li{
            display: block;
            margin-bottom: 30px;
        }

        .ss-smi ul.smi-links a{
            font-size: 22px;
            color: #fff;
            display: block;
            line-height: 1;

            transition: 400ms ease;
            -webkit-transition: 400ms ease;
        }

        .ss-smi ul.smi-links a:hover{
            color: #800020;
        }

        .ss-smi .smi-text {
            display: block;
            position: relative;
            margin-bottom: 30px;
        }

        .ss-smi .smi-text a {
            font-size: 15px;
            color: #fff;
            font-family: var(--primary-font);
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1;
            letter-spacing: .160em;
            transform: rotate(270deg);
            position: absolute;
            bottom: 0;
            left: 22px;
            display: block;
            width: 145px;
            transform-origin: 0 100%;

            transition: 400ms ease;
            -webkit-transition: 400ms ease;
            opacity: 1;
        }

            .ss-smi .smi-text a:hover{
                color: #800020;
            }

            .ss-smi .smi-text a span{
                display: inline-block;
                vertical-align: middle;
                margin-right: 10px;
            }

            .ss-smi .smi-text a em,
            #content .ss-smi .smi-text a em {
                font-size: 30px;
                font-weight: 600;
                font-style: normal;
                display: inline-block;
                vertical-align: middle;
            }

section.hp-wc {
    padding-top: 55px;
    position: relative;
    display: block;
    font-size: 0;
    z-index: 1;
}

    section.hp-wc:before {
        position: absolute;
        top: -220px;
        right: 0;
        width: calc(100% - 100px);
        content: '';
        z-index: -1;
        height: 100%;
        max-height: 510px;
        background-image: url(images/newhomepage/wc-photo.jpg);
        background-repeat: no-repeat;
        background-position: top center;
        opacity: .050;
        filter: grayscale(1);
        background-size: cover;
    }

    .hp-wc .row {
        display: flex;
        align-items: flex-end;
    }

    .hp-wc .row > div{
        padding-bottom: 160px;
        position: relative;
    }

.wc-photo {
    position: relative;
    margin-left: -90px;
}


.wc-content {
    display: block;
    position: relative;
    padding-bottom: 70px;
}

.wc-content .site-title span {
    color: #fff;
}

    .wc-content .site-title {
        margin-bottom: 100px;
    }

    .wc-content .wc-numbers {
        margin-bottom: 50px;
        justify-content: space-between;
        align-items: center;
        display: flex;
        max-width: 730px;
        font-family: var(--primary-font);
    }

        .wc-content .wc-numbers .wc-no-col {
            white-space: nowrap;
            font-family: var(--primary-font);
        }

        .wc-numbers span.main-no,
        .wc-numbers span.add-icon,
        .wc-numbers .wc-no-label{
            display: inline-block;
            vertical-align: middle;
        }

        .wc-numbers span.main-no {
            font-size: 98px;
            font-weight: 200;
            color: #fff;
            letter-spacing: .060em;
            line-height: 1;
        }

        .wc-content span.add-icon {
            font-size: 98px;
            font-weight: 200;
            color: #fff;
            letter-spacing: .060em;
            line-height: 1;
            color: #d41446;
        }

        .wc-numbers .wc-no-label {
            font-weight: 300;
            font-size: 16px;
            color: #fff;
            letter-spacing: .060em;
            line-height: 27px;
            text-transform: uppercase;
            font-family: var(--tertiary-font);
        }

    .wc-content .wc-text {
        color: #c8c8c8;
        font-size: 16px;
        font-weight: 400;
        line-height: 33px;
        font-family: var(--body-font);
        letter-spacing: .040em;
    }

        .wc-content .wc-text strong{
            color: #fff;
            text-transform: capitalize;
        }

    .wc-right .wc-btn {
        display: block;
        right: 0;
        bottom: 60px;
        text-align: right;
        position: absolute;
    }

        .wc-btn .site-btn {
            padding-right: 0;
        }

section.hp-exvlisting {
    display: block;
    position: relative;
    /*padding-bottom: 120px;*/
    padding-bottom: 100px;
}

.lenz-lux-wrap {
    display: flex;
    position: relative;
    height: 800px;
    overflow: visible !important
}

    .lenz-lux-wrap .lenz-lux-left {
        width: 42%;
        padding: 100px 15px 0;
        background: #fff;
        text-align: right;
        position: relative;
        height: 100%;
    }

        .lenz-lux-wrap .lenz-lux-left:before {
            position: absolute;
            bottom: 100%;
            width: 100%;
            height: 160px;
            content: '';
            right: 0;
            background-image: url(images/newhomepage/wc-photo1.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            opacity: .05;
            filter: grayscale(1);
        }

        .lenz-lux-wrap .lenz-text {
            display: block;
            text-align: right;
        }

        .lenz-lux-wrap .lenz-text h2 {
            font-size: 240px;
            line-height: .8;
            color: #800020;
            font-weight: 300;
            letter-spacing: -.05em;
            text-transform: uppercase;
            font-family: var(--secondary-font);
            display: inline-block;
        }

    .lenz-lux-wrap .lenz-lux-right{
        width: 58%;
        background: #1d1d1d;
        height: 100%;
        padding: 100px 15px 0;
    }

        .lenz-lux-wrap .lux-text {
            display: block;
            text-align: left;
        }

        .lenz-lux-wrap .lux-text span {
            font-size: 52px;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: .060em;
            line-height: 1;
            font-weight: 700;
            margin-bottom: -15px;
            display: block;
        }

        .lenz-lux-wrap .lux-text h2 {
            font-size: 155px;
            font-weight: 700;
            letter-spacing: .010em;
            line-height: 1;
            text-transform: uppercase;
            background-image: url(images/newhomepage/luxury-text-img.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: bottom;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


.exvlisting-wrap {
    position: relative;
    z-index: 5;
    margin-top: -365px;
}

    .exvlisting-title {
        display: flex;
        align-items: center;
        margin-bottom: 90px;
    }

    .exvlisting-title .exvlisting-title-left {
        width: 42%;
        display: block;
        padding: 0 15px 0 45px;
    }

        .exvlisting-title .site-title {
            max-width: 545px;
            margin-left: auto;
            margin-bottom: 0;
        }

    .exvlisting-title .exvlisting-title-right {
        padding: 0 15px;
        width: 58%;
    }

        .exvlisting-title .exvlisting-title-desc {
            font-size: 16px;
            color: #767676;
            line-height: 33px;
            letter-spacing: .040em;
            /*max-width: 520px;*/
            max-width: 100%;
        }


section.hp-notable-sales {
    padding-bottom: 140px;
    display: block;
}

.nsales-title-wrap {
    position: relative;
    z-index: 5;
}

    .nsales-title-wrap{
        display: flex;
        align-items: center;
        padding: 80px 0;
        position: relative;
        z-index: 1;
        overflow: initial !important;
    }

    .nsales-title-wrap .nsales-title-left {
        width: 42%;
        display: block;
        padding: 0 15px 0 45px;
        position: relative;
    }

    .nsales-title-wrap .nsales-title-left .site-title span{
        color: #797575;
    }

    .nsales-title-wrap .nsales-title-left .site-title  h2 {
        color: #959494;
    }



        .nsales-title-wrap .nsales-title-left:before,
        .nsales-title-wrap .nsales-title-left:after {
            content: '';
            position: absolute;
            top: -80px;
            left: 0;
            width: 100%;
            height: 540px;
        }

        .nsales-title-wrap .nsales-title-left:before{
            background: #1d1d1d;
            z-index: -2;
        }

        .nsales-title-wrap .nsales-title-left:after{
            background-image: url(images/newhomepage/notable-sale-bg.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            z-index: -1;
            opacity: .05;
            filter: grayscale(1);
        }

        .nsales-title-wrap .site-title {
            max-width: 545px;
            margin-left: auto;
            margin-bottom: 0;
        }

    .nsales-title-wrap .nsales-title-right {
        padding: 15px;
        width: 58%;
    }

        .nsales-title-wrap .nsales-title-desc {
            font-size: 16px;
            color: #1d1d1d;
            line-height: 33px;
            letter-spacing: .040em;
            /*max-width: 520px;*/
            max-width: 100%;
        }


/* HP PRoperty Listings */

.exvlisting-list,
.nsalelisting-list{
    display: block;
    font-size: 0;
    margin: 0 -6px 20px;
    z-index: 5;
    position: relative;
}

    .proplisting-list:not(.slick-initialized) .proplisting-item:nth-child(n + 4){
        display: none;
    }

    .proplisting-item{
        display: inline-block;
        vertical-align: middle;
        width: calc(100% / 3);
        padding: 0 6px;
    }

    .proplisting-item a{
        display: block;
        position: relative;
        cursor: pointer;
    }

    .proplisting-item .img-wrap {
        display: block;
        position: relative;
        overflow: hidden;
    }

        .proplisting-item .img-wrap canvas {
            width: 100%;
            display: block;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #800020;
        }

        .proplisting-item .img-wrap .dtls-hvr {
            position: absolute;
            display: flex;
            bottom: -50%;
            opacity: 0;
            width: 100%;
            left: 0;
            padding: 50px 25px 0;
            height: 100%;
            background-color: rgba(128, 0, 32, .90);
            color: #fff;

            transition : 600ms ease;
            -webkit-transition: 600ms ease;
        }

            .proplisting-item a:hover .img-wrap .dtls-hvr{
                opacity: 1;
                bottom: 0;
            }

            .proplisting-item .dtls-hvr-left{
                width: 35%;
                font-family: var(--primary-font);
            }

                .proplisting-item .dtls-hvr-left span {
                    font-size: 16px;
                    font-weight: 600;
                    letter-spacing: .090em;
                    text-transform: uppercase;
                }

            .proplisting-item .dtls-hvr-right{
                width: 65%;
            }

                .proplisting-item .dtls-hvr-right ul {
                    font-size: 14px;
                    font-weight: 400;
                    margin-bottom: 10px;
                }

                .proplisting-item .dtls-hvr-right ul li{
                    margin-bottom: 5px;
                    display: block;
                }

                .proplisting-item .dtls-hvr-text{
                    font-size: 14px;
                    font-weight: 300;
                    letter-spacing: .020em;
                    line-height: 26px;
                    margin-bottom: 10px;
                }

                .proplisting-item .dtls-hvr .site-btn {
                    padding-left: 0;
                    color: #fff;
                    letter-spacing: .050em;
                    padding: 10px 0;
                }

                .proplisting-item .dtls-hvr .site-btn:after{
                    display: none;
                }

                .proplisting-item .dtls-hvr .site-btn:before {
                    background-color: #fff;
                    width: 80px;
                    height: 1px;
                    right: calc(100% + 20px);
                }


    .proplisting-item .dtls-wrap {
        display: flex;
        padding-top: 35px;

        font-size: 24px;
        font-weight: 500;
        font-family: var(--body-font);
        color: #1d1d1d;
    }

        .proplisting-item .dtls-left{
            width: 38%;
            text-align: center;
            color: #800020;
            font-size: 20px;
        }

        .proplisting-item .dtls-right{
            width: 100%;
            text-align:right;
            line-height: 1.2;
            font-size: 18px;
            letter-spacing: .030em;
            text-transform: uppercase;
            padding-right: 10px;
        }

.exvlisting-btn,
.nsaleslisting-btn {
    text-align: right;
}

    .exvlisting-btn a.site-btn,
    .nsaleslisting-btn a.site-btn {
        color: #000;
    }


section.hp-featured-in {
    background: #1d1d1d;
    padding-top: 75px;
    overflow: hidden;
    display: block;
}


.fin-title-wrap {
    margin-bottom: 40px;
    overflow: initial !important;
}

    .fin-title {
        max-width: 400px;
        margin-bottom: 0;
    }

    .fin-title .site-title span {
        color: #afadad;
       }

        .fin-title .site-title{
            margin: 0;
        }

    .fin-title-desc {
        font-size: 15px;
        color: #c8c8c8;
        line-height: 29px;
        letter-spacing: .050em;
        font-family: inherit;
        padding: 30px 0 0 50px;
    }


.fin-content-wrap {
    display: block;
}
    .fin-content-photo {
        float: right;
        width: calc(((100vw - 1140px) / 2 ) + 100%);
        margin-bottom: -40px;
        position: relative;
        z-index: 4;
        padding-right: 50px;
    }

        .fin-content-photo img {
            max-width: 100%;
            width: 100%;
        }

    .fin-logo {
        padding: 40px 0;
        max-width: 790px;
        margin: 0 auto;

        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

        .fin-logo > div {
            margin: 25px 20px;
        }

        .fin-logo img{
            margin: 0 auto;
        }


.fin-more-dtls {
    background: #fff;
    padding: 120px 0 80px;
    position: relative;
    display: block;
    z-index: 1;
}

    .fin-more-dtls .fin-more-dtls-text{
        max-width: 480px;
        margin-left: auto;
        text-align: right;
        color: #1d1d1d;
        font-size: 18px;
        line-height: 34px;
        letter-spacing: .010em;
        font-weight: 600;
        font-family: var(--primary-font);
    }

    .fin-more-dtls .fin-more-dtls-text span{
        display: block;
    }

    .fin-more-dtls .fin-more-dtls-text span.red-text{
        color: #800020;
    }

    .fin-more-dtls-dolly-text {
        background: #1d1d1d;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 110px;
        padding-left: 25px;
    }

    .fin-more-dtls-dolly-text span {
        font-weight: 500;
        font-size: 13px;
        color: #a0a0a0;
        text-transform: uppercase;
        letter-spacing: .140em;
        line-height: 15px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-family: var(--tertiary-font);
    }



section.hp-video {
    overflow: hidden;
    display: block;
    padding-bottom: 100px;
}

.hp-video-preview {
    display: block;
    position: relative;
    z-index: 1;
}

    .video-preview-list{}

    .video-preview-item {
        display: block;
        position: relative;
    }

        .video-preview-list:not(.slick-initialized) .video-preview-item:not(:first-child){display: none;}

        .video-preview-item canvas{
            opacity: 0;
            width: 100%;
            pointer-events: none;
            visibility: hidden;
            display: block;
            min-height: 375px;
        }

        .video-preview-item video,
        .video-preview-item iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        .video-preview-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1d1d1d;
            z-index: 10;
            pointer-events: none;
            opacity: .5;
            display: none;

            transition: 400ms ease;
            -webkit-transition: 400ms ease;
            -moz-transition: 400ms ease;
            -o-transition: 400ms ease;
        }

        .video-preview-item.vidplaying:before{opacity: 0;}
        .video-preview-item.vidplaying:hover:before{opacity: .5;}

        .video-preview-item .video-preview-play {
            display: flex;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            height: 110px;
            width: 165px;
            z-index: 15;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            display: none;

            transition: 400ms ease;
            -webkit-transition: 400ms ease;
            -moz-transition: 400ms ease;
            -o-transition: 400ms ease;
        }

            .video-preview-item.vidplaying .video-preview-play{opacity: 0;}
            .video-preview-item.vidplaying:hover .video-preview-play{opacity: 1;}

            .video-preview-item .video-preview-play button {
                height: 65px;
                width: 65px;
                border: 5px solid #fff;
                background-color: transparent;
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 25px;
                position: relative;
                border-radius: 100%;
                margin-bottom: 15px;
                outline: none;

                transition: 400ms ease;
                -webkit-transition: 400ms ease;
            }

            .video-preview-item .video-preview-play button:hover{
                color: #800020;
                border-color: #800020;
            }

            .video-preview-item .video-preview-play > span{
                font-size: 15px;
                color: #fff;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: .120em;
                line-height: 1;
                font-family: var(--primary-font);
            }

            .video-preview-item .video-preview-play > span em{
                font-style: normal;
            }

            .video-preview-play button span[class*="pause"]{display: none;}
            .vidplaying .video-preview-play button span[class*="play"]{display: none;}
            .vidplaying .video-preview-play button span[class*="pause"]{display: block;}

.hp-video-thumb {
    margin-top: 10px;
    position: relative;
    z-index: 5;
    display: block;
}

    .video-thumb-list {
        margin: 0 -5px;
        display: block;
        font-size: 0;
    }

    .video-thumb-list .video-thumb-item {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% / 3);
        position: relative;
        padding: 0 5px;
        cursor: pointer;
    }

        .video-thumb-item .img-wrap{
            display: block;
            position: relative;
        }

        .video-thumb-item .img-wrap:before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            background-color: #1d1d1d;
            z-index: 1;
            opacity: .60;

            transition: 400ms ease;
            -webkit-transition: 400ms ease;
        }

        .video-thumb-item:hover .img-wrap:before,
        .slick-current .video-thumb-item .img-wrap:before{
            opacity: .0;
        }

        .video-thumb-item canvas{
            width: 100%;
            min-height: 225px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #800020;
        }

        .video-thumb-item .dtls-wrap {
            font-size: 16px;
            font-weight: 500;
            color: #1d1d1d;
            line-height: 33px;
            letter-spacing: .030em;
            text-transform: uppercase;
            text-align: center;
            padding: 20px 0 0;
            min-height: 90px;
        }




section.f-contact-us {
    padding: 110px 0;
    position: relative;
    z-index: 1;
    background: url(images/newhomepage/contact-us-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    section.f-contact-us:before{
        background-color: #1d1d1d;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .70;
        z-index: -1;
        content: '';
    }


.f-contact-dtls {
    display: block;
}

    .f-contact-dtls > p {
        font-size: 15px;
        color: #fff;
        display: block;
        margin-bottom: 40px;
        line-height: 28px;
        letter-spacing: .050em;
    }

    .f-contact-dtls ul.c-info {
        display: block;
        color: #fff;
    }

    .f-contact-dtls ul.c-info span {
        font-size: 17px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    .f-contact-dtls ul.c-info em,
    .f-contact-dtls ul.c-info a{
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        font-weight: 500;
        line-height: 15px;
        letter-spacing: .160em;
        font-family: var(--primary-font);
    }


.f-contact-form {
    padding-top: 166px;
    display: block;
    position: relative;
    font-size: 0;
    margin: 0 -15px;
}

    .f-contact-form .fcntct-col-md {
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        margin-bottom: 25px;
        padding: 0 15px;
    }

     .f-contact-form .fcntct-col-lg{
        width: 100%;
        padding: 0 15px;
     }

        .f-contact-form label {
            display: block;
            position: relative;
        }

        .f-contact-form .wpcf7-form-control-wrap {
            display: block;
            position: relative;
        }

        .f-contact-form .fcntct-form-control {
            width: 100%;
            height: 35px;
            border: 0;
            border-bottom: 1px solid rgba(255, 255, 255, .50);
            font-size: 13px;
            display: block;
            color: #fff;
            background-color: transparent;
            letter-spacing: .050em;
            outline: none;
        }

        .f-contact-form textarea.fcntct-form-control {
            height: 90px;
            resize: none;
        }

    .f-contact-form .fcntct-btn {
        position: relative;
        padding: 0 15px;
        margin-top: 60px;
    }

        .f-contact-form .fcntct-btn span.ajax-loader {
            position: absolute;
        }

        .fcntct-btn input.wpcf7-submit {
            background-color: transparent;
            border: 0;
            letter-spacing: inherit;
            font-size: inherit;
            text-transform: uppercase;
            padding: 0;
            outline: none;
            padding: 10px;
            color: #fff;
        }


        .f-contact-form span.wpcf7-not-valid-tip {
            font-size: 13px;
        }

        .f-contact-form .wpcf7 form .wpcf7-response-output {
            font-size: 14px;
            color: #fff !important;
            text-align: center;
            position: absolute;
            top: 100%;
            left: 15px;
            margin: 0;
            width: calc(100% - 30px);
        }
        .f-contact-form .wpcf7 form .wpcf7-response-output {
            color: #fff !important;
        }


footer.footer {
    background: #1d1d1d;
    padding: 80px 0;
}

    .footer .footer-inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1460px;
        margin: 0 auto;
    }

.footer .f-logo {
    display: block;
}

    .footer .f-logo img {
        max-width: 150px;
        width: 100%;
    }

.f-realtor-logo {
    display: flex;
    font-size: 28px;
    color: #e5e5e5;
    align-items: center;
}

    .footer .f-agent-image-logo {
        display: block;
        margin-right: 30px;
        position: relative;
    }

    .footer .f-agent-image-logo span {
        color: #009bbb;
        font-size: 45px;
	    padding-top: 5px;
    }

    .footer .f-agent-image-logo em {
        position: absolute;
        font-size: 11px;
        right: 0;
	    top: -5px;
        font-style: normal;
        line-height: 1;
        font-family: inherit;
    }

    .f-realtor-logo > span {
        margin: 0 5px;
    }


.f-nav {
    display: block;
    margin-left: 20px;
    padding-right: 15px;
}

    .f-nav .footernav {
        display: flex;
        margin-bottom: 15px;
    }

    .f-nav .footernav li:not(:last-child){
        padding-right: 16px;
    }

    .f-nav .footernav a{
        font-family: inherit;
        font-size: 13px;
        color: #e5e5e5;
        font-weight: 400;
        letter-spacing: .020em;
        line-height: 1.3;

        transition: 400ms ease;
        -webkit-transition: 400ms ease;
    }

        .f-nav .footernav a:hover{
            color: #800020;
        }

    .footer .copyright{
        font-family: inherit;
        font-size: 13px;
        color: #e5e5e5;
        font-weight: 400;
        letter-spacing: .020em;
        line-height: 1.3;
    }

        .footer .copyright a{
            color: inherit;
            transition: 400ms ease;
            -webkit-transition: 400ms ease;
        }

        .f-nav .footernav a span.menu-item-description {
            display: none;
        }

        .footer .copyright a:hover{
            color: #800020;
        }

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
#content .ip-breadcrumbs-inside-banner{
    display: none;
}

.ip-breadcrumbs-inside-banner {
    position: absolute;
    bottom: 0;
    padding: 20px 40px 20px 0;
    color: #fff;
    background: rgba(0, 0, 0, .50);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .160em;
    line-height: 1;
    width: 100%;
    text-align: right;
    z-index: 10;
    font-family: var(--secondary-font);
}


.ip-banner {
    padding-right: 110px;
    background: #1d1d1d;
    position: relative;
}

    .ip-banner .ip-banner-inner{
        display: block;
        position: relative;
    }

    .ip-banner .ip-banner-inner:before {
        content: '';
        position: absolute;
        top: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        left: 0;
        background: #000;
        opacity: .20;
    }

    .ip-banner::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;

        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0+50,0+50 */
        background: -moz-linear-gradient(top,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

    }

    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: #f9f7f7;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .page-id-22520 .ip-banner canvas {
        background-position: center center;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #FFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

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

/* Adjust width of sidebar */
.sidebar{ width: 20.83%; }

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

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }

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

}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {

}


/* IP General Style */

.ip-page-title {
    display: block;
}

    .ip-page-title h2,
    #content .ip-page-title h2 {
        font-size: 128px;
        font-weight: 700 ;
        line-height: 1;
        letter-spacing: .010em;
        margin: 0;
        text-transform: uppercase;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-position: bottom left;
        background-size: 80vw auto;
        font-family: var(--primary-font);
    }

/* End */

.appointment-wrap ul.smi-links li {
    display: inline-block;
    color: #fff;   margin-right: 12px;
    font-size: 13px;
}


.fold-c-info {
    position: absolute;
    top: 18px;
    right: 78px;
    pointer-events: auto;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;

}

.fixed .fold-c-info .c-info li:nth-child(2) {
    opacity: 0;
}


.mob-show{
    display: none;
}



.fold-c-info .ai-font-envelope {
    font-size: 14px;
/*    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #fff;*/
}

.fold-c-info ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}



.fold-c-info ul li a{
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #fff;
    text-shadow: 0px 0px 4px #000;
}


.footer-inner .smi-links li {
    display: inline-block;
    color: #fff;
    margin: 0px 10px;
}

.footer-inner ul.smi-links {
    margin-bottom: 22px;
}


.ip-container .footer-inner ul.smi-links{
    display: none;
}

.header .h-right #nav .nhp-menu {
    display: none;
}

.video-thumbnail-wrap {
    position: relative;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.video-thumbnail-wrap.active {
    z-index: 0;
}

.video-preview-item iframe {
    z-index: 1;
}

.video-thumbnail-wrap .icon-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 91px;
    cursor: pointer;
}

.video-preview-item .video-thumbnail-wrap canvas {
    opacity: 1;
    width: 100%;
    pointer-events: none;
    visibility: unset;
    display: block;
    min-height: 375px;
    height: 100%;
    background-size: cover;
}

.video-thumbnail-wrap .icon-wrap span {
    color: #FF0000;
}

.video-thumbnail-wrap .icon-wrap span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    display: block;
    width: 50%;
    height: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

/*.hp-notable-sales .footer-inner ul.smi-links{
    display: block;
}
*/
.no-padding {
    padding: 0 !important;
}

.hp-notable-sales .dtls-left {
    display: none;
}

.hp-notable-sales .proplisting-item .img-wrap .dtls-hvr {
    padding: 0 25px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.hp-notable-sales .dtls-hvr-left{
    font-family: var(--primary-font);
    display: block;
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.hp-notable-sales .dtls-hvr-left span {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .090em;
    text-transform: uppercase;
}

.hp-notable-sales .dtls-hvr-right .dtls-hvr-text {
    display: none;
}

.hp-notable-sales .dtls-hvr-right {
    text-align: center;
}

.hp-notable-sales .dtls-hvr-text {
    position: relative;
    display: block;
}


.ip-listings-popup-img canvas {
    display: block;
    width: 100%;
    max-height: 90vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ip-listings-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ip-listings-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    right: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, .78);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    padding: 25px;
}

.ip-listings-popup-img {
    position: relative;
    display: block;
    width: 100%;
}

.ip-listings-popup-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 735px;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}

.ip-listings-popup-content {
    position: relative;
}

.ip-listings-popup-listing-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 30px 0 29px 26px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.6px;
    font-weight: 500;
    color: #3e3e3e;
}

/*** Popup Arrow ***/
.hp-notable-sales button[class^=listing-popup] {
    position: absolute;
    top: 0;
    bottom: 0;
    background: transparent;
    border: none;
    z-index: 1;
    font-size: 0;
    max-height: 35px;
    margin: auto
}

.hp-notable-sales button.listing-popup-prev {
    left: 10px;
}

.hp-notable-sales button.listing-popup-next {
    right: 10px;
}

.hp-notable-sales button[class^=listing-popup] em {
    font-size: 30px;
    color: #fff;
}

.ip-listing-exit-btn {
    position: absolute;
    top: 18px;
    right: 26px;
    display: block;
    font-size: 29px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 1;
}

.ip-listing-exit-btn a:hover {
    color: #800020;
}

.ip-listing-exit-btn a {
    color: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ip-listings-popup.active .ip-listings-popup-wrap {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.ip-listing-exit-btn:hover {
    color: #000;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

#breadcrumbs a:focus, #breadcrumbs a:hover {
    color: #800020;
}

#slide-menu .side-menu-nav .sub-menu {
    opacity: 0;
    height: 0;
    transition: all .2s ease-in-out;
    margin-left: 30px;
}

#slide-menu .side-menu-nav #fix-nav > li:hover .sub-menu {
    opacity: 1;
    height: auto;
}

#slide-menu .side-menu-nav .sub-menu li a {
    font-size: 30px;
}

.popup-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 0;
    display:block;
}

body .cycloneslider-template-video video {
    max-width: 100%;
}

.hp-video-title {
    display: inline-block;
    vertical-align: middle;
    padding-top: 20px;
    padding-right: 20px;
    min-width: 340px;
    border-top: 1px solid rgba(255, 255, 255, .60);
    position: absolute;
    z-index: 1;
    left: 50px;
    top: 50px;
}


.hp-video-title span {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .140em;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-family: var(--tertiary-font);
}

.hp-video-title h2 {
    font-size: 57px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .060em;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}


.slide-menu-main-right .custom-html-widget {
    width: 100%;
 }

 .hp-video-preview:before {
     position: absolute;
     content: '';
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0,0,0,.20);
 }

 .vid-title {
     position: absolute;
     top: 110px;
     left: 115px;
     z-index: 1;
 }

 .vid-title .site-title {
     margin-bottom: 0;
 }


 .vid-title .site-title-inner {
     min-width: auto;
 }

 .nsalelisting-list:not(slick-initialized) .proplisting-item:nth-child(n+2),
 .exvlisting-list:not(slick-initialized) .proplisting-item:nth-child(n+2),
 .video-thumb-list:not(slick-initialized) .video-thumb-item:nth-child(n+2){
     display: none;
 }

 #main-wrapper {
     overflow: hidden;
 }


.page-template-sold a.page-numbers:hover {
    opacity: 1;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:before{
    display: none !important;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:nth-child(1)::before {
    content: "MYSELF";
    color: #707070;
    font-size: 10px;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 20px;
    margin-left: -10px;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:nth-child(2)::before {
    content: "EXCLUSIVE";
    color: #707070;
    font-size: 10px;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 20px;
    margin-left: -15px;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:nth-child(3)::before {
    content: "MEDIA";
    color: #707070;
    font-size: 10px;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 20px;
    margin-left: -7px;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:nth-child(4)::before {
    content: "POPULAR";
    color: #707070;
    font-size: 10px;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 20px;
    margin-left: -13px;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:nth-child(5)::before {
    content: "WISDOM";
    color: #707070;
    font-size: 10px;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 20px;
    margin-left: -11px;
}

.slide-menu-main-left .side-menu-nav .menu-new-main-menu-container > ul > li:nth-child(6)::before {
    content: "DATA";
    color: #707070;
    font-size: 10px;
    position: absolute;
    transform: rotate(90deg);
    left: 0;
    top: 20px;
    margin-left: -5px;
}

.f-realtor-logo span.ai-font-realtor {
    margin-right: 0;
}

.contact-us-form-widget div.wpcf7 .ajax-loader {
    bottom: -20px !important;
    left: 13px !important;
}

.f-disclaimer a {
	color: #fff;
	font-size: 20px;
	line-height: 25px;
	text-transform: uppercase;
}



header.header.fixed {
    background: #1d1d1d;
    height: 53px;
}

body.overflow-active {
    overflow: hidden;
}


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

a.anc-bold {
    font-weight: 700;
}

/*intro popup*/
.aiosp-content.aios-popup-body.newsletter-popup-body {
    padding: 15px;
    min-height: auto;
    width: 95%;
    max-width: 591px;
    background: #fff;
}

.aiosp-content.aios-popup-body.newsletter-popup-body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/popup-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: .1;
}

    div#introNewsletterPopup {
        padding: 70px 0 55px;
        position: relative;
        z-index: 2;
        font-size: 0;
        max-width: 475px;
        margin: 0 auto;
    }

        .introNewsletterPopup-content img {
            margin: 0 auto 30px;
        }

            .newsletter-popup-title {
                text-align: center;
                color: #000;
                font-size: 41px;
                font-weight: 700;
                text-transform: uppercase;
                line-height: 1.25;
                font-family: var(--secondary-font);
                margin-bottom: 45px;
                letter-spacing: 2px;
            }

                .newsletter-popup-title span {
                    display: block;
                    font-size: 18px;
                    color: #8c8c8c;
                    font-family: var(--tertiary-font);
                    letter-spacing: 2.3px;
                    margin-bottom: 9px;
                }

                .nl-form {
                    /* max-width: 390px; */
                    margin: 0 -15px;
                    position: relative;
                }

                    .nl-form input,
                    .nl-form textarea {
                        font-size: 13px;
                        width: 100%;
                        font-weight: 400;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        background: transparent;
                        height: 51px;
                        color: #000;
                        font-family: var(--primary-font);
                        padding: 0 0;
                        border-radius: 0;
                        resize: none;
                        border: none;
                        border-bottom: solid 2px #000;
                    }

                        .nl-fields label {
                            display: none;
                        }

                            .nl-fields {
                                margin-bottom: 20px;
                                display: inline-block;
                                width: 50%;
                                padding: 0 15px;
                            }

                                .nl-fields.nl-btn input {
                                    border: none;
                                    background: transparent;
                                    color: #000;
                                    text-transform: uppercase;
                                    font-weight: 700;
                                    padding-top: 4px;
                                    font-size: 15px;
                                    height: 56px;
                                    letter-spacing: 1px;
                                    -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;
                                    border: solid 2px #800020;
                                    font-family: var(--secondary-font);
                                }

                                    .nl-fields.nl-btn {
                                        max-width: 182px;
                                        margin: 34px auto 0;
                                        width: 100%;
                                        display: block;
                                    }

                                        .nl-fields.nl-btn input:hover {
                                            background: #800020;
                                            color: #fff;
                                        }

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

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

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

                                                .aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close {
                                                    color: #800020;
                                                    opacity: 1;
                                                    font-size: 55px;
                                                    top: 15px;
                                                    right: 15px;
                                                    font-weight: 300;
                                                    font-family: var(--primary-font);
                                                }

                                            .aiosp-content.aios-popup-body.newsletter-popup-body button.aiosp-close:hover{
                                                opacity: .5;
                                            }

                                        .nl-option {
                                            display: flex;
                                            flex-direction: column;
                                            align-items: center;
                                            font-size: 14px;
                                            color: #8c8c8c;
                                            text-transform: uppercase;
                                            font-family: var(--tertiary-font);
                                            letter-spacing: 1.7px;
                                            margin-top: 28px;
                                        }

                                    .nl-option a {
                                        padding: 5px;
                                        font-size: 19px;
                                        color: #000;
                                        font-family: var(--primary-font);
                                        letter-spacing: 3.5px;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                .nl-option a em {
                                    margin-right: 5px;
                                    color: #800020;
                                }

                            .nl-option a:hover{
                                opacity: .6;
                            }

                        .nl-option > span {
                            margin-bottom: 17px;
                        }


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

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    width: auto;
    line-height: 12px;
    position: absolute;
    top: 10px;
    right: 5px;
    left: auto
}

body > img, body > iframe[name="__bkframe"] {
    display: none;
}
#ihf-main-container .mc-total-payment-subline {
    color: #666;
}
#ihf-main-container .nav-tabs {
    margin-left: 0;
}
#ihf-main-container .chosen-drop ul.chosen-results {
    padding-left: 0;
    margin: 0;
}
.ihf-grid-result-address {
    display: block;
}
#ihf-main-container #ihf-refine-map-search-form .checkbox, #ihf-main-container #ihf-refine-map-search-form .col-xs-8 {
    padding: 0;
}
#ihf-agent-sellers-rep > div[style] {
    max-width: 100%;
}
#ihf-map-canvas .leaflet-top.leaflet-right {
    z-index: 999;
}
#ihf-main-container .glyphicon.glyphicon-remove-circle {
    color: #fff!important;
}

.page-id-0 section.f-contact-us {
    z-index: 0;
}