/*
Theme Name: Amante II - Responsive Real Estate Wordpress Theme from Agent Image
Description: Amante II is a modern and responsive real estate Wordpress theme. Customize your branding, add widgets and integrate IDX search.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.0.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

*/


/*******************************************************
 *
 * 1. Custom CSS
 *
 *******************************************************/

/* Global */

@import url('https://fonts.googleapis.com/css2?family=Cabin|Frank+Ruhl+Libre:wght@300;400;500;700;900|Lato:wght@100;300;400;700;900&display=swap');

:root {
    /* font families */
    --body-font: 'Lato', sans-serif;


    --heading-font: 'Frank Ruhl Libre', serif;

    /* Primary color (Section BG, etc.) */
    --primary-color: #CFE9EC;

    /*Secondary color (hovers, accents, etc.)*/
    --secondary-color: #CFE9EC;

    /* Primary overlay color */
    --primary-overlay-color: #111111;

    /* Secondary overlay color */
    --secondary-overlay-color: #96DED1;

    /*btn dark color*/
    --btn-border-color-dark: rgba(207,233,236,.3);
    --btn-border-color-dark-hover: #CFE9EC;

    /*btn light color*/
    --btn-border-color-light: rgba(207,233,236,.3);
    --btn-border-color-light-hover: #CFE9EC;

    /*text colors*/
    --primart-body-color: #1c1c1c;
    --body-text-color-dark: #666666;

    --heading-text-color-dark: #212121;
    --subheading-text-color-dark: #b0b0b0;

    --body-text-color-light: #d1d1d1;
    --heading-text-color-light: #fff;


    /*borders*/
    --border-color-light: rgba(28,28,28,.2);
}

body{
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	background: #FFF;
	color: var(--body-text-color-dark);
	margin: 0;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

a {
    color: inherit;
}
    a:hover, a:focus, .slick-slide, .slick-slide a:hover, .swiper-pagination-bullet {
        outline: none;
        text-decoration: none;
    }
    a:hover,
    em.ai-mobile-phone a:hover {
        color: var(--secondary-color);
    }
    #content a:not(.btn-a):hover {
        color: var(--body-text-color-dark);
    }

select:focus, input:focus, button[type="button"]:focus, textarea:focus {
    outline: none;
}

.font-sans {
    font-family: var(--heading-font), sans-serif;
}
.font-serif {
    font-family: var(--heading-font), serif;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
    .flex:before, .flex:after {
        display: none;
    }
    .dir-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }
    .dir-col-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse wrap;
        flex-flow: column-reverse wrap;
    }
    .dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
        flex-flow: row-reverse wrap;
    }
    .al-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .al-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .al-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .ju-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .ju-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .ju-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .ju-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.overlay-bg {
    position: relative;
    z-index: 1;
}
    .overlay-bg:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background: var(--primary-overlay-color);
    }

html.safari .overlay-bg {
    background-attachment: scroll;
}

#featured-communities a.btn-a:hover {
	color: #000;
    background: #CFE9EC;
}

/*fixed header*/
header.header-wrapper.animate-in,
header.header-wrapper.active {
    background: #000000;
    position: fixed;
}
header.header-wrapper.animate-in {
    transform: translate(0,-100%);
}
header.header-wrapper.active {
    transform: translate(0,0);
    padding: 19px 0;
    transition: transform .3s, background .3s;
}
    header.active .logo a {
        font-size: 9px;
        margin-bottom: 4px;
    }
        .header-wrapper .logo img {
            width: 100%;
            max-width: 215px;
          /*  background: #000;*/
            padding: 5px;
        }
        .header-wrapper.active .logo img {
            background: transparent;
        }
        header.active .logo a strong {
            font-size: 24px;
            margin-bottom: 5px;
        }
    header.active #nav > li > a {
        padding-top: 12px;
    }
        header.active #nav > li > .sub-menu {
            padding-top: 20px;
        }
header.header-wrapper.animate-out {
    transform: translate(0,-100%);
}

