

/*
Theme Name: AIOS Starter Theme (Child)
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.8
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 {
    --aios-testimonials-primary: #fbdba7!important;
}

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


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

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
    width:100%;
    min-width:180px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu, #fixnav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
    padding-top: 0;
}
/*#nav li .menu-item-133 .sub-menu, #nav li .menu-item-404 .sub-menu {
    margin-left: -100%;
}*/
#nav li:hover > .sub-menu {
    display: block;
}
#nav .sub-menu li {
    position: relative;
}


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

/* Global */

body{
    font-family: 'Montserrat', 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; */
}

/* Fixed Header */
/* Header */
.fixed-header{
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1000;
    background:rgba(0,0,0,0.6);
    border-bottom: 1px solid #a08a6a;
    padding: 14px 0 22px;
    top: -100%;
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    font-size: 0;
}

    .fixed-header.fh{
        top: 0;
        opacity: 1;
    }

    .fh-container{
        max-width: 1330px;
        width: 100%;
        padding: 0 15px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .fh-logo img{
        width: 100%;
        display: block;
    }

    .fh-logo-left{
        max-width: 51px;
        width: 100%;
        margin-right: 21px;
    }

    .fh-logo-right{
        max-width: 72px;
        width: 100%;
        margin-top: 8px;
    }

    .fh-logo-right img{
        margin-left: auto;
    }

    /* Navigation */
    .fh-navigation {
        text-align: center;
        margin: 10px 0 0;
    }

    #fixnav li{
        position: relative;
    }

    #fixnav > li{
        display: inline-block;
    }

    #fixnav > li{
        padding: 0 21px;
    }

    #fixnav > li a{
        display: block;
        font-size: 18px;
        color: #fff1db;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 3px;
        position: relative;
        padding: 12px 0 13px;
    }

    #fixnav > li > a::before{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 0;
        height: 3px;
        margin: auto;
        background: #e0c192;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    #fixnav > li > a::after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 0;
        height: 0;
        border-left: 0px solid transparent;
        border-right: 0px solid transparent;
        border-top: 6px solid #e0c192;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    /* Sub menu */
    #fixnav .sub-menu {
        min-width: 207px;
        left: 50%;
        transform: translateX(-50%);
        background: none;
        list-style: none outside none;
        display: none;
        position: absolute;
        width:100%;
        padding: 39px 0 0;
    }

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

    #fixnav .sub-menu a{
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        background: rgb(33 33 33 / 60%);
        height: 50px;
        line-height: 50px;
        padding: 0;
    }

    /*#fixnav li .menu-item-133 .sub-menu, #fixnav li .menu-item-404 .sub-menu {
        margin-left: -100%;
    }*/

        /* Hover */
        #fixnav > li:hover > a::before{
            width: 100%;
        }

        #fixnav > li:hover > a::after{
            border-left: 6.5px solid transparent;
            border-right: 6.5px solid transparent;
        }

        #fixnav .sub-menu a:hover{
            background: #c5aa82;
            font-weight: 700;
            letter-spacing: #211f1f;
        }

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

/* Header */
.header{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 28px 0 11px;
    font-size: 0;
}

    /* Navigation */
    .navigation {
        text-align: center;
    }

    #nav li{
        position: relative;
    }

    #nav > li{
        padding: 0 25px;
    }

    #nav > li a{
        display: block;
        font-size: 18px;
        color: #fff1db;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 3px;
        position: relative;
        padding: 12px 0 13px;
    }

    #nav > li > a::before{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 0;
        height: 3px;
        margin: auto;
        background: #e0c192;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    #nav > li > a::after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 0;
        height: 0;
        border-left: 0px solid transparent;
        border-right: 0px solid transparent;
        border-top: 6px solid #e0c192;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    /* Sub menu */
    #nav .sub-menu {
    min-width: 282px;
        left: 50%;
        transform: translateX(-50%);
        background: none;
        padding: 12px 0 0;
    }

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

    #nav .sub-menu a{
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 1px;
        background: rgb(33 33 33 / 60%);
        height: 50px;
        line-height: 50px;
        padding: 0;
    }

        /* Hover */
        #nav > li:hover > a::before{
            width: 100%;
        }

        #nav > li:hover > a::after{
            border-left: 6.5px solid transparent;
            border-right: 6.5px solid transparent;
        }

        #nav .sub-menu a:hover{
            background: #c5aa82;
            font-weight: 700;
            /*letter-spacing: #211f1f;*/
        }



