/*
Theme Name: Rosie Nysaether
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.5
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 {
 --secondary-font: 'Old Standard TT', serif;
}

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




.hdrnav {    
    display: flex;
    justify-content: space-around;
    max-width: 1025px;
    margin: 0 auto;
}

    .hdrnav li {
        position: relative;
        display: inline-block;        
    }        

        .hdrnav li a {
            font-size: 14px;            
            color: #fff;            
            line-height: 1;
            text-decoration: none;            
            padding: 33px 0;
            text-transform: uppercase;            
            display: block;
            position: relative;            
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .header.fixed .hdrnav > li > a {
                color: #000;
            }

            .hdrnav li a:hover,
            .header.fixed .hdrnav > li > a:hover {
                color: #9c9065;
            }           

.hdrnav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 12px 0;
    position: absolute;
    width: 100%;
    min-width: 210px;
    left: 50%;
    z-index: 99;
    text-align: center;            
    -webkit-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
}
    
    .hdrnav .sub-menu:before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 100%;
        height: calc(100% - 1px);
        background: rgba(0,0,0,.8);
    }
    
    .hdrnav li:hover > .sub-menu {
        -webkit-transform: translate(-50%, 0px);
        transform: translate(-50%, 0px);
        opacity: 1;
        visibility: visible;
    }

    .hdrnav .sub-menu li {
        display: block;
        position: relative;       
    }

    .hdrnav .sub-menu a {        
        color: #fff;        
        display: block;
        padding: 8px 5px !important;        
        font-size: 14px;
        text-transform: uppercase;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-backface-visibility: hidden;
    }

    .hdrnav .sub-menu a:hover {
        text-decoration: none;
        background: #9c9065 !important;
        color: #fff;
    }

    .hdrnav .sub-menu .sub-menu {
        margin-left: 50%;
        top:0;
    }

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

/* Global */

body{
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
	background: #FFF;
	color: #000;
	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;
}

#content a  {
    outline: 0;
    color: #9c9065;
}

    .home a, .header a, .fixed-header a, footer a, .sidebar a {
        text-decoration: none !important;
        outline: 0;
    }

.transition {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

#main-wrapper {
    overflow: hidden;
}

body img[src^="//deviceid.trueleadid.com/vng.gif"] {
    display: none;}

/* header */

/*** burger-menu ***/

.out-click {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: none;
}