header.header-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 102;
    padding: 34px 0;
    transform: translate(0,0);
}
.admin-bar header.header-wrapper {
    top: 32px;
}
    header.header-wrapper .logo {
        position: relative;
    }
        .logo a {
            display: inline-block;
            font-size: 12px;
            letter-spacing: .34em;
            line-height: 1;
            text-transform: uppercase;
            text-align: right;
            color: #fff;
        }
        header.header-wrapper:not(.active) .logo a{
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
            .logo strong {
                display: block;
                font-weight: 600;
                font-size: 26px;
                letter-spacing: .06em;
                margin-bottom: 7px;
                font-family: var(--heading-font), serif;
            }
    header.header-wrapper .navigation {
        text-align: right;
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        white-space: nowrap;
    }

header.header-wrapper.active .navigation {
    align-items: center;
}
        #nav {
            position: relative;
            display: inline-block;
            vertical-align: middle;
        }
            header.header-wrapper:not(.active) #nav{
                text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
            }
            #nav li {
                position: relative;
            }
                #nav li a {
                    display: block;
                    color: #fff;
                    font-size: 14px;
                    /*letter-spacing: .06em;*/
                    font-family: 'Lato', sans-serif;
                    text-transform: uppercase;
                    line-height: 1;
                    font-weight: 700;
                    position: relative;
                }
            #nav > li {
                display: inline-block;
                vertical-align: top;
                margin-left: 14px;
            }
                #nav > li:first-child {
                    margin-left: 0;
                }
                #nav > li > a {
                    padding-bottom: 12px;
                }
                    #nav > li > a:before {
                        content: '';
                        position: absolute;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        height: 2px;
                        background: #F4F4F4;
                        transform-origin: center;
                        -webkit-transform: scaleX(0);
                            -ms-transform: scaleX(0);
                                transform: scaleX(0);
                    }
                        #nav > li:hover > a:before {
                        -webkit-transform: scaleX(1);
                            -ms-transform: scaleX(1);
                                transform: scaleX(1);
                        }
                #nav .sub-menu {
                    list-style: none outside none;
                    margin: 0;
                    padding: 0;
                    position: absolute;
                    width:100%;
                    min-width:180px;
                    text-align: center;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                    -webkit-transform: translate(0, 10px);
                        -ms-transform: translate(0, 10px);
                            transform: translate(0, 10px);
                }
                    #nav > li > .sub-menu  {
                        padding-top: 10px;
                        left: 50%;
                        -webkit-transform: translate(-50%, 10px);
                            -ms-transform: translate(-50%, 10px);
                                transform: translate(-50%, 10px);
                    }
                    #nav .sub-menu a {
                        color: #FFFFFF;
                        display: block;
                        padding: 10px;
                        -webkit-transition: background .3s, color .3s;
                        -o-transition: background .3s, color .3s;
                        transition: background .3s, color .3s;
                    }
                        #nav .sub-menu li:hover > a {
							color:#000;
                            background-color: var(--primary-color);
                            text-decoration: none;
                        }
                        #nav .sub-menu .sub-menu {
                            margin-left: 100%;
                            top:0;
                        }
                            #nav li:hover > .sub-menu {
                                opacity: 1;
                                visibility: visible;
                                pointer-events: all;
                                -webkit-transform: translate(0,0);
                                    -ms-transform: translate(0,0);
                                        transform: translate(0,0);
                            }
                            #nav > li:hover > .sub-menu {
                                -webkit-transform: translate(-50%,0);
                                    -ms-transform: translate(-50%,0);
                                        transform: translate(-50%,0);
                            }
                            #nav .sub-menu li {
                                position: relative;
                                z-index: 1;
                            }
                                #nav .sub-menu li:before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    right: 0;
                                    bottom: 0;
                                    z-index: -1;
                                    background: var(--primary-overlay-color);
                                    opacity: .85;
                                    -webkit-transition: background .3s, opacity .3s;
                                    -o-transition: background .3s, opacity .3s;
                                    transition: background .3s, opacity .3s;
                                }
                                    #nav .sub-menu li:hover:before {
                                        background: var(--secondary-color);
                                    }
    
    /*easing*/
    #nav > li > a:before, #nav .sub-menu {
        -webkit-transition: opacity .3s, visibility, .3s, -webkit-transform .3s;
        transition: opacity .3s, visibility, .3s, -webkit-transform .3s;
        -o-transition: transform .3s, opacity .3s, visibility, .3s;
        transition: transform .3s, opacity .3s, visibility, .3s;
        transition: transform .3s, opacity .3s, visibility, .3s, -webkit-transform .3s;
    }

/*burger menu icon*/
.burger-menu-nav{
    display: none !important;
}

#site-offcanvas-menu .burger-menu-nav{
    display: block !important;
}

.site-burger-holder {
    display: inline-block;
    margin-left: 30px;
}

header.header-wrapper.active .site-burger-holder {
    vertical-align: middle;
}