/* Banner */
.banner-wrap{
    position: relative;
    font-size: 0;
}

    .banner-main{
        position: relative;
    }

    .banner-panel{
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 5;
        cursor: pointer;
        background-color: #000000;
    }

    .banner-panel::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 30%;
        z-index: 1;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, rgba(0,0,0,0.79) 0%, rgba(0,0,0,0.6194852941176471) 35%, rgba(255,255,255,0.011642156862745057) 100%);
    }

    .banner-panel::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 30%;
        z-index: 1;
        background: rgb(0,0,0);
        background: linear-gradient(0deg, rgba(0,0,0,0.79) 0%, rgba(0,0,0,0.6194852941176471) 35%, rgba(255,255,255,0.011642156862745057) 100%);
    }

    .canvas-holder{
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .banner-left{
        left: 0;
    }

    .banner-right{
        right: 0;
    }

    .banner-panel canvas{
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        -moz-filter: grayscale(1);
        -o-filter: grayscale(1);
    }

    .banner-left canvas{
        background-position: left;
    }

    .banner-right canvas {
        background-position: right;
    }

    .banner-panel a{
        display: block;
        position: relative;
        height: 100%;
    }

    .banner-panel a::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.58);
        z-index: 2;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        /* Hover */
        .banner-panel a:hover canvas{
            filter: grayscale(0);
            -webkit-filter: grayscale(0);
            -moz-filter: grayscale(0);
            -o-filter: grayscale(0);
        }

        .banner-panel a:hover::before{
            opacity: 0;
        }

    /* Banner Content */
    .banner-content {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 18%;
        z-index: 10;
        max-width: 340px;
        width: 100%;
        text-align: center;
    }

    .banner-content h2{
        font-family: 'Cormorant Garamond', serif;
        font-size: 48px;
        color: #fbdba7;
        text-transform: uppercase;
        line-height: 1;
        margin: 20px 0 0;
    }

    .banner-right h2{
        margin: 15px 0 0;
    }

    .banner-content h2 span{
        display: block;
        color: #fff;
        font-size: 28px;
    }

    .banner-content img{
        width: 100%;
        margin: auto;
        display: block;
    }

    .banner-left img{
        max-width: 197px;
    }

    .banner-right img{
        max-width: 313px;
        margin: 16px auto 0;
    }

    /* Banner SMI */
    .banner-smi-wrap {
        position: absolute;
        left: 0;
        bottom: 40px;
        width: 100%;
        text-align: center;
        z-index: 10;
    }

    .banner-smi-wrap a {
        display: inline-block;
        vertical-align: middle;
        height: 52px;
        width: 52px;
        border: 1px solid #fff;
        border-radius: 52px;
        color: #fff;
        margin: 5px 14px;
        line-height: 68px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .banner-smi-wrap em.ai-mobile-phone a{
        color: #fff;
    }

    .banner-smi-wrap a i {
        font-size: 19px;
    }

    .banner-smi-wrap a i.ai-envelope-f{
        font-size: 15px;
        top: -3px;
    }

    .banner-smi-wrap a i.ai-facebook{
        font-size: 24px;
    }

    .banner-smi-wrap a i.ai-instagram{
        font-size: 20px;
    }

    .banner-smi-wrap a i.ai-linkedin{
        font-size: 20px;
        top: -2px
    }

        /* Hover */
        .banner-smi-wrap a:hover,
        .banner-smi-wrap em.ai-mobile-phone a:hover{
            background: #c5aa82;
            border: 1px solid #c5aa82;
            color: #22190c;
        }


.banner-slog {
    text-align: center;
    position: absolute;
    bottom: 120px;
    width: 100%;
    z-index: 5;
}

    .banner-slog .banner-slog-top {
        font-size: 28px;
        color: #fff;
        text-transform: uppercase;
    }

    .banner-slog-bottom {
        font-size: 23px;
        color: #fff;
        margin-top: 4px;
    }

.footer .banner-slog {
    position: relative;
    bottom: auto;
    margin-top: 50px;
}

/* CTA */
.cta-container{
    max-width: 1358px;
    width: 100%;
    margin: auto;
}

.cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cta-item{
        width: 33.333333%;
        padding: 0 29px;
        margin-top: -25px;
        position: relative;
        z-index: 20;
    }

    .cta-item a{
        display: block;
        position: relative;
    }

    .cta-img{
        position: relative;
        font-size: 0;
        background: #000;
    }

    .cta-img canvas{
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        opacity: 0.25;
    }

    .cta-content {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border: 6px solid #fff;
        z-index: 10;
    }

    .cta-label {
        border: 1px solid rgb(210 178 127 / 41%);
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: calc(100% - 32px);
        height: calc(100% - 24px);
    }

    .cta-label-main {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 112px;
        width: 100%;
    }

    .cta-label-main::before {
        content: '';
        position: absolute;
        left: -1px;
        bottom: -1px;
        width: 5px;
        height: 112px;
        background: #e3c698;
    }

    .cta-item h2 {
        position: absolute;
        left: 0;
        bottom: 0;
        display: inline-block;
        text-transform: uppercase;
        font-size: 50px;
        color: #fff;
        letter-spacing: 2px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .cta-item h2 span{
        display: block;
        font-size: 20px;
        letter-spacing: 1px;
    }

    .cta-item h2 em {
        position: relative;
        z-index: 10;
        font-style: normal;
        padding: 15px 15px 11px;
        display: block;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .cta-item h2::before{
        content: '';
        position: absolute;
        left: -1px;
        bottom: -1px;
        width: 0;
        height: 112px;
        background: #e3c698;
        z-index: 1;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        /* Hover */
        .cta-item a:hover h2::before{
            width: 100%;
        }

        .cta-item a:hover h2 {
            /* font-size: 68px; */
            font-weight: 500;
            color: #000;
        }


        .cta-item a:hover h2 span {
            font-weight: 500;
            /* font-size: 27px; */
            /* margin-bottom: -9px; */
        }

/* Welcome */
.welcome-wrap{
    padding: 124px 0 0;
}

    .welcome-content {
        min-height: 509px;
        background: #000;
        margin: 0 0 0 50px;
        position: relative;
        overflow: hidden;
        padding: 48px 80px 48px 64px;
    }

    .welcome-content::before{
        content: '';
        position: absolute;
        right: 80px;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 100%;
        max-width: 186px;
        height: 459px;
        background: url(images/welcome-logo.png) no-repeat center / contain;
        opacity: 0.08;
    }

    .welcome-main {
        display: flex;
        align-items: flex-end;
    }

    .welcome-img {
        font-size: 0;
        max-width: 266px;
        width: 100%;
    }

    .welcome-img img {
        width: 100%;
    }

    .welcome-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #fbdba7;
        letter-spacing: 8px;
        margin: 0 0 24px;
    }

    .welcome-content h2 span{
        display: block;
        font-size: 20px;
        color: #fff;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin-bottom: 2px;
    }

    .welcome-content h2 span::before{
        content: '';
        position: absolute;
        left: 155px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .welcome-content p{
        font-size: 16px;
        color: #fff;
        line-height: 1.9;
        margin-bottom: 15px;
    }

    .welcome-content a {
        border: 1px solid #fbdba7;
        height: 65px;
        max-width: 275px;
        width: 100%;
        line-height: 65px;
        display: block;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #fbdba7;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 29px 0 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .welcome-content a i {
        font-style: normal;
        margin-left: 6px;
    }

        /* Hover */
        .welcome-content a:hover{
            background: #fbdba7;
            color: #000;
        }

/* CTA - Welcome */
.cw-wrap{
    position: relative;
}

    .cw-container{
        position: relative;
        z-index: 10;
    }

    .cw-bg{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

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

    .cw-bg::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: url(images/cw-white-bg.png) no-repeat center / cover;
    }

    .cw-bg span{
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 68px;
        background: #dec292;
        z-index: 3;
    }

    .cw-bg span::before{
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 4;
        background: url(images/cw-bg-side.jpg) no-repeat center / cover;
        opacity: 0.1;
    }

/* Social */
.social-wrap{
    min-height: 657px;
    position: relative;
    padding: 125px 105px 0;
    overflow: hidden;
}

    .social-wrap::before {
        content: '';
        border: 10px solid #eaeaea;
        position: absolute;
        left: -10px;
        top: 78px;
        min-height: 507px;
        width: 63%;
        z-index: 1;
    }


    .social-container{
        position: relative;
        z-index: 10;
    }

    .social-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #e5c89a;
        letter-spacing: 8px;
        margin: 0 0 30px;
    }

    .social-content h2 span{
        display: block;
        font-size: 20px;
        color: #000;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin-bottom: 2px;
    }

    .social-content h2 span::before{
        content: '';
        position: absolute;
        left: 78px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .social-content p{
        font-size: 16px;
        color: #303030;
        line-height: 1.9;
        margin-bottom: 15px;
    }

    .social-content > a {
        border: 1px solid #000;
        height: 65px;
        max-width: 324px;
        width: 100%;
        line-height: 65px;
        display: block;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 22px 0 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .social-content > a i {
        font-style: normal;
        margin-left: 6px;
    }

    .social-images {
        font-size: 0;
        display: flex;
        align-items: center;
        margin: 46.5px -4.5px -4.5px -4.5px;
    }

    .social-items {
        position: relative;
        padding: 4.5px;
        width: 33.333333%;
    }

    .social-items canvas {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .social-items i {
        position: absolute;
        right: 12px;
        bottom: 15px;
        font-size: 28px;
        color: #fff;
    }

    .social-main {
        display: flex;
        align-items: flex-end;
    }

    .social-content {
        width: 46.77%;
    }

    .social-video{
        width: 53.23%;
        padding: 0 0 0 12px;
    }

    .sv-slick-holder{
        /* max-width: 727px; */
        width: 100%;
        margin: 0 0 0 auto;
        display: none;
    }

    .sv-slick-holder.slick-initialized.slick-slider {
        display: block;
    }

    .sv-item{
        display: block;
        position: relative;
        border: 6px solid #eaeaea;
        font-size: 0;
        outline: 0;
    }

    .sv-item canvas {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .sv-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 30%);
        z-index: 1;
    }


    .sv-item a{
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 127px;
        height: 127px;
        background: url(images/play-icon.png) no-repeat center / contain;
        z-index: 5;
        border-radius: 127px;
        outline: 0;
    }

    .sv-slick-holder .slick-arrow {
        position: absolute;
        right: -70px;
        height: 70px;
        width: 70px;
        border: 0;
        top: 0;
        appearance: none;
        -webkit-appearance: none;
        font-size: 0;
        outline: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .sv-slick-holder .slick-prev {
        background: #3c2602 url(images/videocontrol-prev.png) no-repeat center;
    }

    .sv-slick-holder .slick-next {
        background: #e5c89a url(images/videocontrol-next.png) no-repeat center;
        top: 70px;
    }

    .social-link a{
        border: 1px solid #000;
        height: 65px;
        max-width: 323px;
        width: 100%;
        line-height: 65px;
        display: block;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 0 47px auto;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .social-items a {
        display: block;
    }

        /* Hover */
        .social-content > a:hover{
            background: #fbdba7;
            border: 1px solid #fbdba7;
        }

        .social-link a:hover{
            background: #fbdba7;
            border: 1px solid #fbdba7;
        }

        .sv-slick-holder .slick-prev:hover {
            background: #000 url(images/videocontrol-prev.png) no-repeat center;
        }

        .sv-slick-holder .slick-next:hover {
            background: #000 url(images/videocontrol-next-hover.png) no-repeat center;
        }

/* Featured Listings */
.fp-wrap{
    position: relative;
    padding: 131px 0 61px;
    overflow: hidden;
    z-index: 1;
}

    .fp-wrap::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 37%;
        background: rgb(255,255,255);
        background: linear-gradient( 180deg , rgba(255,255,255,0.9640231092436975) 27%, rgba(255,255,255,0) 100%);
        z-index: 2;
    }

    .fp-wrap::after {
        content: '';
        border: 10px solid #eaeaea;
        position: absolute;
        right: -10px;
        top: 97px;
        min-height: 507px;
        width: 53.13%;
        z-index: 4;
    }



    .fp-bg{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .fp-bg::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/fp-bg.jpg) no-repeat center bottom / cover;
        z-index: 1;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        opacity: 0.37;
    }

    .fp-bg::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.68);
        z-index: 2;
    }

    .fp-container {
        position: relative;
        z-index: 10;
        max-width: 1496px;
        width: 100%;
        margin: auto;
    }

    .fp-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #e5c89a;
        letter-spacing: 8px;
        margin: 0 0 30px -7px;
    }

    .fp-content h2 span{
        display: block;
        font-size: 20px;
        color: #000;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin: 0 2px 0 7px;
    }

    .fp-content h2 span::before{
        content: '';
        position: absolute;
        left: 168px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .fp-slick-arrows button {
        display: inline-block;
        vertical-align: middle;
        font-family: 'Quicksand', sans-serif;
        border: 0;
        appearance: none;
        -webkit-appearance: none;
        font-size: 15px;
        color: #333333;
        letter-spacing: 6px;
        text-transform: uppercase;
        padding: 0;
        margin: 0;
        outline: 0;
    }

    .fp-slick-arrows .fp-prev{
        background: url(images/fp-prev.png) no-repeat center left;
        padding: 0 0 0 51px;
    }

    .fp-slick-arrows .fp-next{
        background: url(images/fp-next.png) no-repeat center right;
        padding: 0 51px 0 0;
    }

    .fp-slick-arrows a {
        border: 1px solid #000;
        height: 65px;
        max-width: 293px;
        width: 100%;
        line-height: 65px;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 29px 0 24px;
        outline: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fp-slick-arrows a i {
        font-style: normal;
        margin-left: 6px;
    }

    .fp-main {
        display: flex;
        align-content: center;
        padding: 0 52px;
        margin: 0 0 30px;
    }

    .fp-content {
        width: 50%;
    }

    .fp-slick-arrows {
        width: 50%;
        text-align: right;
        margin: 27px 0 0;
    }

    .fp-slick-holder{
        display: none;
    }

    .fp-slick-holder.slick-initialized.slick-slider{
        display: block;
        margin: 0 -7px;
    }

    .fp-item{
        padding: 0 7px;
    }

    .fp-item a {
        position: relative;
        outline: 0;
        width: 100%;
        margin: auto;
        display: block;
        font-size: 0;
        overflow: hidden;
    }

    .fp-img {
        position: relative;
        z-index: 1;
    }

    .fp-img canvas {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: 1;
        position: relative;
    }

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

    .fp-item > a > span {
        position: absolute;
        right: 0;
        top: 35px;
        height: 51px;
        display: inline-block;
        line-height: 51px;
        color: #000;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 600;
        z-index: 6;
        background: #e5c89a;
        width: 140px;
        text-align: center;
    }

    .fp-item > a > span.sold{
        background: #3c2602;
        color: #fff;
    }

    .fp-details {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        background: rgb(0 0 0 / 60%);
        color: #fff;
        text-align: center;
        z-index: 5;
        min-height: 191px;
        height: 191px;
        padding: 23px 10px 10px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fp-details::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: calc(100% - 28px);
        width: calc(100% - 32px);
        border: 1px solid rgb(210 178 127 / 70%);
        z-index: 1;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fp-details h2 {
        font-size: 40px;
        font-weight: 700;
        margin: 0 0 7px;
    }

    .fp-details h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.3;
        margin: 0px 0 17px;
    }

    .fp-details p {
        font-size: 16px;
        text-transform: uppercase;
    }

    .fp-details p i{
        font-style: normal;
        margin: 0 14px;
    }

    .fp-details span {
        position: absolute;
        right: 0;
        left: 0;
        bottom: -70px;
        margin: auto;
        height: 79px;
        display: inline-block;
        line-height: 79px;
        color: #000;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        z-index: 3;
        background: #e5c89a;
        width: 100%;
        max-width: 240px;
        text-align: center;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fp-details span i {
        font-style: normal;
        margin-left: 5px;
    }

    .fp-details-center{
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        /* Hover */
        .fp-slick-arrows a:hover{
            background: #e5c89a;
            color: #000;
            border: 1px solid #e5c89a;
        }

        .fp-item a:hover .fp-details {
            height: 100%;
        }

        .fp-item a:hover .fp-details-center {
            position: absolute;
            left: 0;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

        .fp-item a:hover .fp-details span{
            bottom: 0;
        }

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

/* Quick Search */
.qs-wrap{
    position: relative;
    background: #000;
    padding: 60px 15px;
    z-index: 2;
}

    .qs-wrap::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/qs-bg.jpg) no-repeat center / cover;
        z-index: 1;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        opacity: 0.48;
    }

    .qs-wrap::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 2;
    }

    .qs-container{
        position: relative;
        z-index: 10;
        max-width: 1394px;
        width: 100%;
        margin: auto;
    }

    .qs-main{
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .qs-content{
        width: 326px;
    }

    .qs-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #fbdba7;
        letter-spacing: 7px;
        margin: 0;
    }

    .qs-content h2 span{
        display: block;
        font-size: 20px;
        color: #fff;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin-bottom: 2px;
    }

    .qs-content h2 span::before{
        content: '';
        position: absolute;
        left: 108px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .qs-row{
        display: flex;
        align-items: center;
        margin: 0 -9.5px;
    }

    .qs-top{
        margin-bottom: 34px;
    }

    .qs-form{
        flex: 1;
        padding: 0 0 0 15px;
    }
    .qs-form .bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
        text-align: left;
        max-width: 140px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .qs-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
        text-overflow: ellipsis;
    }
    .qs-form .bootstrap-select.btn-group .dropdown-menu.inner {
        max-height: 200px !important;
    }
    .qs-form .bootstrap-select.btn-group .dropdown-menu li a {
        height: auto;
        text-align: left;
        padding-left: 20px;
    }

    .qs-form #custom-quick-search small.text-muted {
        position: absolute;
        right: 0;
        top: -3px;
        margin: 0 36px 0 0;
    }
    .qs-form .bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
        margin-top: 1px !important;
    }
    .qs-form-main {
        max-width: 904px;
        width: 100%;
        margin: 0 0 0 auto;
    }

    .qs-field{
        width: 25%;
        padding: 0 9.5px;
    }

    .qs-field select,
    .qs-field input,
    .qs-field a{
        height: 60px;
        width: 100%;
        border: 0;
        appearance: none;
        -webkit-appearance: none;
        outline: 0;
        font-size: 15px;
        text-transform: uppercase;
        color: #fff;
        line-height: 60px;
        border-bottom: 2px solid rgba(255,255,255,0.46);
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .qs-field select{
        background: url(images/dd-icon.png) no-repeat center right 7px;
    }

    .qs-field input{
        background: none;
        border: 2px solid #e5c89a;
        text-align: center;
        color: #e5c89a;
        font-size: 16px;
        font-weight: 600;
    }

    .qs-field a{
        display: block;
        background: none;
        border: 2px solid #fff;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
    }

        /* Hover */
        .qs-field input:hover{
            background: #e5c89a;
            color: #000;
        }

        .qs-field a:hover{
            background: #fff;
            color: #000;
        }

/* Featured Neighborhoods */
.fn-wrap{
    /* min-height: 951px; */
    position: relative;
    padding: 37px 55px 54px;
    background: #fff url(images/fn-bg.jpg) no-repeat center right / cover;
    z-index: 1;
}

    .fn-bg-side{
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background: url(images/fn-bg-side.jpg) no-repeat bottom left / cover;
        z-index: 1;
    }

    .fn-bg-side::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgb(215 188 142 / 90%);
    }

    .fn-container{
        position: relative;
        z-index: 10;
    }

    .fn-main{
        max-width: 1490px;
        width: 100%;
        margin: auto;
        /* min-height: 860px; */
        position: relative;
        padding: 68px 48px 20px;
    }

    .fn-main::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background: #fff;
        z-index: 1;
    }

    .fn-content{
        position: relative;
        z-index: 10;
    }

    .fn-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #e5c89a;
        letter-spacing: 7px;
        margin: 0 auto;
        max-width: 763px;
        width: 100%;
    }

    .fn-content h2 span{
        display: block;
        font-size: 20px;
        color: #000;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin: 0 2px 8px 7px;
    }

    .fn-content h2 span::before{
        content: '';
        position: absolute;
        left: 168px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .fn-slick-holder-wrap {
        position: relative;
        z-index: 10;
        max-width: 1388px;
        width: 100%;
        margin: 0 auto 0;
        padding: 47px 0 26px;
    }

    .fn-slick-holder {
        margin: 0 -3px;
        display: none;
    }

    .fn-slick-holder.slick-initialized.slick-slider{
        display: block;
    }

    .fn-item{
        padding: 3px;
    }

    .fn-item a {
        position: relative;
        outline: 0;
        width: 100%;
        max-width: 342px;
        margin: auto;
        display: block;
        font-size: 0;
        overflow: hidden;
    }

    .fn-img {
        position: relative;
        z-index: 1;
    }

    .fn-img canvas {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: 1;
        position: relative;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

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

    .fn-details {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        background: rgb(0,0,0);
        background: linear-gradient(0deg, rgba(0,0,0,0.6446953781512605) 0%, rgba(255,255,255,0) 100%);
        color: #fff;
        text-align: center;
        z-index: 5;
        padding: 23px 10px 23px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fn-details::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: calc(100% - 28px);
        width: calc(100% - 32px);
        border: 1px solid rgb(210 178 127 / 70%);
        z-index: 1;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fn-details h2 {
        font-size: 30px;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
    }

    .fn-details h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.3;
        margin: 0px 0 17px;
    }

    .fn-details p {
        font-size: 16px;
        text-transform: uppercase;
    }

    .fn-details p i{
        font-style: normal;
        margin: 0 14px;
    }

    .fn-details span {
        position: absolute;
        right: 0;
        left: 0;
        bottom: -53px;
        margin: auto;
        height: 61px;
        display: inline-block;
        line-height: 61px;
        color: #000;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        z-index: 3;
        background: #e5c89a;
        width: 100%;
        max-width: 184px;
        text-align: center;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fn-details span i {
        font-style: normal;
        margin-left: 5px;
    }

    .fn-details-center{
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        /* Hover */


        .fn-item a:hover .fn-details span{
            bottom: 0;
        }

        .fn-item a:hover .fn-img canvas{
            filter: grayscale(1);
            -webkit-filter: grayscale(1);
        }

        .fn-item a:hover .fn-details{
            height: 100%;
            padding: 0;
            background: none;
        }

        .fn-item a:hover .fn-details-center{
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            border: 1px solid #d2b27f;
            width: calc(100% - 16px);
            height: calc(100% - 14px);
            background: rgb(0 0 0 / 57%);
        }

        .fn-item a:hover .fn-details h2 {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
        }

/* Testimonials */
.testi-wrap{
    position: relative;
    min-height: 475px;
}

    .testi-wrap::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/testi-bg.jpg) no-repeat center / cover;
        z-index: 1;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
    }

    .testi-wrap::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.74);
        z-index: 2;
    }

    .testi-container {
        position: relative;
        z-index: 12;
        margin-top: -54px;
    }

    .testi-main {
        display: flex;
    }

    .testi-sidepanel {
        /* width: calc(((100% - 1490px) / 2) + 137px); */
        width: 12%;
        height: 100%;
        position: relative;
        min-height: 475px;
        overflow: hidden;
    }

    .testi-sidepanel::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 54px;
        background: url(images/fn-bg-side.jpg) no-repeat bottom left / cover;
        z-index: 1;
    }

    .testi-sidepanel::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 54px;
        background: rgb(215 188 142 / 90%);
        z-index: 2;
    }

    .testi-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 54px;
        z-index: 4;
    }

    .testi-bg::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100vw /2);
        height: 100%;
        background: url(images/fn-bg-side.jpg) no-repeat bottom left / cover;
        z-index: 2;
    }

    .testi-bg::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgb(215 188 142 / 90%);
        z-index: 3;
    }

    .testi-content-main {
        width: 88%;
        border-left: 7px solid #fff;
        position: relative;
        z-index: 10;
        padding: 64px 51px 15px 0;
    }

    .testi-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #fbdba7;
        letter-spacing: 7px;
        margin: 0;
        padding: 0 0 0 120px;
    }

    .testi-content h2 span{
        display: block;
        font-size: 20px;
        color: #fff;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin-bottom: 2px;
    }

    .testi-content h2 span::before{
        content: '';
        position: absolute;
        left: 297px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .testi-item img {
        max-width: 146px;
        width: 100%;
        display: block;
        margin: 0 0 34px;
    }

    .testi-item p {
        font-size: 16px;
        color: #fff;
        line-height: 1.9;
        margin: 0 0 31px;
    }

    .testi-item h3{
        color: #fbdba7;
        font-size: 17px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .testi-slick-holder-wrap {
        /* padding: 55px 0 0; */
    }

    .testi-item-content {
        padding: 0 7px;
        max-width: 560px;
        width: 100%;
    }

    .testi-slick-holder .slick-slide:nth-child(even) .testi-item-content {
        margin-left: auto;
    }

    .testi-slick-holder {
        display: none;
        padding: 51px 0 0 120px;
        max-width: 1292px;
    }

    .testi-slick-holder.slick-initialized.slick-slider {
        display: block;
    }

    .testi-slick-holder .slick-arrow {
        position: absolute;
        left: 0;
        top: 58px;
        height: 70px;
        width: 70px;
        border: 0;
        font-size: 0;
        appearance: none;
        -webkit-appearance: none;
        outline: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .testi-slick-holder .slick-next{
        background: #fff url(images/testi-next.png) no-repeat center;
    }


    .testi-slick-holder .slick-prev{
        background: #fff url(images/testi-prev.png) no-repeat center;
        left: -77px;
    }

        /* Hover */
        .testi-slick-holder .slick-next:hover{
            background: #e5c89a url(images/testi-next.png) no-repeat center;
        }

        .testi-slick-holder .slick-prev:hover{
            background: #e5c89a url(images/testi-prev.png) no-repeat center;
        }

/* Newsletter */
.nl-wrap {
    position: relative;
    padding: 96px 51px 15px;
    min-height: 573px;
}

    .nl-wrap::before {
        content: '';
        border: 10px solid #eaeaea;
        position: absolute;
        left: -10px;
        top: 42px;
        min-height: 484px;
        width: 57.38%;
        z-index: 1;
    }

    .nl-container {
        position: relative;
        z-index: 10;
        max-width: 1394px;
        width: 100%;
        margin: auto;
    }

    .nl-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #e5c89a;
        letter-spacing: 7px;
        margin: 0 auto 50px -7px;
        width: 100%;
    }

    .nl-content h2 span{
        display: block;
        font-size: 20px;
        color: #000;
        letter-spacing: 5px;
        position: relative;
        padding: 0 100px 0 0;
        margin: 0 2px 2px 7px;
    }

    .nl-content h2 span::before{
        content: '';
        position: absolute;
        left: 204px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .nl-content h3 {
        font-weight: 700;
        font-size: 24px;
        text-transform: uppercase;
        color: #303030;
        margin: 0 0 26px;
    }

    .nl-content p {
        color: #000000;
        font-size: 18px;
        line-height: 1.5;
        max-width: 604px;
        width: 100%;
        letter-spacing: 0.8px;
    }

    .nl-form label {
        display: none;
    }

    .nl-field {
        display: inline-block;
        vertical-align: top;
    }

    .nl-field-submit {
        width: 81px;
    }

    .nl-form {
        font-size: 0;
        max-width: 696px;
        width: 100%;
        margin: 37px 0 0;
    }

    .nl-field.nl-field-email {
        width: calc(100% - 81px);
    }

    .nl-form input {
        height: 80px;
        width: 100%;
        border: 1px solid #e5c89a;
        font-size: 22px;
        font-style: italic;
        outline: 0;
        appearance: none;
        -webkit-appearance: none;
        padding: 0 26px;
    }

    .nl-form input[type="submit"] {
        font-size: 0;
        background: #e5c89a url(images/nl-submit.png) no-repeat center;
        padding: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .nl-form .wpcf7-not-valid-tip {
        font-size: 12px;
    }

    .nl-form .wpcf7 form .wpcf7-response-output {
        font-size: 13px;
        text-align: center;
        padding: 6px 0;
        margin: 0;
    }

    .nl-main {
        display: flex;
        align-items: flex-start;
    }

    .nl-content {
        width: 50%;
    }

    .nl-img {
        width: 50%;
        padding: 17px 0 0 15px;
    }

    .nl-img img {
        max-width: 626px;
        width: 100%;
        margin: 0 0 0 auto;
        display: block;
    }

        /* Hover */
        .nl-form input[type="submit"]:hover {
            border: 1px solid #000;
            background: #000 url(images/nl-submit.png) no-repeat center;
        }

/* Testi - Newsletter */
.tn-wrap{
    position: relative;
}

    .tn-wrap::before{
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 51px;
        background: url(images/fn-bg-side.jpg) no-repeat bottom left / cover;
        z-index: 11;
    }

    .tn-wrap::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 51px;
        height: 100%;
        background: rgb(215 188 142 / 90%);
        z-index: 12;
    }

/* Contact */
.contact-wrap{
    min-height: 650px;
    position: relative;
    padding: 48px 15px 15px;
}

    .contact-wrap::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(images/contact-bg.jpg) fixed no-repeat center / cover;
        z-index: 1;
    }

    .contact-wrap::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.77);
        z-index: 2;
    }

    .contact-container{
        position: relative;
        z-index: 10;
    }

    .contact-content h2{
        text-transform: uppercase;
        font-size: 70px;
        color: #fbdba7;
        letter-spacing: 7px;
        margin: 0 auto;
        padding: 0;
        max-width: 445px;
        width: 100%;
    }

    .contact-content h2 span{
        display: block;
        font-size: 20px;
        color: #fff;
        letter-spacing: 5px;
        position: relative;
        padding: 0;
        margin: 0 0 9px 2px;
    }

    .contact-content h2 span::before{
        content: '';
        position: absolute;
        left: 152px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 2px;
        width: 86px;
        background: #f8dcaf;
    }

    .contact-form-text {
        position: relative;
        top: -9px;
    }

    .contact-form-text::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 1px;
        width: calc((100% - 697px) / 2);
        background: #fff;
    }

    .contact-form-text::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 1px;
        width: calc((100% - 697px) / 2);
        background: #fff;
    }

    .contact-form-text p{
        font-size: 18px;
        color: #fff;
        max-width: 697px;
        width: 100%;
        margin: auto;
        text-align: center;
        letter-spacing: 1.8px;
    }

    .contact-form{
        max-width: 1152px;
        width: 100%;
        margin: 65px auto 0;
        position: relative;
        border: 1px solid #fff;
        border-top: 0;
        border-bottom: 0;
        min-height: 100px;
    }

    .contact-form::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        height: 1px;
        width: calc((100% - 284px) / 2);
        background: #fff;
    }

    .contact-form::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        margin: auto;
        height: 1px;
        width: calc((100% - 284px) / 2);
        background: #fff;
    }

    .contact-form-main{
        font-size: 0;
        max-width: 1049px;
        width: 100%;
        margin: auto;
        padding: 38px 0 7px;
    }

    .contact-form-main label{
        display: none;
    }

    .contact-form-main .wpcf7-not-valid-tip {
        font-size: 12px;
    }

    .contact-form-main .wpcf7 form .wpcf7-response-output {
        font-size: 13px;
        text-align: center;
        padding: 4px 0;
        background: none;
        position: absolute;
        left: 0;
        bottom: -65px;
        width: 100%;
        margin: 0;
        color: #fff;
    }

    .contact-form-main input,
    .contact-form-main textarea {
        width: 100%;
        height: 55px;
        background: none;
        border: 0;
        border-bottom: 2px solid rgb(255 255 255 / 77%);
        outline: 0;
        font-size: 15px;
        color: #fff;
        text-transform: uppercase;
        padding: 0 7px;
    }

    .contact-form-main textarea{
        height: 82px;
        resize: none;
    }

    .contact-form-main input[type="submit"]{
        width: 100%;
        max-width: 243px;
        height: 65px;
        border: 1px solid #fff;
        margin: auto;
        display: block;
        font-size: 16px;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .cf-field-name,
    .cf-field-email,
    .cf-field-phone{
        display: inline-block;
        vertical-align: top;
        width: 33.333333%;
        margin-bottom: 57px;
    }

    .cf-field{
        padding: 0 13px;
    }

    .cf-field-submit {
        bottom: -63px;
        position: relative;
    }

        /* Hover */
        .contact-form-main input[type="submit"]:hover {
            background: #fbdba7;
            border: 1px solid #fbdba7;
            color: #000;
        }

/* Footer */
.footer{
    position: relative;
    background: #000;
    padding: 15px 0 82px;
}
.footer-logos-main {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .fl-item-left img{
        max-width: 118px;
        width: 100%;
        margin: auto;
        display: block;
    }

    .fl-item-right img {
      max-width: 192px;
      width: 100%;
      margin: auto;
      display: block;
  }

    .fl-item h2{
        font-family: 'Cormorant Garamond', serif;
        font-size: 31px;
        color: #fbdba7;
        text-transform: uppercase;
        line-height: 1;
        margin: 16px 0 0;
    }

    .fl-item h2 span{
        display: block;
        color: #fff;
        font-size: 18px;
    }

    .fl-border{
        height: 291px;
        width: 1px;
        background: rgb(122 112 96 / 67%);
        bottom: -27px;
        position: relative;
        margin: 0 76px 0 100px;
    }

    .footer-address {
        font-size: 13px;
        color: #fefeff;
        text-transform: uppercase;
        letter-spacing: 2px;
        max-width: 443px;
        width: 100%;
        text-align: center;
        margin: 51px auto 0;
        font-weight: 500;
        line-height: 1.5;
    }

    .footer-contact {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0 0;
    }

    .fcont-item a{
        color: #fff;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .fcont-item {
        color: #fff;
        font-size: 16px;
        border-right: 2px solid #fff;
        padding: 0 24px;
    }

    .fcont-item:last-of-type {
        border: 0;
    }

    .footer-smi{
        text-align: center;
        margin: 27px 0 0;
    }

    .footer-smi a{
        display: inline-block;
        vertical-align: middle;
        height: 38px;
        width: 38px;
        border: 1px solid #e5c89a;
        background: #e5c89a;
        border-radius: 38px;
        color: #000;
        margin: 4px;
        line-height: 43px;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .footer-smi a i{
        font-size: 18px;
    }

    .footer-smi a i.ai-instagram{
        font-size: 20px;
    }

    .footer-copyright{
        font-size: 14px;
        color: #fff;
        letter-spacing: 2.2px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.18);
        margin: 30px 0 0;
        padding: 25px 0 0;
    }

    .footer-copyright a{
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    .footer-copyright a:last-of-type{
        text-decoration: underline;
    }

    .footer-re-logos {
        text-align: center;
        margin: 29px 0 0;
    }

    .footer-re-logos i {
        font-size: 27px;
        color: #fff;
        margin: 0 3px;
    }

        /* Hover */
        .fcont-item a:hover{
            color: #e5c89a;
        }

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

        .footer-copyright a:hover{
            color: #e5c89a;
        }



/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}

    .ip-banner .banner-smi-wrap a {
        line-height: 60px;
    }

    .ip-banner .banner-smi-wrap {
        bottom: 10px;
    }

    .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: #f9f7f7;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #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;
            }

            .grecaptcha-badge{
                z-index: 999 !important;
            }
/* 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 {
    text-transform: uppercase;
    font-size: 24px;
    color: #e5c89a;
}

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

}

#content .entry {
    color: #000000;
    font-size: 14px;
    letter-spacing: 0.8px;
}

/* Sidebar */
.sidebar .qs-row{
    flex-direction: column;
    margin: 0;
}

    .sidebar .qs-form{
        padding: 0;
        background: #000;
        width: 100%;
    }

    .sidebar .qs-field{
        width: 100%;
        margin-bottom: 10px;
    }
.bootstrap-select>.dropdown-toggle {
    height: 60px;
    width: 100%;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    outline: 0;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    line-height: 60px;
    border-bottom: 2px solid rgba(255,255,255,0.46);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background:transparent;
    border-radius:0px;
}
#custom-quick-search option{
    color:black;
}