.burger-menu {        
    position: fixed;
    width: 440px;
    height: 100%;
    background: url('images/burger-bg.jpg');
    background-size: cover;
    z-index: 1002;
    top: 0;
    right: 0;
    transform: translateX(100%);
    padding: 4% 5%;
    overflow: auto;
    text-align: center;
    transition: all .7s ease-out;
    -webkit-transition: all .7s ease-out;
    -moz-transition: all .7s ease-out;
    -webkit-backface-visibility: hidden;
    text-align: center;
}
    
    .burger-menu.open-nav {
        transform: translateX(0);
    }

    .burger-menu .burger-close {
        position: absolute;
        top: 45px;
        right: 40px;        
        font-size: 12px;        
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
        transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -webkit-backface-visibility: hidden;
    }

        .burger-menu .burger-close:hover {
            color: #9c9065;
        }

    .burger-menu img {
        margin: 0 auto 50px;
    }

    .burger-menu .menu {
        display: block;
        font-size: 0;
        text-transform: uppercase;        
        text-align: center;
    }

        .burger-menu .menu a {
            display: block;
            font-size: 18px;
            color: #fff;
            padding: 10px 0;
            font-weight: 500;
            text-transform: uppercase;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-backface-visibility: hidden;
        }   

            .burger-menu .menu a:hover {
                color: #9c9065;
            }

            .burger-menu .menu .sub-menu {
                list-style: none outside none;
                margin: 0;
                padding: 12px 0;
                position: absolute;
                width: 45%;                
                left: 50%;
                z-index: 99;
                text-align: center;
                background: #000;
                -webkit-transform: translate(-50%, 20px);
                transform: translate(-50%, 20px);
                transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-backface-visibility: hidden;
                opacity: 0;
                visibility: hidden;
            }                
                
                .burger-menu .menu > li:hover > .sub-menu {
                    -webkit-transform: translate(-50%, 0px);
                    transform: translate(-50%, 0px);
                    opacity: 1;
                    visibility: visible;
                }

                .burger-menu .menu .sub-menu li {
                    display: block;
                    position: relative;       
                }

                .burger-menu .menu .sub-menu a {        
                    color: #fff;        
                    display: inline-block;
                    padding: 8px 5px !important;        
                    font-size: 14px;
                    text-transform: uppercase;
                    transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-backface-visibility: hidden;
                }

                .burger-menu .menu .sub-menu a:hover {
                    color: #9c9065;
                }

                 .burger-menu .menu .sub-menu .sub-menu {
                    margin-left: 50%;
                    top:0;
                }

    .burger-menu .burger-contact {
        display: block;
        font-weight: 500;
        margin: 40px 0;
    }

        .burger-menu .burger-contact a {
            font-size: 17px;
            display: block;
            color: #a79b6f;
            line-height: 32px;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .burger-menu .burger-contact a:hover {
                color: #fff;
            }

    .burger-menu .burger-smi {
        display: block;
        font-size: 0;        
    }

    .burger-menu .burger-smi a {
        display: inline-block;
        color: #9b9b9b;
        font-size: 20px;
        margin: 0 12px;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -webkit-backface-visibility: hidden;
    }

        .burger-menu .burger-smi a:hover {
            color: #fff;
        }
        

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,.85);
    border-bottom: 1px solid #908661;
    padding: 0 110px;
    font-size: 0;
    z-index: 998;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-backface-visibility: hidden;
}
    
    .header.fixed {
        background: #fff;
        border: 0;
    }
    
    .header .hdr-logo {
        display: inline-block;
        vertical-align: middle;
        width: 85px;
    }

        .header .hdr-logo img {
            max-width: 42px;
        }

    .header .navigation {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 170px);
        text-align: center;
    }

    .header .hdr-burger {
        display: inline-block;
        vertical-align: middle;
        width: 85px;
        text-align: right;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        cursor: pointer;
        transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -webkit-backface-visibility: hidden;
    }

        .header.fixed .hdr-burger {
            color: #000;
        }

        .header .hdr-burger span {
            display: inline-block;
            vertical-align: middle;
            width: 19px;
            height: 19px;
            background: url('images/burger-icon.png');
            margin-left: 5px;
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .header.fixed .hdr-burger span {
                -webkit-filter: invert(100%);
                filter: invert(100%);
            }

        .header .hdr-burger:hover {
            opacity: .8;
        }

/* homepage */

.hp-slide-wrap {
    display: block;
}
    
    .hp-slide-wrap .hp-slide-area {
        display: block;
        position: relative;
    }
    
        .hp-slide {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
             height: 800px;
            z-index: 0;
        }

            .hp-slide .cycloneslider-template-responsive {
                height: 100vh;
            }       

            .hp-slide:before {
                position: absolute;
                content: '';
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,.10);
                z-index: 5;
                pointer-events: none;
            }

            .hp-slide .cycloneslider-template-responsive .cycloneslider-next,
            .hp-slide .cycloneslider-template-responsive .cycloneslider-prev {
                width: 66px;
                height: 51px;
                background: url('images/hp-next-arrow.png');
                border-radius: 0;
                margin-top: 25px;
                -webkit-box-shadow: none;
                box-shadow: none;
                opacity: 1 !important;
            }

            .hp-slide .cycloneslider-template-responsive .cycloneslider-prev {            
                background: url('images/hp-prev-arrow.png');            
            }

                .hp-slide .cycloneslider-template-responsive .cycloneslider-next:hover,
                .hp-slide .cycloneslider-template-responsive .cycloneslider-prev:hover {
                    opacity: .7 !important;
                }

                .hp-slide .cycloneslider-template-responsive .cycloneslider-prev .arrow,
                .hp-slide .cycloneslider-template-responsive .cycloneslider-next .arrow {
                    opacity: 0;
                }

            .hp-title {
                position: absolute;
                left: 0;
                bottom: 155px;
                width: 100%;
                text-align: center;
                color: #fff;
                font-size: 30px;
                line-height: 38px;
                z-index: 5;
                pointer-events: none;
                text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.65);
            }

                .hp-title h2 {
                    display: block;
                    line-height: 1;
                    font-size: 70px;
                    font-weight: 700;
                    font-family: var(--secondary-font);
                }

            .hp-qs {
                position: absolute;
                width: 100%;
                z-index: 5;
                left: 0;
                bottom: 35px;
                font-size: 0;
            }

                .hp-qs .qs-inner {
                    display: block;
                    background: rgba(0,0,0,.85);
                    padding: 23px 40px;
                    font-size: 0;
                }

                .hp-qs .qs-col {
                    display: inline-block;
                    width: 10.50%;
                    vertical-align: middle;
                    margin-right: .5%;
                }

                    .hp-qs .qs-col.wide {
                        width: 19.55%;
                    }

                    .hp-qs .qs-col select {
                        width: 100%;
                        display: block;
                        height: 37px;
                        background: transparent;
                        border: 0;
                        border-bottom: 1px solid #8c8b8b;
                        color: #fff;
                        font-size: 16px;
                        outline: 0;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                    }

                        .hp-qs .qs-col option {
                            color: #000;
                        } 

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

                .hp-qs input[type="submit"] {
                    display: inline-block;
                    vertical-align: middle;
                    border: 0;
                    background: transparent;
                    font-size: 22px;
                    font-weight: 600;
                    text-transform: uppercase;
                    color: #9c9065;
                    margin-left: 3%;
                    outline: 0;
                    transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-backface-visibility: hidden;
                }

                    .hp-qs input[type="submit"]:hover {
                        color: #fff;
                    }

                .hp-qs .qs-adv {
                    display: inline-block;
                    vertical-align: middle;
                    color: #fff;
                    font-size: 18px;
                    margin-left: 2%;
                    transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-backface-visibility: hidden;
                }

                    .hp-qs .qs-adv:hover {
                        color: #9c9065;
                    }                

.hp-button {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-backface-visibility: hidden;
}

    .hp-button:hover {
        background: #9c9065;
        border-color: #9c9065;
        color: #fff;
    }


.hp-welcome {
    display: block;
    position: relative;
    background: url('images/hp-welcome-bg.jpg');
    padding: 80px 0 65px;
    font-size: 0;
}
    
    .welcome-inner {
        display: block;
        background: #fff;
    }
    
        .hp-welcome .welcome-left {
            display: inline-block;
            vertical-align: middle;
            width: 42.35%;
            background: url('images/hp-agent-new.jpg') center;
            background-size: cover;
        }

            .hp-welcome .welcome-left img {
                opacity: 0;
            }

        .hp-welcome .welcome-right {
            display: inline-block;
            vertical-align: middle;
            width: 57.65%;
            padding: 65px 58px 30px;
        }

            .hp-welcome h1 {
                font-size: 45px;
                color: #010101;
                line-height: 1;
                position: relative;
                padding-top: 25px;
                font-family: var(--secondary-font);
                margin: 25px 0 5px;
            }

                .hp-welcome h1:before {
                    position: absolute;
                    content: '';
                    left: 0;
                    top: 0;
                    width: 22px;
                    height: 3px;
                    background: #9c9065;
                }

            .hp-welcome .sub-title {
                font-size: 18px;
                color: #9c9065;
                font-weight: 300;
                line-height: 1;
            }

            .hp-welcome p {
                font-size: 16px;
                line-height: 23px;
                font-weight: 300;
                color: #000;
                margin-top: 25px;
            }

            .hp-welcome a {
                display: block;
                width: 157px;
                height: 48px;
                text-align: center;
                line-height: 46px;
                border: 1px solid #cdc7b2;
                text-transform: uppercase;
                font-size: 16px;
                font-weight: 300;
                letter-spacing: .1em;
                text-transform: uppercase;
                color: #010101;
                margin-top: 50px;
            }