.burger-menu {
    width: 38px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .burger-menu span{
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        margin: 0 0 0 auto;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .burger-menu span:first-child{
            width: calc(100% - 20px);
        }

            .burger-menu span:last-child{
                width: calc(100% - 10px);
            }

                .burger-menu span:nth-child(2){
                    margin: 5px auto;
                }

                    .burger-menu:hover span{
                        background: var(--primary-color);
                    }

/*Offcanvas*/
.admin-bar .site-offcanvas {
    top: 32px;
}

.site-offcanvas {
    position: fixed;
    z-index: 1001;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas.offcanvas-open {
    visibility: visible;
    pointer-events: auto;
}

.site-offcanvas.offcanvas-open:before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-offcanvas.offcanvas-open .site-offcanvas-inner {
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.site-offcanvas:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.site-offcanvas .site-offcanvas-inner,
.site-offcanvas .site-offcanvas-header,
.site-offcanvas .site-offcanvas-main,
.site-offcanvas .site-offcanvas-footer {
    position: relative;
    width: 100%;
}

.site-offcanvas .site-offcanvas-inner {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    overflow: hidden;
    overflow-y: auto;
    padding: 70px 30px 50px;
    width: 440px;
    max-width: calc(100% - 30px);
    height: 100%;
    box-shadow: -5px 0 5px -5px #999999;
    margin-left: auto;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-offcanvas .site-offcanvas-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-close:hover {
    color: var(--primary-color);
}

.site-offcanvas .site-offcanvas-close i {
    display: block;
    font-style: normal;
}

.site-offcanvas .site-offcanvas-main {
    padding: 30px 0;
}

.site-offcanvas .site-offcanvas-header:not(.hidden) + .site-offcanvas-main {
    margin: auto 0;
}

.site-offcanvas .site-offcanvas-footer {
    margin-top: auto;
}

.site-offcanvas .site-offcanvas-logo {
    text-align: center;
}

.site-offcanvas .site-offcanvas-logo a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas-logo img {
    filter: brightness(0);
    width: 100%;
    max-width: 230px;
    margin: auto;
}

.site-offcanvas .site-offcanvas-logo a:hover {
    /*color: var(--primary-color);*/
}

.site-offcanvas .site-offcanvas-navigation {
    position: relative;
}

.site-offcanvas .site-offcanvas-navigation ul {
    display: block;
    margin: 0;
    padding: 0;
}

.site-offcanvas .site-offcanvas-navigation ul li {
    display: block;
}

.site-offcanvas .site-offcanvas-navigation ul li ul,
.site-offcanvas .site-offcanvas-navigation ul li + li {
    border-top: 1px solid #f0f0f0;
}

.site-offcanvas .site-offcanvas-navigation ul li > a {
    display: block;
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-navigation ul li:hover > a {
    color: var(--secondary-color);
}

.site-offcanvas .site-offcanvas-navigation ul ul.sub-menu {
    display: none;
}

.site-offcanvas .site-offcanvas-navigation ul ul li {
    padding-left: 15px;
}

.site-offcanvas .site-offcanvas-navigation ul ul li a {
    font-size: 14px;
}

.site-offcanvas .site-offcanvas-navigation ul ul ul {
    margin-left: -15px;
}

.site-offcanvas .site-offcanvas-navigation ul ul ul li {
    padding-left: 30px;
}

.site-offcanvas .site-offcanvas-info {
    display: block;
    margin: 0;
    padding: 0;
}

.site-offcanvas .site-offcanvas-info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
}

.site-offcanvas .site-offcanvas-info li + li {
    margin-top: 15px;
}

.site-offcanvas .site-offcanvas-info li i {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    font-style: normal;
    font-size: 14px;
    margin-right: 10px;
}

.site-offcanvas .site-offcanvas-info li a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-info li a:hover {
    /*color: var(--secondary-color);*/
    color: #1e5459;
}

.site-offcanvas .site-offcanvas-smi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 15px;
}

.site-offcanvas .site-offcanvas-smi li {
    padding: 15px;
}

.site-offcanvas .site-offcanvas-smi li a {
    display: block;
    color: inherit;
    font-size: 20px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-offcanvas .site-offcanvas-smi li a:hover {
    color: var(--secondary-color);
    color: #1e5459;
}

/*section 1*/
section.section-1 {
    position: relative;
}
    #slideshow {
        position: relative;
    }
    #properties-image {
        font-size: 0;
    }
        #properties-image .property-image-slide ~ .property-image-slide {
            display: none;
        }
        #properties-image .property-image-slide {
            position: relative;
        }
            #properties-image .property-image-slide:before {
                /*
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,.45);
                */
            }
        #slideshow .property-image-slide img,
        #slideshow .property-image-slide canvas {
            display: block;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

    #properties-details {
        width: 1278px;
        max-width: 100%;
        margin: 0 auto;
        position: absolute;
        bottom: 72px;
        left: 2.5%;
        right: 0;
        overflow: hidden;
    }
        .properties-details-slider {
            text-align: center;
        }
        #properties-details .slick-current .property-details-slide {
            opacity: 1;
        }
        #properties-details .property-details-slide {
            opacity: 0;
            color: #fff;
            line-height: 1;
            text-align: left;
            display: inline-block;
            vertical-align: top;
            transition: opacity .3s;
        }
            #properties-details.loaded .property-details-slide {
                opacity: 0.7;
            }
            .property-details-inner {
                border-left: 2px solid #fff;
                padding: 0 12px 2px;
                text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
            }
            #properties-details .property-index {
                font-weight: 700;
                font-style: normal;
                font-size: 12px;
                display: block;
                margin-bottom: 9px;
            }
            #properties-details .property-price {
                font-weight: 600;
                font-size: 22px;
                line-height: 1;
                display: block;
                margin-bottom: 6px;
            }
            #properties-details .property-address {
                font-size: 14px;
                display: block;
            }