.mortgage-img {
    padding: 0 20px 20px 0;
}

.mortgage-btn, .refinance-btn-2 {
     width: 360px;
}


.mortgage-btn{
    margin: 0 auto!important;
    padding: 12px 0px;

}

.page-id-200 .mortgage-btn{
    width: 434px;
}

.refinance-btn,
.free-tools-btn-2 {
    width: 300px;
    margin: 0 auto!important;
}

.refinance-btn-2{
    margin: 0 auto!important;
}

.loan-options-btn-2,
.loan-options-btn {
    width: 360px;
    margin: 0 auto!important;
    padding: 12px 0px;
}

.free-tools-btn {
    width: 410px;
    margin: 0 auto!important;
}

.site-btn {
    border: 1px solid #000;
    max-width: 100%;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    margin: 22px 0 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.site-btn span {
    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;
    height: 50px;
}

.site-btn:hover {
    background: #fbdba7;
    border: 1px solid #fbdba7;
    color: #000;
}


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


.page-id-85 #content .entry a {
    background: yellow;
}

.page-id-178 .sidebar{
    display: none;
}


.page-id-83 .fl-item.fl-item-right , .page-id-83 .fl-border {
    display: none;
}


.liststylenone{
    list-style: none;
}


.page-id-85 .fl-item.fl-item-left  , .page-id-85 .fl-border{
    display: none;
}