.section-title {
    display: block;
    text-align: center;
    position: relative;
    padding-top: 30px;
    color: #000;
    font-size: 36px;
    font-family: var(--secondary-font);
}
    
    .section-title:before {
        position: absolute;
        content: '';
        left: 50%;
        margin-left: -11px;
        top: 0;
        width: 22px;
        height: 3px;
        background: #9c9065;
    }

.section-sub-title {
    display: block;
    font-size: 16px;    
    color: #9c9065;
    text-align: center;    
    line-height: 1;
    margin: 5px 0 70px;
}

.hp-portfolio {
    display: block;
    width: 100%;
    position: relative;
    background: #fff;
    padding-top: 70px;
}
    
    .hp-portfolio .fp-wrap {
        position: relative;
    }
    
    .hp-portfolio .fp-item a {
        display: block;
        position: relative;
        overflow: hidden;
    }

        .hp-portfolio .fp-item a:before {
            position: absolute;
            content: '';
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,.7);
            z-index: 2;
            opacity: 0;
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

        .hp-portfolio .fp-item a:after {
            position: absolute;
            content: '';
            left: 25px;
            top: 25px;
            width: calc(100% - 50px);
            height: calc(100% - 50px);
            border: 1px solid #9c9065;
            z-index: 3;
            opacity: 0;
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .hp-portfolio .fp-item a:hover:before,
            .hp-portfolio .fp-item a:hover:after {
                opacity: 1;
            }

        .hp-portfolio .fp-item canvas {
            display: block;
            width: 100%;
            height: auto;
            background-size: cover;
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .hp-portfolio .fp-item a:hover canvas {
                transform: scale(1.2);
            }

        .hp-portfolio .fp-item .fp-details {
            position: absolute;
            padding: 25px;
            text-align: center;
            left: 0;
            top: 53%;
            transform: translateY(-50%);
            width: 100%;
            font-size: 18px;
            color: #fff;
            font-weight: 300;
            z-index: 9;
            opacity: 0;            
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: all .5s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .hp-portfolio .fp-item a:hover .fp-details {
                opacity: 1;
                top: 50%;
            }

            .hp-portfolio .fp-item .fp-details span {
                display: block;
                line-height: 1;
            }

                .hp-portfolio .fp-item .fp-details span.fp-price {
                    font-size: 25px;
                    font-weight: 600;
                    margin-bottom: 35px;
                }

                .hp-portfolio .fp-item .fp-details span.fp-add1 {
                    font-size: 22px;
                    font-weight: 600;
                    margin-bottom: 15px;
                    text-transform: uppercase;
                }

            .hp-portfolio .fp-item .fp-details span.fp-beds-baths {
                text-transform: uppercase;
                margin: 38px 0 50px;
            }

                .hp-portfolio .fp-item .fp-details span.fp-beds-baths em {
                    display: inline-block;
                    font-style: normal;
                    margin: 0 7px;
                }

            .hp-portfolio .fp-item .fp-details span.fp-more {
                width: 200px;
                height: 48px;
                text-align: center;
                line-height: 48px;
                background: rgba(156,144,101,.8);
                font-size: 18px;
                letter-spacing: .1em;
                text-transform: uppercase;
                padding-left: .1em;
                margin: 0 auto;
                transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-backface-visibility: hidden;
            }

                .hp-portfolio .fp-item .fp-details span.fp-more:hover {
                    background: rgba(156,144,101,1);
                }

    .hp-portfolio .fp-arrow {
        position: absolute;
        right: 23px;
        top: 50%;
        transform: translateY(-50%);
        width: 66px;
        height: 51px;
        background: url('images/hp-next-arrow.png');
        z-index: 10;
        cursor: pointer;
    }

    .hp-portfolio .fp-arrow.fp-prev {
        right: auto;
        left: 23px;
        background: url('images/hp-prev-arrow.png');            
    }

.hp-tools {
    display: block;
    position: relative;
    background: #fff;
    padding: 80px 0 55px;
}
    
    .hp-tools .tools-col {
        margin-bottom: 45px;
    }
    
    .hp-tools .tools-col img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px;
    }

    .hp-tools .tools-col h2 {
        color: #9c9065;
        font-size: 18px;
        font-weight: 700;
        display: inline-block;
        text-transform: uppercase;
        line-height: 1;
        vertical-align: middle;
    }

    .hp-tools .tools-col p {
        display: block;
        color: #000;
        font-size: 15px;
        line-height: 20px;
        margin-top: 20px;
    }

.hp-homes {
    display: block;
    padding: 85px 0;
    position: relative;
    background: url('images/hp-homes-bg.jpg') center right;
    background-size: cover;
}
    
    .hp-homes .homes-inner {
        display: block;
        padding: 0 40px;
        position: relative;
    } 
    
        .hp-homes .homes-inner .homes-list {
            display: block;
            max-width: 1170px;
            padding: 0 50px;
            margin: 0 auto;
            font-size: 0;
        }

            .hp-homes .homes-inner .homes-photo {
                display: inline-block;
                vertical-align: middle;
                width: 32.87%;
            }

            .hp-homes .homes-inner .homes-text {
                display: inline-block;
                vertical-align: middle;
                width: calc(67.13% - 50px);
                margin-left: 50px;
                font-size: 16px;
                color: #000;
                font-weight: 300;
            }

                .hp-homes .homes-text h2 {
                    font-size: 35px;
                    line-height: 36px;
                    color: #000;
                    font-family: var(--secondary-font);
                }

                .hp-homes .homes-text ul {
                    margin: 20px 0 30px;
                    display: block;
                }

                .hp-homes .homes-text li {
                    display: block;                    
                }

                    .hp-homes .homes-text li span {
                        display: inline-block;
                        line-height: 28px;
                        padding-left: 30px;
                        position: relative;
                        font-weight: 300;
                    }

                    .hp-homes .homes-text li span:before {
                        position: absolute;
                        content: '';
                        left: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 16px;
                        height: 15px;
                        background: url('images/hp-homes-check.png');
                    }

                .hp-homes .homes-text span {
                    font-weight: 400;
                }

                .hp-homes .homes-text p {
                    color: #9c9065;
                    line-height: 25px;
                    margin-top: 15px;
                }

    .hp-homes .homes-arrow {
        position: absolute;
        right: 23px;
        top: 50%;
        transform: translateY(-50%);
        width: 66px;
        height: 51px;
        background: url('images/hp-next-arrow2.png');
        z-index: 10;
        cursor: pointer;
    }

    .hp-homes .homes-arrow.homes-prev {
        right: auto;
        left: 23px;
        background: url('images/hp-prev-arrow2.png');            
    }

.hp-advantage {
    display: block;
    position: relative;
    padding: 85px 0;   
}
    
    .hp-advantage:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.7);
        z-index: 1;
    }

    .hp-advantage .container {
        position: relative;
        z-index: 9;
    }
    
    .hp-advantage .section-title,
    .hp-advantage .section-sub-title {
        color: #fff;
    }

    .hp-advantage .adv-col {
        padding-bottom: 80px;
    }

        .hp-advantage .adv-wrap {
            display: block;
            padding: 0 5px;
            background: url('images/hp-adv-inner-bg.png') repeat-y; 
            background-size: 100%;
            position: relative;
        }

            .hp-advantage .adv-wrap:before {
                position: absolute;
                content: '';
                left: 0;
                top: -5px;
                width: 100%;
                height: 5px;
                background: rgba(255,255,255,.15);
            }

            .hp-advantage .adv-wrap .adv-accent {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: auto;
                transform: translateY(99.5%);
                z-index: 5;
            }

            .hp-advantage .adv-wrap .adv-inner {
                display: block;            
                padding: 45px 40px 0;
                text-align: center;
            }

                .hp-advantage .adv-col:nth-of-type(3) .adv-wrap .adv-inner {
                    padding-top: 30px;
                }

                .hp-advantage .adv-inner h2 {
                    display: block;
                    font-size: 30px;
                    color: #000;
                    font-family: var(--secondary-font);
                    line-height: 31px;
                    padding-bottom: 30px;
                    margin-bottom: 30px;
                    position: relative;
                }

                    .hp-advantage .adv-col:nth-of-type(3) .adv-inner h2 {
                        padding-bottom: 15px;
                    }

                    .hp-advantage .adv-inner h2:before {
                        position: absolute;
                        content: '';
                        left: 50%;
                        margin-left: -11px;
                        bottom: 0;
                        width: 22px;
                        height: 3px;
                        background: #9c9065;
                    }

                .hp-advantage .adv-inner p {
                    font-size: 16px;
                    color: #000;
                    line-height: 22px;
                    margin-bottom: 20px;
                    display: inline-block;
                    width: 100%;
                }

                    .hp-advantage .adv-col:nth-of-type(3) .adv-inner p {
                        padding: 0 5%;
                    }

                    .hp-advantage .adv-inner p.bottom {
                        margin-top: 15px;
                        padding-bottom: 10px;
                    }

                    .hp-advantage .adv-inner p:last-of-type {
                        margin-bottom: 0;
                    }

            .hp-advantage .adv-inner .adv-link {
                display: block;
                max-width: 195px;
                margin: 40px auto 0;
                height: 47px;
                text-align: center;
                line-height: 47px;
                color: #fff;
                font-size: 15px;
                text-transform: uppercase;
                font-weight: 300;
                background: #aea482;
                transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-backface-visibility: hidden;
            }

                .hp-advantage .adv-col .adv-link:hover {
                    background: #000;
                }