/*section 2*/
section.section-2 {
    background: fixed url(images/bg-quick-search.jpg) center/cover no-repeat;
}
    section.section-2.overlay-bg:before {
        opacity: .85;
    }
    #quick-search {
        padding: 88px 0 72px;
        overflow: visible;
    }
        #quick-search .bootstrap-select.btn-group .dropdown-menu.inner {
            max-height: 230px !important;
        }
        #quick-search .bootstrap-select.btn-group .dropdown-menu {
            top: 50px;
            bottom: auto;
        }
        #quick-search h2 {
            text-align: center;
            color: #fff;
            margin-bottom: 50px;
        }
        .qs-form {
            font-size: 0;
        }
            .qs-icon, .qs-field {
                display: inline-block;
                vertical-align: middle;
            }
            .qs-icon {
                width: 6.15%;
                color: #fff;
                font-size: 31px;
                margin-top: 4px;
            }
            .qs-field {
                padding-right: 8px;
                position: relative;
            }
                .qs-field i {
                    font-size: 10px;
                    color: #fff;
                    position: absolute;
                    right: 24px;
                    top: 44%;
                    pointer-events: none;
                }
                .qs-field select,
                .qs-field input[type="text"],
                .qs-field button[type="button"] {
                    width: 100%;
                    height: 52px;
                    border: none;
                    border-radius: 0;
                    border-bottom: 1px solid rgba(243,243,243,.3);
                    font-size: 14px;
                    font-weight: 600;
                    letter-spacing: .02em;
                    color: #fff;
                    background: transparent;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    padding: 0;
                }
                    .qs-field select {
                        padding-right: 25px;
                    }
                        .qs-field select::-ms-expand {
                            display: none;
                        }
                    .qs-field select option {
                        color: #000;
                    }
                .qs-field button[type="button"] {
                    background: transparent !important;
                    color: #fff !important;
                    box-shadow: none !important;
                    text-shadow: none !important;
                    padding: 0 25px 0 0 !important;
                }
                .qs-field button[type="button"].dropdown-toggle:focus {
                    outline: none !important;
                }
                    .qs-field button[type="button"] span {
                        color: #fff !important;
                        font-size: 14px !important;
                    }
            .qs-field select.qs-select {
                overflow: hidden;
            }
                .qs-field .qs-select input {
                    height: 34px;
                    font-size: 14px;
                    border: 1px solid #ccc;
                    color: #555;
                }
            .qs-lg {
                width: 20.95%;
            }
            .qs-sm {
                width: 10.28%;
            }
            .qs-btn {
                width: 10.83%;
                padding-right: 0;
                padding-left: 12px;
            }
                .qs-btn input[type="submit"] {
                    width: 100%;
                    height: 52px;
                    border: none;
                    font-size: 16px;
                    letter-spacing: .26em;
                    color: #fff;
                    text-transform: uppercase;
                    background: transparent;
                    padding: 0;
                    border: 1px solid rgba(243,243,243,.3);
                    -webkit-transition: color .3s;
                    -o-transition: color .3s;
                    transition: color .3s;
                }
                    .qs-btn input[type="submit"]:hover {
                        background: var(--btn-border-color-light-hover);
                        border-color: var(--btn-border-color-light-hover);
                        color: #2D2D2D;
                    }
        .qs-cta {
            text-align: center;
            margin-top: 76px;
            font-size: 0;
        }
            .qs-cta a.btn-a {
                margin: 0 15px 15px;
                width: 369px;
            }
                a.btn-a,
                .btn-a {
                    display: inline-block;
                    vertical-align: top;
                    max-width: 100%;
                    width: 338px;
                    /*height: 64px;*/
                    padding: 26px 0 23px;
                    font-size: 13px;
                    letter-spacing: .46em;
                    color: var(--heading-text-color-dark);
                    font-family: var(--heading-font), serif;
                    text-transform: uppercase;
                    border: 1px solid var(--btn-border-color-dark);
                    background: transparent;
                    text-align: center;
                    -webkit-transition: background .3s, color .3s, border .3s;
                    -o-transition: background .3s, color .3s, border .3s;
                    transition: background .3s, color .3s, border .3s;
                }
                    a.btn-a:hover,
                    .btn-a:hover {
                        background: var(--btn-border-color-dark-hover);
                        border-color: var(--btn-border-color-dark-hover);
                        /*color: var(--primary-color);*/
                        color: #000;
                    }
                a.btn-a.light,
                .btn-a.light {
                    color: #fff;
                    border: 1px solid var(--btn-border-color-light);
                }
                    a.btn-a.light:hover,
                    .btn-a.light:hover {
                        background: var(--btn-border-color-light-hover);
                        border-color: var(--btn-border-color-light-hover);
                        color: #2D2D2D;
                    }

                a.btn-a.center,
                .btn-a.center {
                    margin-left: auto;
                    margin-right: auto;
                    display: block;
                }

section.section-3 {
    padding: 44px 39px;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

    #welcome {
        position: relative;
    }

        .welcome-left, .welcome-right {
            width: 50%;
        }

        .welcome-text {
            text-align: center;
            width: 78%;
            margin: 0 auto 0;
        }
            .welcome-text .section-title-a {
                margin-bottom: 62px;
            }
            .section-title-a {
                font-family: var(--heading-font), serif;
                letter-spacing: .06em;
                line-height: 1;
                color: var(--heading-text-color-dark);
                font-weight: 600;
                font-size: 40px;
                text-transform: uppercase;
            }
                .section-title-a span {
                    display: block;
                    font-family: var(--body-font), Sans-serif;
                    letter-spacing: .16em;
                    color: var(--subheading-text-color-dark);
                    font-size: 20px;
                    font-weight: 400;
                    margin-bottom: 27px;
                }
            .welcome-text p {
                font-size: 16px;
                letter-spacing: .02em;
                line-height: 1.75;
                font-weight: 300;
            }
            .welcome-text a.btn-a {
                display: block;
                margin-top: 80px;
                width: 400px;
                padding-left: 10px;
                padding-right: 10px;
            }
            .welcome-text a.btn-a:hover {
                background: #CFE9EC;
				color: #000;
            }
        .welcome-agent {
            position: relative;
        }
            .welcome-agent img {
                width: 100%;
                display: block;
            }

section.section-4 {
    padding: 16px 28px;
}
    #call-to-action {

    }
        .cta-list {

        }
            .cta {
                width: 33.3333333333%;
                padding: 0 11px;
            }
                .cta a {
                    display: block;
                    position: relative;
                }
                    .cta a:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: var(--primary-overlay-color);
                        opacity: .85;
                        z-index: 1;
                        -webkit-transition: background .3s, opacity .3s;
                        -o-transition: background .3s, opacity .3s;
                        transition: background .3s, opacity .3s;
                    }
                        .cta a:hover:before {
                            opacity: .45;
                        }
                    .cta a img {
                        display: block;
                        width: 100%;
                        min-height: 190px;
                        object-fit: cover;
                        -webkit-transition: -webkit-filter .3s;
                        transition: -webkit-filter .3s;
                        -o-transition: filter .3s;
                        transition: filter .3s;
                        transition: filter .3s, -webkit-filter .3s;
                        -webkit-filter: grayscale(1);
                                filter: grayscale(1);
                    }
                        .cta a:hover img {
                            -webkit-filter: grayscale(0);
                                    filter: grayscale(0);
                        }
                    .cta-holder {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        z-index: 1;
                    }
                    .cta-details {
                        position: absolute;
                        top: 50%;
                        left: 0;
                        right: 0;
                        transform: translateY(-50%);
                        text-align: center;
                        color: #fff;
                        font-size: 36px;
                        z-index: 2;
                    }
                        .cta-details span {
                            font-size: 18px;
                            color: #fff;
                            letter-spacing: .26em;
                            margin-bottom: 16px;
                        }

                    .cta-details:after {
                        content: '';
                        display: block;
                        width: 64px;
                        height: 2px;
                        background: var(--secondary-color);
                        margin: 47px auto 0;
                    }