.imagecenter{
    display: block;
    float: none !important;
    margin: 0px auto !important;
    max-width: 600px !important;
    width: 100%;
    min-height: 400px;
}

.aiosp-iframe-scaler {
    padding-top: 80.25%;
}

.ip-container .aiosp-iframe-scaler iframe {
    background: transparent;
}

.page-id-11 .aios-about-inner .aios-about-right {
    width: auto;
}

.aios-about-contacts {
    display: block;
    position: relative;
    padding: 16px 4px;
    background: #000;
}

.aios-about-contacts span {
    font-size: 12px;
    color: #fbdba7;
    display: block;
    text-align: center;
}

.aios-about-contacts span a {
    color: #fbdba7;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.aios-about-contacts span a:hover {
    color: #fff;
}

.ip-mortgage-quote {
    display: block;
    position: relative;
    padding: 8px 0;
    background: #F7F7F7;
    width: 100%;
    max-width: 620px;
    color: #000;
    margin: 10px auto 0;
    font-size: 22px;
}

.aios-about-main p {
    font-size: 16px;
}

/* #aios-testimonials .aios-testimonials-lists a {
    pointer-events: none;
} */

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

.ip-container #agents-results .agents-contact {
    background: #000;
}

.ip-container #agents-results .agents-button {
    background: #e5c89a;
    color: #FFF;
    border: 2px solid #e5c89a;
}