.hp-listing {
    display: block;
    position: relative;    
    padding: 60px 0 100px;
    font-size: 0;
    background: url('images/hp-listings-bg.jpg') repeat-x #fff;
}
    
    .hp-listing .steps-inner {
        display: block;
        padding-top: 40px;
        background: #fff;
        max-width: 1382px;
        margin: 0 auto;
    }
    
    .hp-listing .steps-item {
        display: inline-block;
        vertical-align: top;
        width: 20%;
        text-align: center;
    }           

        .hp-listing .steps-item .steps-list-holder {
            display: block;
            position: relative;
        }

            .hp-listing .steps-item .steps-list-holder:after {
                position: absolute;
                content: '';
                top: 50%;
                right: -22px;
                width: 43px;
                height: 9px;
                background: url('images/hp-steps-arrow.png') center no-repeat;
                transition: all .5s ease-in-out;
                -webkit-transition: all .5s ease-in-out;
                -moz-transition: all .5s ease-in-out;
                -webkit-backface-visibility: hidden;
            }

                .hp-listing .steps-item:last-child .steps-list-holder:after {
                    display: none;
                }

                .hp-listing .steps-item .steps-list-holder:hover:after {
                    transform: translateX(10px);
                }

            .hp-listing .steps-item h2 {
                font-size: 14px;
                color: #000;
                line-height: 1;                
                text-transform: uppercase;            
            }

            .hp-listing .steps-item .steps-icon {            
                display: block;
                width: 100%;
                max-width: 175px;
                margin: 35px auto;
                padding: 8px;
                border-radius: 50%;
                background: #ececec;
            }

                .hp-listing .steps-icon .icon-inner {
                    position: relative;
                    display: block;
                    border-radius: 50%;
                }

                    .hp-listing .steps-icon .icon-inner:before {
                        position: absolute;
                        content: '';
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0,0,0,1);
                        border-radius: 50%;
                        z-index: 2;
                        opacity: .53;
                        transition: all .5s ease-in-out;
                        -webkit-transition: all .5s ease-in-out;
                        -moz-transition: all .5s ease-in-out;
                        -webkit-backface-visibility: hidden;
                    }

                        .hp-listing .steps-item .steps-list-holder:hover .steps-icon .icon-inner:before {
                            opacity: .8;
                        }

                    .hp-listing .steps-icon .icon-inner:after {
                        position: absolute;
                        content: '';
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 70%;
                        height: 70%;
                        background: rgba(156,144,101,.80);
                        border: 1px solid rgba(156,144,101,0);
                        border-radius: 50%;
                        z-index: 4;
                        transition: all .5s ease-in-out;
                        -webkit-transition: all .5s ease-in-out;
                        -moz-transition: all .5s ease-in-out;
                        -webkit-backface-visibility: hidden;
                    }

                        .hp-listing .steps-item .steps-list-holder:hover .steps-icon .icon-inner:after {
                            background: transparent;
                            transform: translate(-50%, -50%) scale(1.3);
                            border: 1px solid rgba(156,144,101,1);
                        }

                    .hp-listing .steps-icon .icon-inner span {
                        position: absolute;                    
                        left: 50%;
                        top: 50%;
                        transform: translate(-50%, -50%);
                        color: #fff;
                        font-size: 45px;
                        z-index: 9;
                    }

                    .hp-listing .icon-inner img {
                        display: block;
                        border-radius: 50%;
                        width: 100%;
                        height: auto;                    
                    }

            .hp-listing .steps-item p {
                font-size: 14px;
                line-height: 22px;
                color: #000;
                padding: 0 20%;
                display: block;
            }

                .hp-listing .steps-item p span {
                    display: block;
                    margin-bottom: 18px;
                    text-transform: uppercase;
                    color: #9c9065;
                    font-weight: 600;
                    font-size: 16px;
                }