section.section-5 {
    padding: 77px 0 70px;
}
    #featured-communities {
        position: relative;
    }
        #featured-communities .section-title-a {
            text-align: center;
            margin-bottom: 69px;
        }
            #featured-communities .section-title-a span {
                margin: 21px 0 0;
                font-size: 14px;
                letter-spacing: .02em;
                text-transform: initial;
            }
        .fc-list {
            font-size: 0;
        }
            a.fc {
                display: inline-block;
                vertical-align: top;
                position: relative;
                width: 33.333333%;
            }
                a.fc:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: var(--primary-overlay-color);
                    opacity: .15;
                    -webkit-transition: background .3s, opacity .3s;
                    -o-transition: background .3s, opacity .3s;
                    transition: background .3s, opacity .3s;
                }
                    a.fc:hover:before {
                        background: var(--secondary-overlay-color);
                        opacity: .5;
                    }
                .fc canvas {
                    display: block;
                    width: 100%;
                    background-size: cover;
                    background-position: center;
                }
                .fc-details {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 29px;
                    font-weight: 600;
                    letter-spacing: .02em;
                    color: #fff;
                    text-transform: uppercase;
                    text-align: center;
                    z-index: 2;
                    padding: 15px;
                }

        #featured-communities a.btn-a {
            margin-top: 68px;
            max-width: calc(100% - 30px);
        }

section.section-6 {
    padding: 70px 0 124px;
    background: #f5f5f5;
}
    #testimonials {
        padding: 0 39px;
    }
        #testimonials .container {
            max-width: 100%;
        }
        #testimonials .section-title-a {
            text-align: center;
            margin-bottom: 50px;
        }
            #testimonials .section-title-a:before {
                content: '\e800';
                display: block;
                font-style: normal;
                font-weight: normal;
                speak: none;
                text-decoration: inherit;
                text-align: center;
                font-family: "fontello";
                font-variant: normal;
                text-transform: none;
                color: var(--subheading-text-color-dark);
                font-size: 45px;
                margin-bottom: 33px;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
            #testimonials .section-title-a span {
                margin: 21px 0 0;
                font-size: 14px;
                letter-spacing: .02em;
                text-transform: uppercase;
            }
        .testi-wrapper {
            position: relative;
        }
        .testi-list {
            position: relative;
        }
            .testi {
                text-align: center;
                padding: 0 13%;
            }
                .testi p {
                    font-size: 19px;
                    line-height: 29px;
                    color: var(--body-text-color-dark);
                }
                .testi strong {
                    display: block;
                    font-weight: 700;
                    font-size: 19px;
                    color: var(--heading-text-color-dark);
                    text-transform: uppercase;
                    margin-top: 64px;
                }
                .testi a {
                    color: inherit;
                    text-decoration: none;
                    transition: all 0.3s ease;
                }
                    .testi a:hover {
                        opacity: 0.65;
                    }

            #testimonials .slick-arrow {
                outline: none;
                border: none;
                background: none;
                font-size: 14px;
                font-weight: 600;
                letter-spacing: .18em;
                color: var(--heading-text-color-dark);
                text-transform: uppercase;
                padding: 10px 0;
                position: absolute;
                top: -21px;
                z-index: 2;
                opacity: .5;
                -webkit-transition: opacity .3s;
                -o-transition: opacity .3s;
                transition: opacity .3s;
            }
                #testimonials .slick-arrow:hover {
                    opacity: 1;
                    color: #96DED1;
                }
            #testimonials .slick-prev {
                left: 11px;
            }
            #testimonials .slick-next {
                right: 11px;
            }
                #testimonials .slick-prev:after,
                #testimonials .slick-next:before {
                    content: '';
                    display: inline-block;
                    width: 86px;
                    height: 1px;
                    background: rgba(42,42,42,1);
                }
                    #testimonials .slick-prev:after {
                        margin-left: 16px;
                    }
                    #testimonials .slick-next:before {
                        margin-right: 16px;
                    }