.ip-container #agents-results .agents-button:hover {
    background: #e5c89a;
    color: #fff;
}

.ip-container #agents-results .agents-contact li,
.ip-container #agents-results .agents-contact li span,
.ip-container #agents-results .agents-contact li a {
    color: #e5c89a
}

.page-id-400 .free-tools-btn {
    background: #fbdba7;
    border: 1px solid #fbdba7;
    color: #000;
}


.site-btn{

    background: #e5c89a;
}

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

#ihf-main-container ul {
    padding-left: 0;
    margin-left: 0;
}

#ihf_schoolDistrict_chosen .chosen-results {
    max-height: 125px !important;
}

ul.social-media-icons li:first-child {
    display: none;
}

.video-main {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0px auto;
    padding: 0 15px;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-main h2{
text-transform: uppercase;
font-size: 70px;
color: #e5c89a;
letter-spacing: 8px;
margin: 0 0 30px -7px;
}


section.video-wrap {
    padding: 100px 0 60px 0;
}



.awardbadge a {
    display: inline-block;
}

.awardbadge {
    text-align: center;
    margin-top: 40px;
}

.video-main .row .col-md-4 {
    padding-bottom: 30px;
}

.other-address {
    font-size: 13px;
    color: #FEFEFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 443px;
    width: 100%;
    text-align: center;
    margin: 20px auto 0;
    font-weight: 500;
    line-height: 1.5;
}

.other-address span {
    display: block;
}

.footer-dre {
    font-size: 14px;
    color: #FFF;
    display: block;
    margin: 10px 0 auto;
    line-height: normal;
}

.footer-dre a {
    color: #FFF;
    text-decoration: none;
}

.cf-field.cfsms p {
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.cf-field.cfsms {
    display: block;
    margin-top: 40px;
}




.iagree span.wpcf7-list-item-label {
    font-size: 12px;
    display: block;
    padding-left: 24px;
}

.iagree input[type=checkbox] {
    position: absolute;
    top: -3px;
    left: 8px;
    width: 16px;
    height: 16px;
}


  .iagree span.wpcf7-list-item label {
    display: block;
    position: relative;
}

.iagree span.wpcf7-list-item-label {
    text-align: center;
    color: #fff;
    line-height: 1.5;
    font-size: 13px;
}


.banner-content p {
    font-size: 19px;
    color: #fff;
    line-height: 1.5;
    margin-top: 16px;
}


.footer-logos {
    margin-top: 60px;
}


.ftr-map img {
    display: block;
    margin: 0px auto;
}

.ftr-map h2 {
    color: #fff;
    text-align: center;
    display: block;
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 18px;
}



.ftr-addressholder {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.ftr-addressholder > div {
    width: calc(100% / 3 - 40px);
    margin: 0px;
}

.ftr-addr-title {
    font-size: 16px;
    color: #fefeff;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 443px;
    width: 100%;
    text-align: center;
    margin: 20px auto 0;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 60px;
}