.hp-mid-tagline {
    display: block;
    position: relative;
    padding: 170px 0;  
    text-align: center;
}
    
    .hp-mid-tagline:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.7);
        z-index: 1;
    }

    .hp-mid-tagline .container {
        position: relative;
        z-index: 9;
    }
    
    .hp-mid-tagline h2 {
         font-family: 'Cinzel', serif;
        color: #a79b6f;
        letter-spacing: .07em;
        text-transform: uppercase;
        line-height: 90px;
        font-size: 70px;
    }

.hp-home-sale {
    display: block;
    background: url('images/hp-home-sale-bg.jpg') bottom left repeat-x #fff;
    position: relative;
    padding: 90px 0 35px;    
}
    
    .hp-home-sale .row {
        overflow: hidden;
    }
    
    .hp-home-sale .section-sub-title {
        padding: 0 25%;
        line-height: 24px;
    }

    .hp-home-sale > .container {
        background: #fff;        
    }

        .hp-home-sale > .container > .textwidget {
            position: relative;
            display: block;
            padding-bottom: 55px;
        }

            .hp-home-sale > .container > .textwidget:before {
                position: absolute;
                content: '';
                left: -10%;
                top: 0;
                width: 10%;
                height: 100%;
                background: #fff;
            }

            .hp-home-sale > .container > .textwidget:after {
                position: absolute;
                content: '';
                right: -10%;
                top: 0;
                width: 10%;
                height: 100%;
                background: #fff;
            }

    .hp-home-sale div.hs-img {
        display: block;
        overflow: hidden;
        margin-bottom: 35px;
    }

    .hp-home-sale canvas {
        display: block;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        height: auto;
        background-size: cover;        
        transition: all .75s ease-in-out;
        -webkit-transition: all .75s ease-in-out;
        -moz-transition: all .75s ease-in-out;
        -webkit-backface-visibility: hidden;
    }

        .hp-home-sale div.hs-img:hover canvas {
            transform: scale(1.2);
        }

    .hp-home-sale .row h2 {
        font-size: 18px;
        color: #9c9065;
        font-weight: 600;
        text-transform: uppercase;
        display: block;
        line-height: 1;
        margin-bottom: 20px;        
    }

        .hp-home-sale .row h2 a {
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

        .hp-home-sale .row h2 a:hover {
            color: #000;
        }

    .hp-home-sale .row p {
        display: block;
        font-size: 16px;
        color: #000;
        line-height: 22px;        
    }

.hp-marketing {
    display: block;
    background: url('images/hp-marketing-bg.jpg') top left repeat-x #fff;
    position: relative;
    padding: 60px 0 0;
}
    
    .hp-marketing > .container {
        background: #fff;        
    }

        .hp-marketing > .container > .textwidget {
            position: relative;
            display: block;
            padding: 45px 0 110px;
        }

            .hp-marketing > .container > .textwidget:before {
                position: absolute;
                content: '';
                left: -10%;
                top: 0;
                width: 10%;
                height: 100%;
                background: #fff;
            }

            .hp-marketing > .container > .textwidget:after {
                position: absolute;
                content: '';
                right: -10%;
                top: 0;
                width: 10%;
                height: 100%;
                background: #fff;
            }

            .hp-marketing .mktg-col {
                font-size: 16px;
                color: #000;
                line-height: 22px;
                text-align: center;
            }

            .hp-marketing .mktg-col img {
                display: block;
                margin: 0 auto 25px;
            }

            .hp-marketing .mktg-col h2 {
                font-size: 18px;                
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 23px;
            }

            .hp-marketing .mktg-col li {
                display: inline-block;
                text-align: left;
            }

            .hp-marketing .mktg-col p {
                padding: 0 12%;
            }

.hp-concierge {
    display: block;
    position: relative;
    background: #fff;
    z-index: 6;
}
    
    .hp-concierge .concierge-inner {
        display: block;
        position: relative;
    }        

        .hp-concierge .concierge-img {
            position: absolute;
            top: 0;
            left: 0;
            width: calc(50% - 15px);
            height: 100%;
        }

            .hp-concierge .concierge-img canvas {
                display: block;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
            }

        .hp-concierge .concierge-text {
            display: block;
            padding: 45px 35px 85px 40px;            
        }

            .hp-concierge .section-title,
            .hp-concierge .section-sub-title {
                text-align: left;
            }

                .hp-concierge .section-sub-title {
                    margin-bottom: 50px;
                }

            .hp-concierge .section-title:before {
                left: 0;
                margin-left: 0;
            }

            .hp-concierge .concierge-text p {
                font-size: 16px;
                color: #000;
                line-height: 22px;
                margin-bottom: 35px;
                display: inline-block;
                width: 100%;
            }

            .hp-concierge .concierge-text a {
                display: block;
                width: 200px;
                height: 48px;
                line-height: 48px;
                background: #b0a684;
                color: #fff;
                font-size: 16px;
                letter-spacing: .26em;
                margin-top: 20px;
                text-transform: uppercase;
                text-align: center;
                transition: all .3s ease-in-out;
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -webkit-backface-visibility: hidden;
            }

                .hp-concierge .concierge-text a:hover {
                    background: #000;
                }

.parallax-mirror {
    z-index: 1 !important;
}

.hp-fc {
    display: block;
    position: relative;
    padding: 100px 0;
    z-index: 5;
}
    
    .hp-fc:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.8);
        z-index: 3;
    }

    .hp-fc .fc-inner {
        display: block;
        padding: 0 15px;
        max-width: 1365px;
        margin: 0 auto;
        position: relative;
        z-index: 9;
    }

        .hp-fc .fc-inner .section-title {
            color: #fff;
        }

        .hp-fc .fc-list {
            display: block;
            margin: 55px -2px 0;
            font-size: 0;
            text-align: center;
        }

            .hp-fc .fc-list .fc-item {
                display: inline-block;
                width: 20%;
                padding: 0 2px;
            }

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

                    .hp-fc .fc-list .fc-item a:before {
                        position: absolute;
                        content: '';
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0,0,0,.3);
                        z-index: 3;
                    }

                    .hp-fc .fc-list .fc-item a:after {
                        position: absolute;
                        content: '';
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 100%;
                        border: 1px solid #fff;
                        z-index: 5;
                        opacity: 0;
                        transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-backface-visibility: hidden;
                    }

                        .hp-fc .fc-list .fc-item a:hover:after {
                            opacity: 1;
                        }

                    .hp-fc .fc-list .fc-item canvas {
                        display: block;
                        width: 100%;
                        height: auto;
                        background-size: cover;
                        background-position: center;
                    }

                    .hp-fc .fc-list .fc-item h2 {
                        position: absolute;
                        left: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 100%;
                        text-align: center;
                        font-size: 20px;
                        line-height: 21px;
                        letter-spacing: .3em;
                        text-transform: uppercase;
                        padding: 0 10px;
                        color: #fff;
                        z-index: 9;
                    }