section.section-7 {
    position: relative;
    background: fixed url(images/bg-parallax.jpg) center/cover no-repeat;
}
    section.section-7.overlay-bg:before {
        opacity: .9;
    }
    #headlines {
        padding: 63px 39px 81px;
        position: relative;
        z-index: 1;
    }
        #headlines:before {
            content: '';
            z-index: -1;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 53.35%;
            background: #fff;
        }
            .headline-right-inner > .textwidget,
            .headline-left-inner > .textwidget {
                height: 100%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
            }
        .headline-right {
            width: 38.15%;
            padding: 77px 25px 99px 0;
        }
            .headline-right-inner {
                text-align: left;
                max-width: 340px;
                height: 100%;
                margin: 0 auto;
            }
                .headline-right .section-title-a {
                    color: var(--heading-text-color-light);
                    line-height: 1.2;
                    margin-bottom: 43px;
                }
                .headline-right p {
                    font-size: 14px;
                    letter-spacing: .02em;
                    line-height: 27px;
                    color: var(--body-text-color-light);
                    margin-bottom: 30px;
                }
                .headline-right a.btn-a {
                    display: block;
                    margin: auto auto 0;
                }
        .headline-left {
            width: 61.85%;
        }
            .headline-list {
                position: relative;
            }
                a.headline {
                    display: block;
                    width: 100%;
                    margin: 22px 0;
                    position: relative;
                }
                    .headline canvas {
                        display: block;
                        width: 100%;
                        background-size: cover;
                        background-position: center;
                        min-height: 330px;
                    }
                    .headline-details {
                        position: absolute;
                        top: 0;
                        bottom: 0;
                        left: 0;
                        width: 383px;
                        max-width: 100%;
                        padding: 0 47px 0;
                        z-index: 1;
                    }
                        .headline-details:before {
                            content: '';
                            display: block;
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: var(--primary-overlay-color);
                            opacity: .85;
                            -webkit-transition: background .3s, opacity .3s;
                            -o-transition: background .3s, opacity .3s;
                            transition: background .3s, opacity .3s;
                            z-index: -1;
                        }
                            a.headline:hover .headline-details:before {
                                opacity: .9;
                            }
                        .headline-details h3 {
                            font-weight: 600;
                            font-size: 31px;
                            letter-spacing: .02em;
                            line-height: 1;
                            color: var(--heading-text-color-light);
                            text-transform: uppercase;
                            margin-bottom: 22px;
                        }
                            .headline-details h3:before {
                                content: '';
                                display: block;
                                width: 64px;
                                height: 2px;
                                background: var(--secondary-color);
                                margin-bottom: 22px;
                            }
                        .headline-details p {
                            font-size: 17px;
                            letter-spacing: .02em;
                            font-weight: 300;
                            line-height: 26px;
                            color: var(--body-text-color-light);
                            margin-bottom: 48px;
                        }
                        .headline-details span {
                            display: block;
                            font-size: 13px;
                            letter-spacing: .46em;
                            font-family: var(--heading-font), serif;
                            color: var(--heading-text-color-light);
                            text-transform: uppercase;
                        }
                .headline-left a.btn-a {
                    display: block;
                    margin: 28px auto 11px;
                }


section.section-8 {
    position: relative;
    background: fixed url(images/bg-parallax-2.jpg) center/cover no-repeat;
    color: var(--heading-text-color-light);
}
    section.section-8.overlay-bg:before {
        opacity: .9;
    }
    #work-with-us {
        padding: 66px 0 70px;
    }
        #work-with-us p {
            font-size: 17px;
            line-height: 23px;
            letter-spacing: .02em;
        }
        #work-with-us .section-title-a {
            color: inherit;
            line-height: 1.2;
            width: 35.15%;
            padding-right: 6%;
        }
        .wwu-text {
            width: 64.85%;
            margin-top: 4px;
            padding-right: 6%;
        }
            .wwu-text p {
                font-weight: 300;
                margin-bottom: 42px;
            }
            .wwu-text a.btn-a {
                width: 272px;
            }
        .wwu-form {
            margin-top: 4px;
            position: relative;
        }
            .wwu-form p {
                font-weight: 600;
                margin-bottom: 30px;
            }
            .wwu-form input[type="email"] {
                width: 100%;
                height: 50px;
                border: none;
                border-bottom: 1px solid #fff;
                font-size: 14px;
                font-style: italic;
                font-weight: 600;
                letter-spacing: .02em;
                background: transparent;
            }
            .wwu-form label {
                display: inline;
            }
            .wwu-form input[type="submit"] {
                display: block;
                font-family: var(--heading-font), serif;
                text-transform: uppercase;
                letter-spacing: .46em;
                background: transparent;
                padding: 0;
                border: none;
                font-size: 13px;
                margin-top: 48px;
                padding: 10px 0;
            }
                .wwu-form input[type="submit"]:hover {
                    color: var(--primary-color);
                    text-shadow: 0 0 1px var(--primary-color);
                }
            .wwu-form .ajax-loader {
                position: absolute;
                bottom: -12px;
                left: 0;
                margin: 0;
            }
            .wwu-form span.wpcf7-not-valid-tip {
                font-size: 12px;
            }
            .wwu-form .wpcf7-response-output {
                text-align: center;
                margin: 0;
                font-size: 13px;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
            }

section.section-9 {
    position: relative;
}
    #social-media {
        position: relative;
    }
        .smi-list {
            font-size: 0;
            text-align: center;
        }
            .smi-list a {
                display: inline-block;
                vertical-align: top;
                width: 25%;
                position: relative;
                color: #fff;
            }
                .smi-list a:before {
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    font-size: 44px;
                    z-index: 1;
                    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;
                }
                .smi-list a:after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: var(--primary-overlay-color);
                    opacity: .3;
                    -webkit-transition: background .3s, opacity .3s;
                    -o-transition: background .3s, opacity .3s;
                    transition: background .3s, opacity .3s;
                }
                    .smi-list a:hover:after {
                        opacity: .5;
                    }
                .smi-list a img {
                    display: block;
                    width: 100%;
                }