.hp-reviews {
    display: block;
    position: relative;
    padding: 110px 0;
    background: url('images/hp-reviews-bg.jpg') center right;    
    background-size: cover;
    z-index: 5;
}
    
    .hp-reviews .reviews-wrap {
        display: block;
        position: relative;
    }

        .hp-reviews .reviews-list {
            display: block;
            width: calc(100% - 160px);
            max-width: 1005px;
            margin: 0 auto;
        }

            .hp-reviews .reviews-item {
                font-size: 16px;
                color: #000;
                font-weight: 300;
                line-height: 30px;
                text-align: center;
            }

                .hp-reviews .reviews-item span {
                    display: block;
                    margin-top: 40px;
                    color: #9c9065;
                    font-weight: 600;
                    text-transform: uppercase;
                }

        .hp-reviews .reviews-wrap .reviews-arrow {
            position: absolute;
            right: 23px;
            top: 0;            
            width: 66px;
            height: 51px;
            background: url('images/hp-next-arrow2.png');
            z-index: 10;
            cursor: pointer;
        }

        .hp-reviews .reviews-wrap .reviews-arrow.reviews-prev {
            right: auto;
            left: 23px;
            background: url('images/hp-prev-arrow2.png');            
        }

.hp-instagram {
    display: block;
    position: relative;
    background: url('images/hp-welcome-bg.jpg');
    z-index: 6;
    /*display: none;*/
}
    
    .hp-instagram .insta-top {
        display: block;
        width: 100%;
        padding: 55px 15px;
        max-width: 500px;
        margin: 0 auto;
        background: #fff;
        font-size: 18px;
        color: #444;
        font-weight: 300;
        text-align: center;
    }

        .hp-instagram .insta-top span {
            font-size: 56px;
            color: #9c9065;
            display: block;
            margin-bottom: 20px;
        }

        .hp-instagram .insta-feed {
            display: block;
            font-size: 0;
        }

            .hp-instagram .insta-feed a {
                display: inline-block;
                vertical-align: bottom;
                width: 20%;
                padding: 10px;
            }

                .hp-instagram .insta-feed a canvas {
                    display: block;
                    width: 100%;
                    height: auto;
                    background-size: cover;
                    background-position: center;
                }
.slick-prev.slick-arrow {
    display: none !important;
}
.f-newsletter {
    display: block;
    position: relative;
    padding: 95px 0 145px;
    z-index: 5;
}
    
    .f-newsletter:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.7);
        z-index: 3;
    }
    
    .f-newsletter .newsletter-inner {
        display: block;
        max-width: 960px;
        margin: 0 auto;
        background: url('images/hp-newsletter-inner-bg.png') repeat-y;
        background-size: 100%;
        padding: 65px 50px 45px;
        position: relative;
        z-index: 5;
    }

        .f-newsletter .newsletter-inner:before {
            position: absolute;
            content: '';
            left: 0;
            top: -5px;
            width: 100%;
            height: 5px;
            background: rgba(255,255,255,.15);
        }

        .f-newsletter .newsletter-inner img {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: auto;
            transform: translateY(99.5%);
        }

        .f-newsletter .section-title {
            letter-spacing: .08em;
        }

        .f-newsletter .section-sub-title {
            color: #000;
            margin-bottom: 40px;
        }

        .f-newsletter form {
            display: block;
            position: relative;
            font-size: 0;
        }

            .f-newsletter .form-col {
                display: inline-block;
                width: 31.33%;
                vertical-align: bottom;
            }

                .f-newsletter .form-col.mar-l-r {
                    margin: 0 3%;
                }

                .f-newsletter .form-col input {
                    width: 100%;
                    border: 0;
                    height: 50px;
                    border-bottom: 1px solid #000;
                    font-size: 14px;
                    color: #000;                    
                    background: transparent;
                    text-transform: uppercase;
                    outline: 0;
                }

                .f-newsletter input[type="submit"] {
                    display: block;
                    width: 195px;
                    height: 47px;
                    text-align: center;
                    color: #fff;
                    font-size: 16px;
                    letter-spacing: .1em;
                    text-transform: uppercase;
                    border: 0;
                    background: #aea482;
                    margin: 55px auto 0;
                    outline: 0;
                    transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -webkit-backface-visibility: hidden;
                }

                    .f-newsletter input[type="submit"]:hover {
                        background: #000;
                    }
                
                .f-newsletter div.wpcf7-response-output {
                    font-size: 12px;
                    text-align: center;
                    position: absolute;
                    margin: 0;
                    width: 100%;
                }

                .f-newsletter span.wpcf7-not-valid-tip {
                    font-size: 11px;
                }

.footer {
    display: block;
    position: relative;
}
    
    .footer-top {
        display: block;
        padding: 100px 0;
        position: relative;
    }

        .footer-top:before {
            position: absolute;
            content: '';
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(14,14,14,.95);
            z-index: 3;
        }

        .footer-top .container {
            position: relative;
            z-index: 5;
            color: #b4b4b4;
            font-size: 15px;
            font-weight: 300;
        }

            .footer-top h2 {
                display: block;
                position: relative;
                padding-top: 22px;
                line-height: 1;
                font-weight: 600;
                font-size: 20px;
                color: #fff;
                margin-bottom: 33px;
                text-transform: uppercase;
            }

                .footer-top h2:before {
                    position: absolute;
                    content: '';
                    left: 0;
                    top: 0;
                    width: 22px;
                    height: 3px;
                    background: #9c9065;
                }

            .footer-top .f-about p {                
                line-height: 23px;
                padding-right: 7%;
            }

            .footernav li {
                display: block;
                text-transform: uppercase;
                margin-bottom: 17px;
            }

                .footernav li a {
                    color: #b4b4b4;
                    font-size: 15px;
                    font-weight: 200;
                }

            .footer-top .f-contact .contact-name {
                display: block;
                color: #fff;
                font-size: 20px;
                font-weight: 600;
                line-height: 1;
                text-transform: uppercase;
                margin-bottom: 10px;
            }

            .footer-top .f-contact .info {
                display: block;
                margin: 27px 0;
                line-height: 21px;
            }

                .footer-top .f-contact .info > div {
                    display: block;
                    margin-bottom: 15px;
                }

                .footer-top .f-contact .info  a {
                    color: #b4b4b4;
                }

                .footer-top .f-contact .info span {
                    color: #fff;
                    display: inline-block;
                    margin-right: 7px;
                    width: 23px;
                }

                    .footer-top .f-contact .info span.ai-font-envelope {
                        font-size: 11px;
                    }

                    .footer-top .f-contact .info span.ai-font-location-c {
                        font-size: 22px;
                        vertical-align: middle;
                        float: left;
                        margin-bottom: 20px;
                    }

            .footer-top .f-contact .f-smi a {
                display: inline-block;
                font-size: 20px;
                margin-right: 25px;
                color: #9b9b9b;
            }

        .footer-top a {
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

        .footer-top a:hover {
            color: #9c9065 !important;
        }

        .footer-top .sold-list {
            display: block;
            margin: 0 -4px;
            font-size: 0;
        }

            .footer-top .sold-list .sold-item {
                display: inline-block;
                width: 33.33%;
                padding: 0 4px;
                margin-bottom: 8px;
            }

                .footer-top .sold-item a {
                    display: block;
                    background: #555;
                }

                    .footer-top .sold-item canvas {
                        display: block;
                        width: 100%;
                        height: auto;
                        background-size: cover;
                        background-position: center;
                        transition: all .3s ease-in-out;
                        -webkit-transition: all .3s ease-in-out;
                        -moz-transition: all .3s ease-in-out;
                        -webkit-backface-visibility: hidden;
                    }

                        .footer-top .sold-item a:hover canvas {
                            opacity: .3;
                        }

    .footer-bottom {
        display: block;
        padding: 40px 0;
        background: #0e0e0e;        
        color: #9b9b9b;
        font-weight: 300;
        font-size: 0;
    }

        .footer-bottom .copy-left {
            font-size: 15px;
            display: inline-block;
            vertical-align: middle;
            width: 75%;
        }

            .footer-bottom .copy-left span {
                color: #a79b6f;
            }        

            .footer-bottom .copy-left a {
               color: #9b9b9b;
            }

                .footer-bottom .copy-left a:hover {
                    color: #9c9065;
                }

        .footer-bottom .copy-right {
            font-size: 22px;
            display: inline-block;
            vertical-align: middle;
            text-align: right;
            color: #989898;
            width: 25%;
        }

            .footer-bottom .copy-right span {
                display: inline-block;
                margin-left: 2px;
            }

 
/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(0,0,0,.6);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: #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;
            }
/* Adjust minimum height of page area */ 

#inner-page-wrapper {
    z-index: 9;
}

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

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