/*footer*/
footer.footer-wrapper {
    background: var(--secondary-color);
    padding: 86px 0 36px;
}
    .footer-top {

    }
        .footer-top .logo {

        }

            .footer-top .logo img {
                max-width: 160px;
                
            }

            .footer-top .logo .footer-logo-list > div:first-child img {
                max-width: 300px;
            }

            .footer-top .logo img.invert{
                filter: invert(1);
            }

        .footer-top .footer-logo-list {
            display: flex;
            flex-flow: row wrap;
        }

        .footer-top .footer-logo-list > div + div {
            margin-left: 50px;
        }

        .footer-top .contact-info {
            font-size: 18px;
            color: #000;
            line-height: 1;
        }
            .contact-info .contact {
                width: 50%;
                margin-top: 2px;
            }
                .contact span.dre {
                    font-size: 12px;
                }
                .contact span a {
                }
                .contact span a:hover {
                    color: #1e5459;
                }
            .footer-top .contact + .contact {
                padding-left: 13px;
            }
            .footer-top .contact.smi {
                display: none;
            }
            .ip-container .footer-top .contact.smi {
                position: relative;
                margin-left: auto;
                display: flex;
                flex-flow: row wrap;
            }
                .footer-top .contact.smi span {
                    padding: 0 10px;
                }
            .contact strong,
            .contact span {
                display: block;
                margin-bottom: 14px;
            }
            .contact strong {
                font-weight: 600;
                font-size: 18px;
            }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.1);
        margin-top: 84px;
        color: #000;
        padding: 36px 0 0;
    }
        .footer-disclaimer {
            font-size: 14px;
            margin-bottom: 15px;
            color: #000;
        }
        .footer-copyright {
            font-size: 13px;
        }
        .footer-icons {
            font-size: 23px;
            text-align: right;
        }


/*keyframes | Custom animations*/
.animated.cu-fadeInUp {
    animation-name: cu-fadeInUp;
}
.animated.cu-fadeInRight {
    animation-name: cu-fadeInRight;
}
.animated.cu-fadeInLeft {
    animation-name: cu-fadeInLeft;
}
.animated.cu-fadeInDown {
    animation-name: cu-fadeInDown;
}