/* Adjust width of sidebar */
.sidebar{ width: 25%; padding: 30px 0;}
    
    .side-qs {
        display: block;
        background: rgba(0,0,0,.85);
        padding: 20px;
        font-size: 0;
    }

        .side-qs h2 {
            font-size: 24px;
            font-weight: 400;
            text-transform: uppercase;
            color: #fff;
            margin-top: 0;
            line-height: 1;
            display: block;
            text-align: center;
        }

        .side-qs .qs-col {
            display: inline-block;
            width: 48%;
            vertical-align: middle;
            margin-bottom: 10px;
        }

            .side-qs .qs-col.wide {
                width: 100%;
            }

            .side-qs .qs-col.mar-l {
                margin-left: 4%;
            }

            .side-qs .qs-col select {
                width: 100%;
                display: block;
                height: 37px;
                background: transparent;
                border: 0;
                border-bottom: 1px solid #8c8b8b;
                color: #fff;
                font-size: 16px;
                outline: 0;
                -webkit-appearance: none;
                -moz-appearance: none;
            }

                .side-qs .qs-col option {
                    color: #000;
                } 

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

        .side-qs input[type="submit"] {
            display: inline-block;
            width: 48%;
            text-align: center;
            vertical-align: middle;
            border: 0;
            background: transparent;
            font-size: 22px;
            font-weight: 600;
            text-transform: uppercase;
            color: #9c9065;            
            outline: 0;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

            .side-qs input[type="submit"]:hover {
                color: #fff;
            }

        .side-qs .qs-adv {
            display: inline-block;
            vertical-align: middle;
            width: 48%;
            text-align: center;
            color: #fff;
            font-size: 18px;            
        }

    .side-reviews {
        display: block;
        margin-top: 50px;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        position: relative;
        padding-bottom: 70px;
    }

        .side-reviews h2 {
            font-size: 26px;
            font-weight: 400;            
            color: #000;            
            line-height: 1;
            display: block;
            text-align: center;
            margin: 0;
            font-family: var(--secondary-font);
        }

        .side-reviews .side-sub-title {
            display: block;
            font-size: 16px;
            color: #9c9065;
            text-align: center;
            line-height: 1;
            margin: 5px 0 30px;
        }

        .side-reviews .reviews-item span {
            display: block;
            text-transform: uppercase;
            font-size: 16px;
            color: #9c9065;
            font-weight: 500;
            margin-top: 15px;
        }

        .side-reviews .reviews-wrap .reviews-arrow {
            position: absolute;
            right: 0;
            bottom: 0;            
            width: 66px;
            height: 51px;
            background: url('images/hp-next-arrow2.png');
            z-index: 10;
            cursor: pointer;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -webkit-backface-visibility: hidden;
        }

        .side-reviews .reviews-wrap .reviews-arrow.reviews-prev {
            right: auto;
            left: 0;
            background: url('images/hp-prev-arrow2.png');            
        }

        .side-reviews .reviews-wrap .reviews-arrow:hover {
            opacity: .7;
        }


/* 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 { 
    position: relative;
    padding-top: 30px;
    color: #000;
    font-size: 45px;
    line-height: 1;
    font-family: var(--secondary-font);
    font-weight: 400;
}
    
    #content .entry-title:before,
    #content .archive-title:before {
        position: absolute;
        content: '';
        left: 0;        
        top: 0;
        width: 22px;
        height: 3px;
        background: #9c9065;
    }

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

}

    .hp-quick-search .bootstrap-select.btn-group {
        /*select width, display and position are set here and set to !important
        no height attribute. padding in .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle sets the height*/  
        width:100%;
    }

    .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
        /*form appearance should be set here
        no height attribute. set the height by setting the padding*/
        display: block;
        height: 37px;
        background: transparent;
        border: 0;
        border-bottom: 1px solid #8c8b8b;
        color: #fff;
        outline: 0;
        -webkit-appearance: none;
        border-radius: 0px;
        padding-left: 0px;
    }

    .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option{
   font-size: 16px!important; 
}

.qs-inner #cityid{overflow:hidden; height: 37px; width: 100%;}


/*dropdown height*/
.hp-quick-search .dropdown-menu.open{
    max-height: 300px !important;
}
.hp-quick-search ul.dropdown-menu.inner{
    max-height: 150px !important;
}


/**IP QS**/

.ip-quick-search .bootstrap-select.btn-group {
        /*select width, display and position are set here and set to !important
        no height attribute. padding in .hp-quick-search .bootstrap-select.btn-group .dropdown-toggle sets the height*/  
        width:100%;
    }

    .ip-quick-search .bootstrap-select.btn-group .dropdown-toggle {
        /*form appearance should be set here
        no height attribute. set the height by setting the padding*/
        display: block;
        height: 37px;
        background: transparent;
        border: 0;
        border-bottom: 1px solid #8c8b8b;
        color: #fff;
        outline: 0;
        -webkit-appearance: none;
        border-radius: 0px;
        padding-left:0px; 
    }

    .ip-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option{
        font-size: 16px!important; 
}

    .side-qs #cityid{overflow:hidden; height: 37px; width: 100%;}


/*dropdown height*/
    .ip-quick-search .dropdown-menu.open{
    max-height: 300px !important;
}
    .ip-quick-search ul.dropdown-menu.inner{
    max-height: 250px !important;
}

.error404 div.wpcf7-response-output {
    position: absolute;
    width: 100%;
    text-align: center;
}

#ihf-main-container ul {
    margin-left: 0;
}
    
    #ihf-main-container .chosen-container .chosen-results {
        padding: 0 !important;
    }

#ihf-agent-sellers-rep {
    padding: 0 15px;
    margin-bottom: 20px;
}

#ihf-main-container .mc-total-payment-subline {
    color: #666 !important;
}

.f-newsletter::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/hp-newsletter-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.hp-fc::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/hp-fc-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}
	 
.signupnewsletter {
    width: 100%;
    max-width: 300px;
}

#ihf-main-container .open>.dropdown-menu {
    z-index: 9999;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