@-webkit-keyframes cu-fadeInUp {
    from { opacity: 0; -webkit-transform: translate3d(0,50px,0); transform: translate3d(0,50px,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@keyframes cu-fadeInUp {
    from { opacity: 0; -webkit-transform: translate3d(0,50px,0); transform: translate3d(0,50px,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@-webkit-keyframes cu-fadeInRight {
    from { opacity: 0; -webkit-transform: translate3d(50px,0,0); transform: translate3d(50px,0,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@keyframes cu-fadeInRight {
    from { opacity: 0; -webkit-transform: translate3d(50px,0,0); transform: translate3d(50px,0,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@-webkit-keyframes cu-fadeInLeft {
    from { opacity: 0; -webkit-transform: translate3d(-50px,0,0); transform: translate3d(-50px,0,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@keyframes cu-fadeInLeft {
    from { opacity: 0; -webkit-transform: translate3d(-50px,0,0); transform: translate3d(-50px,0,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@-webkit-keyframes cu-fadeInDown {
    from { opacity: 0; -webkit-transform: translate3d(0,-50px,0); transform: translate3d(0,-50px,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}
@keyframes cu-fadeInDown {
    from { opacity: 0; -webkit-transform: translate3d(0,-50px,0); transform: translate3d(0,-50px,0); }
    to { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}

/*keyframes | Custom animations*/

/*******************************************************
 *
 * 2. IP Styles
 *
 *******************************************************/
.ip-banner-wrap {
    position: relative;
}

.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, .45);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 300px;
    background-color: #f9f7f7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(images/ip-banner.jpg);
}

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

.ip-banner-breadcrumbs {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.023em;
    text-transform: uppercase;
    color: #fff;
}

/** Inner Page Default Breadcrumbs */
#inner-page-wrapper p#breadcrumbs {
    display: none;
}
/** End of Inner Page Default Breadcrumbs */

/* 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%; float: left; }
#content-full #content:after {
    content: '';
    display: table;
    clear: both;
}

/* 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 {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--primart-body-color);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    margin: 34px 0 61px;
    padding: 0 15px;
}
    #content .entry-title span,
    #content .archive-title span {
        display: block;
        font-family: var(--body-font);
        font-size: 14px;
        letter-spacing: .02em;
        color: var(--subheading-text-color-dark);
        text-transform: initial;
        font-weight: 400;
        margin-top: 3px;
    }

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--primart-body-color);
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1.1;
}

#inner-page-wrapper {
    margin-bottom: 58px;
}

.page-featured-photo {
    position: relative;
    padding: 0 39px;
    margin-bottom: 22px;
}
    .page-featured-photo img {
        display: block;
        width: 100%;
    }
    #content .page-featured-photo small {
        display: block;
        text-align: right;
        font-style: italic;
        letter-spacing: .04em;
        font-size: 14px;
        color: var(--body-text-color-dark);
        margin-top: 13px;
    }

.page-qoute {
    font-style: italic;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: .02em;
    color: var(--body-text-color-dark);
    padding-right: 30px;
    margin-top: 27px;
}

#content p {
    margin: 28px 0;
    line-height: 1.75;
    letter-spacing: .02em;
    font-weight: 300;
}

#content p#breadcrumbs {
    margin: 0;
}
#inner-page-wrapper > div:not(.container) #content p#breadcrumbs {
    padding: 0 39px;
}

/*ip sections*/
section.ip-section-1 {
    padding: 0 28px;
}
    section.ip-section-1 .cta a img {
        height: 207px;
        object-fit: cover;
    }
    section.ip-section-1 .cta .cta-details:after {
        margin-top: 23px;
    }

section.ip-section-2 {
    padding: 39px 39px;
}
    #contact-us {
        /*margin-top: 152px;*/
    }
        #contact-us .section-title-a {
            text-align: center;
        }
        .contact-form {
            width: 50%;
            margin: 0 auto;
        }
            .contact-form-inner {
                max-width: 514px;
                width: 90%;
                margin: 0 auto;
                position: relative;
            }
            .contact-form p {
                text-align: center;
                line-height: 1.75;
                letter-spacing: .02em;
                font-weight: 300;
                margin: 11px 0 29.5px;
            }
            .contact-form input[type="text"],
            .contact-form input[type="email"],
            .contact-form textarea {
                width: 100%;
                height: 51px;
                border: none;
                border-bottom: 1px solid var(--border-color-light);
                font-style: italic;
                font-size: 14px;
                font-weight: 600;
                letter-spacing: .02em;
                color: var(--primart-body-color);
                margin: 3.5px 0;
            }
            .contact-form textarea {
                padding-top: 19px;
                height: 85px;
                resize: none;
            }
            .contact-form .btn-a {
                margin-top: 48px;
            }
			.contact-form .btn-a:hover {
				color: #000;
			}
            .contact-form div.wpcf7 .ajax-loader {
                position: absolute;
                bottom: -20px;
                left: 0;
            }
            .ip-container .contact-form div.wpcf7 .ajax-loader {
                position: absolute;
                bottom: 0;
                left: 0;
            }
            .contact-form div.wpcf7-response-output {
                position: absolute;
                left: 0;
                right: 0;
                margin: 15px 0 0;
                text-align: center;
            }
            .ip-container .contact-form div.wpcf7-response-output {
                position: static;
            }
        .contact-photo {
            width: 50%;
            display: none;
        }
            .contact-photo img {
                display: block;
                width: 100%;
            }

        .contact-map {
            position: relative;
            width: 100%;
            margin-top: 39px;
        }
        
            .contact-map iframe {
                display: block;
                width: 100%;
            }

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
    margin-top: 25px;
}
#content .archive-list > article:first-child {
    margin-top: 0;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

#content .archive-more:hover {
    background: var(--btn-border-color-dark-hover);
    border-color: var(--btn-border-color-dark-hover);
    color: #000;
}

/*#content.aios-testimonials-page .show-more-testimonials:hover {
    color: var(--primary-color) !important;
}*/
/** End of Archive Default Layout (Archive Page) */

/** Single Default Layout (Post Content) */
#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
/** End of Single Default Layout (Post Content) */

/** IHF Common Issues Fixes */
body > img,
body > iframe[name*="__bkframe"] {
    display: none;
}

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

#ihf-main-container .nav-tabs {
    margin-left: 0;
}

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

.ihf-grid-result-address {
    display: block;
}

#ihf-main-container #ihf-refine-map-search-form .checkbox,
#ihf-main-container #ihf-refine-map-search-form .col-xs-8 {
    padding: 0;
}

#ihf-agent-sellers-rep > div[style] {
    max-width: 100%;
}
/** End of IHF Common Issues Fixes */

/** Disable all element peek on mobile */
.mobile [data-aios-animation] {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/** End of Disable all element peek on mobile */

/** Slick Lazy Loader Class */
.slick-lazy-loader {
    position: relative;
    z-index: 1;
}

.slick-lazy-loader:before {
    content: "\b0170";
    position: absolute;
    z-index: -1;
    top: calc(50% - 16px);
    left: calc(50% - 16px);
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
    color: #000;
}

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

#listings-results .listings-sort .dropdown-menu.dropdown-menu-sm {
    z-index: 1001;
}
img.map-infobox-img {
    width: 100%;
}
#ihf-main-container #ihf-valuation-request-form input[type=radio] {
    height: 28px;
}
#ihf-main-container #ihf-valuation-request-form label.radio-inline {
    line-height: 29px;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


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

.page-id-68 .addtoany_content,
.page-id-72 .addtoany_content {
    padding: 0 15px;
}

.page-id-30 #inner-page-wrapper .container {
    /* width: 100%; */
    padding: 0;
}

.page-id-4665 .contact-form {
	width: 100%;
}

.page-id-4665 .contact-form-inner label {
	font-style: italic;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--primart-body-color);
	margin: 13.5px 0;
}

.page-id-4665 .contact-form-inner select {
	border: 0 none;
	width: 100%;
	background: transparent;
	border-bottom: 1px solid var(--border-color-light);
	padding-bottom: 20px;
	color: #000;
}

.page-id-4665 #content .contact-form h3 {
	text-align: center;
	font-size: 20px;
}

.page-id-4665 .ip-section-2 .col-md-5 {
	display: block;
	text-align: center;
	margin-top: 200px;
	font-size: 22px;
}

.page-id-4665 #content .ip-section-2 strong {
	font-weight: 600;
}

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


.baa-slidershow-item canvas {
    display: block;
    width: 100%;
    height: auto;
}

.baa-slidershow-item .baa-slidershow-item-inner {
    position: relative;
    background: #000;
}

.baa-slidershow-item-inner {}

.baa-slidershow-item p, .baa-slidershow-item br {
    display: none;
}

.baa-slidershow-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.baa-slidershow-item:hover img{
    opacity: 1;
}

.baa-slideshow-wrap {
    padding: 50px;
    position: relative;
}


span.baa-arrows.prev-arrow {
    font-size: 25px;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

span.baa-arrows.next-arrow {
    font-size: 25px;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

span.baa-arrows{
    cursor: pointer;
}
span.baa-arrows:hover{
    background: #000;
    color: #fff;
}

span.baa-arrows.prev-arrow br, span.baa-arrows.next-arrow br {
    display: none;
}

.baa-slidershow-item-inner > span {
    position: absolute;
    top: 10px;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(0,0,0,0.5);
    display: block;
    z-index: 1;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.baa-slidershow-item-inner > span.baa-before {
    left: 10px;
}

.baa-slidershow-item-inner > span.baa-after {
    right: 10px;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
