/*
Theme Name: LA Estate Brokerage
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.1
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. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Outfit', sans-serif;
    --font-family-title: 'Archivo Black', sans-serif;
    --font-family-chivo: 'Chivo', sans-serif;
    --font-size-default: 14px;
    --font-size-title: 55px;
    --font-color-default: #000000;
    --font-color-title: #000;

    /** Use for input, button, and any other element */
    --primary: #000;
    --secondary: #daa520;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4,0,.2,1);
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

/* Sub Menu */
ul#nav li{
    position:relative;
    display: inline-block;
}
 
ul#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 238px;
    left: 50%;
    margin-left: -115px;
    padding-top: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

ul#nav .sub-menu a {
    color: #fff;
    display: block;
    padding: 13px 10px;
    background: rgb(0 0 0 / 70%);
}

ul#nav .sub-menu a:hover{
    text-decoration: none;
    background: var(--secondary);
}
ul#nav .sub-menu .sub-menu{
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}

ul#nav li:hover > .sub-menu{
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

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

ul#nav .sub-menu li:last-child{
    border-bottom: none;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/

/* Global */

body.home {
    background: #fff;
}

body{
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    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,a:hover,a:visited,a:focus,input,input:focus,textarea,textarea:focus,select:focus,select{
    outline: none !important;
    text-decoration: none !important;
}

.slick-slide{
    outline: none !important;
}

.label-hide{
    display: none !important;
}

.no-padding {
    padding: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-margin {
    margin: 0;
}

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

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

.text-center {
    text-align: center;
}

div#main-wrapper {
    overflow: hidden;
    position: relative;
    background: linear-gradient(0deg, #000 1px, transparent 1px);
}

/*global photo*/
.global-photo {
    position: relative;
}

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

.global-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/*global title*/
.global-title {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-family-chivo);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #4f4f4f;
    display: inline-block;
    text-align: left;
}

.global-title span {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0;
    display: block;
    margin-top: 16px;
}

.global-title em {
    font-weight: 400;
    font-family: var(--font-family-default);
    font-style: normal !important;
    letter-spacing: 0;
    color: #000;
    position: relative;
    margin-right: 8px;
    border-bottom: 2px solid var(--secondary);
}

/*global btn*/
.global-btn {
    font-size: 14px;
    font-weight: 400;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    height: 60px;
    background: transparent;
    border: 1px solid #000;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-btn:hover {
    background: var(--secondary);
    border: 1px solid var(--secondary);
}

.global-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 2px;
    background: var(--secondary);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-btn:hover::after {
    background: var(--primary);
}

/*global arrow*/
.global-arrow button {
    font-size: 20px;
    font-family: var(--font-family-title);
    color: #8a8a8a;
    text-transform: uppercase;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    pointer-events: auto;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-arrow button:hover {
    opacity: .7;
}

.global-arrow em {
    position: relative;
}

.global-arrow button::after {
    content: '';
    position: absolute;
    bottom: -13px;
    margin: auto;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.global-arrow button.global-prev::after {
    right: -20px;
}

.global-arrow button.global-next::after {
    left: -20px;
}

.prev-icon {
    display: inline-block;
    width: 13px;
    height: 18px;
    background: url(images/prev.png) no-repeat;
    margin-left: 23px;
}

.next-icon {
    display: inline-block;
    width: 13px;
    height: 18px;
    background: url(images/next.png) no-repeat;
    margin-right: 23px;
}

/*site bg*/
.site-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*fixed header*/
header.main-header.show-fixed {
    background: var(--primary);
    padding: 28px 15px;
}

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    padding: 28px 15px 15px;
    width: 100%;
    background: transparent;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

        .hdr-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .hdr-logo a {
                color: #fff;
                font-size: 30px;
                letter-spacing: 1.7px;
                font-family: var(--font-family-title);
                text-transform: uppercase;
                display: block;
                position: relative;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

            .hdr-logo a span {
                display: block;
            }

                .hdr-contact span {
                    display: inline-block;
                    padding: 0 8px;
                    position: relative;
                }

                    .hdr-contact a {
                        display: block;
                        font-size: var(--font-size-default);
                        font-weight: 400;
                        color: #fff;
                        position: relative;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        .hdr-contact a:hover {
                            opacity: .7;
                        }

                            .hdr-contact {
                                font-size: 0;
                                text-align: right;
                                margin-bottom: 16px;
                                margin-right: -7px;
                            }

                                .hdr-contact span::after {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    bottom: 0;
                                    margin: auto;
                                    width: 1px;
                                    height: 100%;
                                    background: #fff;
                                }

                                    .hdr-contact span:last-child::after {
                                        display: none;
                                    }
 

/*header nav*/
nav.header-nav {
    position: relative;
    text-align: center;
}
    
    nav.header-nav ul#nav {
        font-size: 0;
        position: relative;
        z-index: 5;
    }
        
        nav.header-nav ul#nav > li {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            margin: 0 19px;
        }
            
            nav.header-nav ul#nav > li > a {
                font-size: var(--font-size-default);
                color: #fff;
                font-weight: 400;
                text-transform: uppercase;
                display: block;
                position: relative;
                z-index: 5;
                padding: 0;
                background: transparent;
                transform: translateZ(0);
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                nav.header-nav ul#nav > li > a:hover {
                    opacity: .7;
                }
                            
                    nav.header-nav ul#nav .sub-menu a {
                        font-size: var(--font-size-default);
                        font-weight: 400;
                        text-transform: uppercase;
                        margin-bottom: 1px;
                        text-align: center;
                        display: block;
                        position: relative;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        nav.header-nav ul#nav > li:first-child {
                            margin-left: 0;
                        }

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

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

    .slider-holder .aios-slider-splide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .3;
        z-index: 2;
        pointer-events: none;
    }

/*slider tagline*/
.slider-tagline-holder {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    z-index: 5;
    padding: 0 15px;
}

    .slider-tagline {
        font-size: 65px;
        font-weight: 400;
        font-family: var(--font-family-title);
        line-height: 1.2;
        text-transform: uppercase;
        text-align: center;
        color: #fff;
        pointer-events: auto;
        max-width: 1294px;
    }
span.tagline-sm {
    font-size: 45px;
    display: block;
}
/*side fixed smi*/
.side-fixed-contact {
    position: fixed;
    top: 0;
    right: 27px;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1000;
}

    .fixed-smi {
        position: relative;
    }

        .fixed-smi span{
            display: block;
            text-align: center;
            margin: 17px 0;
        }

            .fixed-smi a {
                font-size: 22px;
                color: #fff;
                margin: 0;
                pointer-events: auto;
                text-shadow: 0px 0px 4px #000;
                z-index: 4;
                display: block;
                position: relative;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .fixed-smi a:hover {
                    color: var(--secondary);
                }

                    .fsmi-divider {
                        display: block;
                        width: 1px;
                        height: 100px;
                        margin: 0 auto;
                        background: #fff;
                        box-shadow: 0px 0px 4px #000;
                    }

                        .fsmi-follow {
                            font-size: 14px;
                            font-weight: 400;
                            text-transform: uppercase;
                            color: #fff;
                            transform: rotate(-90deg);
                            position: absolute;
                            white-space: nowrap;
                            bottom: -66px;
                            left: -30px;
                            text-shadow: 0px 0px 4px #000;
                        }

/*featured listings section*/
section.featured-listings-area {
    position: relative;
    padding: 100px 15px 85px;
}

    .site-bg.fl-bg canvas {
        opacity: .1;
        filter: grayscale(1);
    }

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

            .fl-lists {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

                .fl-item {
                    width: calc(100% / 3);
                    padding: 2.5px;
                }

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

                        .fl-head {
                            height: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                            .fl-btn {
                                padding-top: 21px;
                            }

                                .fl-photo.global-photo::after {
                                    content: '';
                                    position: absolute;
                                    bottom: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
                                    pointer-events: none;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                                    .fl-item a:hover .fl-photo.global-photo::after {
                                        opacity: 0;
                                    }

                                    .fl-photo.global-photo::before {
                                        content: '';
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        background: transparent;
                                        border: 4px solid var(--secondary);
                                        pointer-events: none;
                                        z-index: 5;
                                        opacity: 0;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                        .fl-item a:hover .fl-photo.global-photo::before {
                                            opacity: 1;
                                        }

                                            .fl-item a:hover .fl-photo.global-photo img {
                                                filter: grayscale(1);
                                                opacity: .5;
                                            }

                                                .fl-photo.global-photo canvas {
                                                    background: #000;
                                                }

                                            .fl-content {
                                                position: absolute;
                                                bottom: 0;
                                                left: 0;
                                                width: 100%;
                                                display: flex;
                                                align-items: center;
                                                justify-content: flex-end;
                                                color: #fff;
                                                padding: 20px;
                                            }

                                        .fl-content > div {
                                            padding: 0 16px;
                                        }

                                    .fl-price {
                                        font-size: 25px;
                                        font-weight: 700;
                                    }

                                .fl-address {
                                    font-size: 14px;
                                    font-weight: 400;
                                    padding-right: 0 !important;
                                }

                            .fl-cta {
                                height: 100%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                flex-direction: column;
                                padding: 15px;
                            }

                        .fl-cta > a {
                            margin: 4px 0;
                            background: var(--primary);
                            color: #fff !important;
                        }

/*featured rentals section*/
section.featured-rentals-area {
    position: relative;
    padding: 100px 0;
}

    .fr-head {
        text-align: center;
        margin-bottom: 26px;
    }

        .fr-lists {
            position: relative;
            margin: 0 -7px;
        }

            .fr-item {
                /*max-width: 538px;*/
                padding: 0 7px;
            }

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

                    .fr-photo.global-photo canvas {
                        background: #000;
                    }

                        .fr-photo.global-photo img {
                            opacity: .8;
                        }

                            .fr-item a:hover .fr-photo.global-photo img {
                                opacity: .5;
                                filter: grayscale(1);
                            }

                                .fr-photo.global-photo::before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: transparent;
                                    border: 4px solid var(--secondary);
                                    pointer-events: none;
                                    z-index: 5;
                                    opacity: 0;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                                    .fr-item a:hover .fr-photo.global-photo::before {
                                        opacity: 1;
                                    }

                                        .fr-content {
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            width: 100%;
                                            display: flex;
                                            align-items: center;
                                            justify-content: space-between;
                                            padding: 36px 30px;
                                            color: #fff;
                                        }

                                            .fr-btn {
                                                padding-top: 39px;
                                            }

                                                .fr-btn a {
                                                    margin: 0 auto;
                                                }

                                                    .fr-price {
                                                        font-size: 35px;
                                                        font-weight: 700;
                                                        margin: 0 0 15px;
                                                    }

                                                .fr-address {
                                                    font-size: 18px;
                                                    font-weight: 400;
                                                }

                                            .fr-view.global-btn {
                                                min-width: 200px;
                                                border: 1px solid #fff;
                                                color: #fff !important;
                                            }

                                            .fr-view.global-btn:hover {
                                                border: 1px solid var(--secondary);
                                            }

                                        .fr-content-col:first-child {
                                            padding-right: 15px;
                                        }

                                    .fr-content::after {
                                        content: '';
                                        position: absolute;
                                        bottom: 0;
                                        left: 30px;
                                        width: 50px;
                                        height: 4px;
                                        background: var(--secondary);
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                .fr-item a:hover .fr-content::after {
                                    width: 100%;
                                    left: 0;
                                }

                            .fr-slick .slick-slide > div > div{
                                display: block !important;
                            }
                            
                        .fr-slick:not(.slick-initialize) > div:not(:first-child){
                            display:none;
                        }

/*vacation rentals section*/
section.vacation-rentals-area {
    position: relative;
    padding: 100px 0;
}

    .site-bg.vr-bg canvas {
        opacity: .1;
        filter: grayscale(1);
    }

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

    .vr-head {
        text-align: center;
        margin-bottom: 26px;
    }

        .vr-lists {
            position: relative;
            margin: 0 -7px;
        }

            .vr-item {
                /*max-width: 538px;*/
                padding: 0 7px;
            }

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

                    .vr-photo.global-photo canvas {
                        background: #000;
                    }

                        .vr-photo.global-photo img {
                            opacity: .8;
                        }

                            .vr-item a:hover .vr-photo.global-photo img {
                                opacity: .5;
                                filter: grayscale(1);
                            }

                                .vr-photo.global-photo::before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: transparent;
                                    border: 4px solid var(--secondary);
                                    pointer-events: none;
                                    z-index: 5;
                                    opacity: 0;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                                    .vr-item a:hover .vr-photo.global-photo::before {
                                        opacity: 1;
                                    }

                                        .vr-content {
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            width: 100%;
                                            display: flex;
                                            align-items: center;
                                            justify-content: space-between;
                                            padding: 36px 30px;
                                            color: #fff;
                                        }

                                            .vr-btn {
                                                padding-top: 39px;
                                            }

                                                .vr-btn a {
                                                    margin: 0 auto;
                                                }

                                                    .vr-price {
                                                        font-size: 35px;
                                                        font-weight: 700;
                                                        margin: 0 0 15px;
                                                    }

                                                .vr-address {
                                                    font-size: 18px;
                                                    font-weight: 400;
                                                }

                                            .vr-view.global-btn {
                                                min-width: 200px;
                                                border: 1px solid #fff;
                                                color: #fff !important;
                                            }

                                            .vr-view.global-btn:hover {
                                                border: 1px solid var(--secondary);
                                            }

                                        .vr-content-col:first-child {
                                            padding-right: 15px;
                                        }

                                    .vr-content::after {
                                        content: '';
                                        position: absolute;
                                        bottom: 0;
                                        left: 30px;
                                        width: 50px;
                                        height: 4px;
                                        background: var(--secondary);
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                .vr-item a:hover .vr-content::after {
                                    width: 100%;
                                    left: 0;
                                }

                            .vr-slick .slick-slide > div > div{
                                display: block !important;
                            }
                            
                        .vr-slick:not(.slick-initialize) > div:not(:first-child){
                            display:none;
                        }

/*featured sales section*/
section.featured-sales-area {
    position: relative;
    padding: 100px 0;
}

    .site-bg.fs-bg {
        background: #000;
    }

    .site-bg.fs-bg canvas {
        opacity: .1;
    }

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

    .fs-head {
        text-align: center;
        margin-bottom: 26px;
    }

    .fs-head .global-title,
    .fs-head .global-title span,
    .fs-head .global-title em {
        color: #fff;
    }

        .fs-lists {
            position: relative;
            margin: 0 -7px;
        }

            .fs-item {
                /*max-width: 538px;*/
                padding: 0 7px;
            }

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

                    .fs-photo.global-photo canvas {
                        background: #000;
                    }

                        .fs-photo.global-photo img {
                            opacity: .8;
                        }

                            .fs-item a:hover .fs-photo.global-photo img {
                                opacity: .5;
                                filter: grayscale(1);
                            }

                                .fs-photo.global-photo::before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: transparent;
                                    border: 4px solid var(--secondary);
                                    pointer-events: none;
                                    z-index: 5;
                                    opacity: 0;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                                    .fs-item a:hover .fs-photo.global-photo::before {
                                        opacity: 1;
                                    }

                                        .fs-content {
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            width: 100%;
                                            display: flex;
                                            align-items: center;
                                            justify-content: space-between;
                                            padding: 36px 30px;
                                            color: #fff;
                                        }

                                            .fs-btn {
                                                padding-top: 39px;
                                            }

                                                .fs-btn a {
                                                    margin: 0 auto;
                                                }

                                                    .fs-price {
                                                        font-size: 35px;
                                                        font-weight: 700;
                                                        margin: 0 0 15px;
                                                    }

                                                .fs-address {
                                                    font-size: 18px;
                                                    font-weight: 400;
                                                }

                                            .fs-view.global-btn {
                                                min-width: 200px;
                                                border: 1px solid #fff;
                                                color: #fff !important;
                                            }

                                            .fs-view.global-btn:hover {
                                                border: 1px solid var(--secondary);
                                            }

                                        .fs-content-col:first-child {
                                            padding-right: 15px;
                                        }

                                    .fs-content::after {
                                        content: '';
                                        position: absolute;
                                        bottom: 0;
                                        left: 30px;
                                        width: 50px;
                                        height: 4px;
                                        background: var(--secondary);
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                .fs-item a:hover .fs-content::after {
                                    width: 100%;
                                    left: 0;
                                }

                            .fs-slick .slick-slide > div > div{
                                display: block !important;
                            }
                            
                        .fs-slick:not(.slick-initialize) > div:not(:first-child){
                            display:none;
                        }

                    .fs-btn a {
                        color: #fff !important;
                        border: 1px solid #fff;
                    }

                .fs-btn a:hover {
                    border: 1px solid var(--secondary);
                }

/*sports and entertainment section*/
section.sports-entertainment-area {
    position: relative;
    padding: 100px 0 70px;
}

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

        .se-inner {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

            .se-col {
                width: 50%;
            }

                .se-photo {
                    position: relative;
                    max-width: 755px;
                }

                    .se-accent1 {
                        position: absolute;
                        bottom: -40px;
                        right: -40px;
                        width: 100%;
                        height: 100%;
                        background: var(--secondary);
                        pointer-events: none;
                        z-index: -1;
                    }

                        .se-content {
                            padding: 0 0 0 122px;
                        }

                            .se-head {
                                margin-bottom: 25px;
                            }

                                .se-text p {
                                    display: block;
                                    margin-bottom: 12px;
                                    font-size: 14px;
                                    font-weight: 400;
                                    line-height: 1.8;
                                    color: #525252;
                                    max-width: 550px;
                                }

                                    .se-btn {
                                        padding-top: 25px;
                                    }

/*about section*/
section.about-area {
    position: relative;
    padding: 70px 0 140px;
}

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

        .ab-inner {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

            .ab-col {
                width: 50%;
            }

                .ab-photo {
                    position: relative;
                    max-width: 755px;
                    margin-left: auto;
                }

                    .ab-accent2 {
                        position: absolute;
                        bottom: -40px;
                        left: -40px;
                        width: 100%;
                        height: 100%;
                        background: var(--secondary);
                        pointer-events: none;
                        z-index: -1;
                    }

                        .ab-content {
                            max-width: 560px;
                            margin-left: auto;
                            margin-right: 85px;
                        }

                            .ab-head {
                                margin-bottom: 25px;
                            }

                                .ab-text p {
                                    display: block;
                                    margin-bottom: 12px;
                                    font-size: 14px;
                                    font-weight: 400;
                                    line-height: 1.8;
                                    color: #525252;
                                    max-width: 550px;
                                }

                                    .ab-btn {
                                        padding-top: 25px;
                                    }

/*featured communities section*/
section.featured-communities-area {
    position: relative;
    padding: 100px 15px;
}

    .site-bg.fc-bg {
        background: #000;
        height: calc(100% - 400px);
    }

        .site-bg.fc-bg canvas {
            opacity: .1;
        }

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

                .fc-head {
                    text-align: center;
                    margin: 0 0 30px;
                }

                    .fc-head .global-title,
                    .fc-head .global-title em,
                    .fc-head .global-title span {
                        color: #fff;
                    }

                        .fc-lists {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                        }

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

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

                                    .fc-photo.global-photo canvas {
                                        background: #000;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                        .fc-photo.global-photo img {
                                            opacity: .7;
                                        }

                                            .fc-item a:hover .fc-photo.global-photo canvas {
                                                background: #daa520;
                                            }

                                                .fc-item a:hover .fc-photo.global-photo img {
                                                    opacity: .5;
                                                    filter: grayscale(1);
                                                }

                                                    .fc-content {
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        pointer-events: none;
                                                        color: #fff;
                                                    }

                                                .fc-label {
                                                    font-size: 25px;
                                                    font-weight: 600;
                                                    text-transform: uppercase;
                                                    text-align: center;
                                                }

                                            .fc-learn-more {
                                                font-size: 14px;
                                                font-weight: 600;
                                                text-transform: uppercase;
                                                text-align: center;
                                                opacity: 0;
                                                height: 0;
                                                margin-top: 0;
                                                -webkit-transition: all 0.4s ease-in-out;
                                                -moz-transition: all 0.4s ease-in-out;
                                                -o-transition: all 0.4s ease-in-out;
                                                transition: all 0.4s ease-in-out;
                                            }

                                        .fc-item a:hover .fc-learn-more {
                                            opacity: 1;
                                            margin-top: 54px;
                                            height: 14px;
                                        }

                                    .fc-btn {
                                        padding-top: 45px;
                                    }

                                .fc-btn a {
                                    margin: 0 auto;
                                }

/*relocation assistance section*/
section.relocation-assistance-area {
    position: relative;
    padding: 0 0 70px;
}

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

        .ra-inner {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

            .ra-col {
                width: 50%;
            }

                .ra-photo {
                    position: relative;
                    max-width: 755px;
                }

                    .ra-accent1 {
                        position: absolute;
                        bottom: -40px;
                        right: -40px;
                        width: 100%;
                        height: 100%;
                        background: var(--secondary);
                        pointer-events: none;
                        z-index: -1;
                    }

                        .ra-content {
                            padding: 0 0 0 122px;
                        }

                            .ra-head {
                                margin-bottom: 25px;
                            }

                                .ra-text p {
                                    display: block;
                                    margin-bottom: 12px;
                                    font-size: 14px;
                                    font-weight: 400;
                                    line-height: 1.8;
                                    color: #525252;
                                    max-width: 550px;
                                }

                                    .ra-btn {
                                        padding-top: 25px;
                                    }

                                        .ra-btn a:first-child {
                                            margin-bottom: 25px;
                                        }

/*commercial real estate section*/
section.commercial-realestate-area {
    position: relative;
    padding: 70px 0 0;
}

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

        .cre-inner {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

            .cre-col {
                width: 50%;
            }

                .cre-photo {
                    position: relative;
                    max-width: 755px;
                    margin-left: auto;
                }

                    .cre-accent2 {
                        position: absolute;
                        bottom: -40px;
                        left: -40px;
                        width: 100%;
                        height: 100%;
                        background: var(--secondary);
                        pointer-events: none;
                        z-index: -1;
                    }

                        .cre-content {
                            max-width: 560px;
                            margin-left: auto;
                            margin-right: 85px;
                        }

                            .cre-head {
                                margin-bottom: 25px;
                            }

                                .cre-text p {
                                    display: block;
                                    margin-bottom: 12px;
                                    font-size: 14px;
                                    font-weight: 400;
                                    line-height: 1.8;
                                    color: #525252;
                                    max-width: 550px;
                                }

                                    .cre-btn {
                                        padding-top: 25px;
                                        padding-left: 25px;
                                    }

                                        .cre-cta {
                                            display: flex;
                                            margin-left: -2.5px;
                                            padding: 13px 0 0;
                                        }

                                            .cre-cta a {
                                                font-size: 14px;
                                                font-weight: 400;
                                                color: #fff;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                min-width: 196px;
                                                height: 55px;
                                                background: #000;
                                                margin: 0 2.5px;
                                                -webkit-transition: all 0.4s ease-in-out;
                                                -moz-transition: all 0.4s ease-in-out;
                                                -o-transition: all 0.4s ease-in-out;
                                                transition: all 0.4s ease-in-out;
                                            }

                                                .cre-cta a:hover {
                                                    background: var(--secondary);
                                                }

/*media and press section*/
section.media-press-area {
    position: relative;
    padding: 129px 15px 0;
}

    .site-bg.mp-bg canvas {
        opacity: .8;
        background-position: top center;
    }

        .site-bg.mp-bg::after,
        .site-bg.mp-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 200px;
            pointer-events: none;
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
        }

            .site-bg.mp-bg::before {
                top: auto;
                bottom: 0;
                z-index: 1;
                min-height: 300px;
                background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 70%,rgba(255,255,255,1) 100%);
            }

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

                    .mp-head {
                        text-align: center;
                        margin: 0 0 43px;
                    }

                        .mp-lists {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                        }

                            .mp-item {
                                width: 20%;
                                padding: 0 27px;
                            }

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

                                    .mp-item a:hover .mp-photo.global-photo img {
                                        filter: grayscale(1);
                                    }

                                        .mp-photo.global-photo::after {
                                            content: '';
                                            position: absolute;
                                            top: 25px;
                                            left: -22px;
                                            right: 0;
                                            margin: auto;
                                            width: calc(100% + 44px);
                                            height: 100%;
                                            background: var(--secondary);
                                            pointer-events: none;
                                            z-index: -1;
                                        }

                                            .mp-item:nth-child(even) .mp-photo.global-photo::after {
                                                background: var(--primary);
                                            }

                                                .mp-item:nth-child(even) {
                                                    margin-top: 80px;
                                                }

                                                    .mp-label {
                                                        font-size: 20px;
                                                        font-family: var(--font-family-title);
                                                        text-transform: uppercase;
                                                        color: #000;
                                                        text-align: center;
                                                        padding: 0 0 17px;
                                                    }

                                                .mp-btn {
                                                    padding-top: 84px;
                                                }

                                            .mp-btn a {
                                                margin: 0 auto;
                                            }

/*featured videos section*/
section.featured-videos-area {
    position: relative;
    padding: 87px 0 50px;
}

    .fv-head {
        text-align: center;
        margin: 0 0 40px;
    }

        .fv-lists {
            position: relative;
        }

            .fv-lists .slick-list {
                padding: 0 288px;
            }

                .fv-item {
                    padding: 0 118px;
                }

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

                        .fv-thumb.global-photo canvas {
                            background: #000;
                        }

                            .fv-thumb.global-photo img {
                                opacity: .6;
                            }

                                .fv-item a:hover .fv-thumb.global-photo img {
                                    opacity: .5;
                                    filter: grayscale(1);
                                }

                                    .fv-plbtn {
                                        position: absolute;
                                        bottom: 40px;
                                        right: 40px;
                                        width: 54px;
                                        height: 54px;
                                        border: 3px solid #fff;
                                        background: transparent;
                                        border-radius: 100%;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                        .fv-item a:hover .fv-plbtn {
                                            border: 3px solid #000;
                                            background: #000;
                                        }

                                            .fv-plbtn em {
                                                display: block;
                                                font-size: 20px;
                                                color: transparent;
                                                -webkit-text-stroke-width: 2px;
                                                -webkit-text-stroke-color: #fff;
                                                -webkit-transition: all 0.4s ease-in-out;
                                                -moz-transition: all 0.4s ease-in-out;
                                                -o-transition: all 0.4s ease-in-out;
                                                transition: all 0.4s ease-in-out;
                                            }

                                                .fv-item a:hover .fv-plbtn em {
                                                    color: var(--secondary);
                                                    -webkit-text-stroke-width: 2px;
                                                    -webkit-text-stroke-color: var(--secondary);
                                                }

                                                    .fv-arrow {
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: space-between;
                                                        pointer-events: none;
                                                        padding: 0 252px;
                                                    }

                                                .fv-btn {
                                                    padding-top: 50px;
                                                }

                                            .fv-btn a {
                                                margin: 0 auto;
                                            }

                                        .fv-slick .slick-slide > div > div{
                                            display: block !important;
                                        }
                                        
                                    .fv-slick:not(.slick-initialize) > div:not(:first-child){
                                        display:none;
                                    }

                                .fv-slick .slick-slide.slick-current.slick-active .fv-item a {
                                    pointer-events: auto;
                                }

                            .fv-slick .slick-slide .fv-item a {
                                pointer-events: none;
                            }

                        .fv-slick .slick-slide .fv-plbtn {
                            opacity: 0;
                        }

                    .fv-slick .slick-slide.slick-current.slick-active .fv-plbtn {
                        opacity: 1;
                    }

/*social media section*/
section.social-media-area {
    position: relative;
    padding: 50px 15px 105px;
}

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

        .sm-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 33px;
            padding: 0 6px;
        }

            .sm-logo {
                display: flex;
                align-items: center;
            }

                .sm-logo span {
                    font-size: 18px;
                    font-weight: 400;
                    color: #000;
                    margin-left: 18px;
                }

                    .sm-lists {
                        display: flex;
                        justify-content: center;
                        flex-wrap: wrap;
                    }

                        .sm-item {
                            width: 25%;
                            padding: 0 6px;
                        }

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

                            .sm-photo.global-photo canvas {
                                background: #000;
                            }

                                .sm-photo.global-photo img {
                                    opacity: .9;
                                }

                                    .sm-item a:hover .sm-photo.global-photo img {
                                        opacity: .5;
                                        filter: grayscale(1);
                                    }

                                        .sm-item a > span {
                                            position: absolute;
                                            bottom: 20px;
                                            right: 20px;
                                            z-index: 1;
                                            font-size: 31px;
                                            color: #fff;
                                            -webkit-transition: all 0.4s ease-in-out;
                                            -moz-transition: all 0.4s ease-in-out;
                                            -o-transition: all 0.4s ease-in-out;
                                            transition: all 0.4s ease-in-out;
                                        }

                                            .sm-item a:hover > span {
                                                color: var(--secondary);
                                            }

                                                .sm-links {
                                                    padding-top: 38px;
                                                    text-align: center;
                                                }

                                                .sm-links a {
                                                    display: inline-block;
                                                    position: relative;
                                                    font-size: 20px;
                                                    font-weight: 400;
                                                    font-family: 'Old Standard TT', serif;
                                                    color: #8a8a8a;
                                                    margin: 0 22px;
                                                    text-transform: uppercase;
                                                    -webkit-transition: all 0.4s ease-in-out;
                                                    -moz-transition: all 0.4s ease-in-out;
                                                    -o-transition: all 0.4s ease-in-out;
                                                    transition: all 0.4s ease-in-out;
                                                }

                                                    .sm-links a:hover,
                                                    .sm-links a:hover > em {
                                                        color: var(--secondary);
                                                    }

                                                .sm-links a > em {
                                                    font-size: 21px;
                                                    color: #000;
                                                    display: inline-block;
                                                    margin-right: 8px;
                                                    width: 22px;
                                                    -webkit-transition: all 0.4s ease-in-out;
                                                    -moz-transition: all 0.4s ease-in-out;
                                                    -o-transition: all 0.4s ease-in-out;
                                                    transition: all 0.4s ease-in-out;
                                                }

                                            .sm-links a > em::after {
                                                content: '';
                                                position: absolute;
                                                bottom: -5px;
                                                left: 0;
                                                width: 100%;
                                                height: 2px;
                                                background: var(--secondary);
                                            }

/*get in touch section*/
section.get-in-touch-area {
    position: relative;
    padding: 100px 0;
}

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

        .gt-form {
            max-width: 1004px;
            margin: 0 auto;
            position: relative;
        }

                .gt-form form {
                    max-width: 812px;
                    margin: 0 auto;
                    font-size: 0;
                }

                    .gt-head {
                        margin-bottom: 37px;
                        text-align: center;
                    }

                        .gt-head .global-title,
                        .gt-head .global-title em,
                        .gt-head .global-title span {
                            color: #fff;
                        }

                        .gt-form p {
                            font-size: 14px;
                            font-weight: 400;
                            color: #fff;
                            line-height: 1.7;
                            display: block;
                            max-width: 328px;
                            margin: 0 auto 57px;
                            text-align: center;
                        }

                            .gt-fields input, 
                            .gt-fields textarea {
                                font-size: 14px;
                                font-weight: 400;
                                background: transparent;
                                width: 100%;
                                height: 32px;
                                color: #fff;
                                padding: 0 10px;
                                border-radius: 0;
                                resize: none;
                                border: none;
                                border-bottom: 1px solid #fff;
                                -webkit-appearance: none;
                                -moz-appearance: none;
                            }

                                .gt-form textarea {
                                    padding-top: 10px;
                                    height: 93px;
                                }

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

                                        .gt-fields {
                                            position: relative;
                                            width: 100%;
                                            padding: 0 28px;
                                            display: inline-block;
                                            vertical-align: top;
                                            margin-bottom: 37px;
                                        }

                                        .gt-fields.w-50 {
                                            width: 50%;
                                        }

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

                                                .gt-form span.wpcf7-not-valid-tip {
                                                    font-size: 14px;
                                                }

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

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

                                                        .gt-form .wpcf7-spinner {
                                                            position: absolute;
                                                            bottom: 0;
                                                            left: 0;
                                                            right: 0;
                                                            margin: auto;
                                                        }

                                                            .gt-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
                                                                position: absolute;
                                                                top: auto;
                                                                bottom: 5px;
                                                                left: 0;
                                                                z-index: 100;
                                                                border: 1px solid #ff0000;
                                                                background: #fff;
                                                                padding: .2em .8em;
                                                                width: auto;
                                                            }

                                                        .gt-fields.gt-btn {
                                                            padding: 0;
                                                            margin: 0;
                                                            width: 100%;
                                                            max-width: 260px;
                                                            margin: 124px auto 0;
                                                            display: block;
                                                            position: relative;
                                                        }

                                                .gt-fields.gt-btn input {
                                                    font-size: 14px;
                                                    font-weight: 400;
                                                    text-transform: uppercase;
                                                    letter-spacing: 1.7px;
                                                    color: #fff;
                                                    border: none;
                                                    display: flex;
                                                    align-items: center;
                                                    justify-content: center;
                                                    width: 100%;
                                                    height: 60px;
                                                    background: var(--primary);
                                                    -webkit-transition: all 0.4s ease-in-out;
                                                    -moz-transition: all 0.4s ease-in-out;
                                                    -o-transition: all 0.4s ease-in-out;
                                                    transition: all 0.4s ease-in-out;
                                                }

                                            .gt-fields.gt-btn input:hover {
                                                background: var(--secondary);
                                            }

                                        .gt-btn-accent {
                                            position: absolute;
                                            top: 0;
                                            bottom: 0;
                                            margin: auto;
                                            left: -25px;
                                            width: 50px;
                                            height: 2px;
                                            background: var(--secondary);
                                            z-index: 1;
                                            -webkit-transition: all 0.4s ease-in-out;
                                            -moz-transition: all 0.4s ease-in-out;
                                            -o-transition: all 0.4s ease-in-out;
                                            transition: all 0.4s ease-in-out;
                                        }

                                    .gt-fields.gt-btn:hover .gt-btn-accent {
                                        background: var(--primary);
                                    }

                                .site-bg.gt-bg {
                                    background: #000;
                                }

                            .site-bg.gt-bg canvas {
                                opacity: .2;
                                background-attachment: fixed;
                            }

                        .gt-border {
                            position: absolute;
                            bottom: 29px;
                            left: 0;
                            width: 100%;
                            height: calc(100% - 55px);
                            pointer-events: none;
                            border: 1px solid #fff;
                            border-top: none;
                        }

                    .gt-border::after, .gt-border::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 30.7%;
                        height: 1px;
                        background: #fff;
                    }

                .gt-border::before {
                    left: auto;
                    right: 0;
                }

/*main footer section*/
footer.main-footer {
    position: relative;
    padding: 100px 15px;
    background: #000;
    color: #fff;
}

    footer.main-footer .custom-container {
       max-width: 1170px;
       margin: 0 auto;
    }

        .ftr-logo a {
            color: #fff;
            font-size: 37px;
            letter-spacing: 1.9px;
            font-family: var(--font-family-title);
            text-transform: uppercase;
            display: block;
            position: relative;
            margin-bottom: 40px;
            -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;
        }

            .ftr-logo a span {
                display: block;
            }

            .ftr-title {
                font-size: 20px;
                font-weight: 600;
                text-transform: uppercase;
                margin: 0 0 25px;
            }

                ul.footernav {
                    font-size: 0;
                    columns: 2;
                    column-gap: 20px;
                }

                    ul.footernav > li {
                        display: block;
                        margin-bottom: 17px;
                    }

                        ul.footernav > li > a {
                            font-size: 14px;
                            font-weight: 400;
                            color: #fff;
                            text-transform: uppercase;
                            display: inline-block;
                            position: relative;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }

                            ul.footernav > li > a:hover,
                            .ftr-contact a:hover {
                                opacity: .7;
                            }

                                .ftr-contact span {
                                    display: block;
                                    margin-bottom: 16px;
                                    font-size: 14px;
                                    font-weight: 400;
                                }

                                    .ftr-contact a {
                                        color: #fff;
                                        display: inline-block;
                                        position: relative;
                                        -webkit-transition: all 0.3s ease-in-out;
                                        -moz-transition: all 0.3s ease-in-out;
                                        -o-transition: all 0.3s ease-in-out;
                                        transition: all 0.3s ease-in-out;
                                    }

                                        .ftr-loc {
                                            line-height: 2.2;
                                            max-width: 210px;
                                        }

                                            .ftr-col2 {
                                                padding-left: 38px;
                                            }

                                                .ftr-contact span em {
                                                    font-style: normal !important;
                                                    display: inline-block;
                                                    margin-right: 5px;
                                                }

                                                    span.ftr-phone {
                                                        margin-bottom: 8px;
                                                    }

                                                    span.ftr-loc em {
                                                        margin-right: 2px;
                                                    }

                                                .ftr-col3 {
                                                    margin-left: -30px;
                                                }

                                            .ftr-disclaimer p {
                                                font-size: 13px;
                                                font-weight: 400;
                                                letter-spacing: .68px;
                                                line-height: 1.4;
                                                display: block;
                                                margin: 27px 0 24px;
                                            }

                                        .ftr-disclaimer a {
                                            display: inline-block;
                                            position: relative;
                                            color: #fff;
                                            -webkit-transition: all 0.3s ease-in-out;
                                            -moz-transition: all 0.3s ease-in-out;
                                            -o-transition: all 0.3s ease-in-out;
                                            transition: all 0.3s ease-in-out;
                                        }

                                    .ftr-disclaimer a:hover {
                                        opacity: .7;
                                    }


/*footer form*/
.ftr-form {
    position: relative;
    max-width: 405px;
    margin: 0 auto;
}

    .ftr-fields input {
        font-size: 14px;
        font-weight: 600;
        background: #fff;
        text-transform: uppercase;
        width: 100%;
        height: 60px;
        color: #000;
        padding: 0 60px 0 20px;
        border-radius: 0;
        resize: none;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .ftr-btn em.ai-font-paper-airplane-alt {
            font-size: 20px;
            color: #000;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            margin: auto;
            width: 20px;
            height: 20px;
            z-index: 5;
            pointer-events: none;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

            .ftr-btn:hover em.ai-font-paper-airplane-alt {
                color: var(--secondary);
            }

                .ftr-btn input {
                    font-size: 0;
                    border: none;
                    background: var(--secondary);
                    width: 100%;
                    height: 100%;
                    padding: 0;
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    right: 0;
                    -webkit-transition: all 0.4s ease-in-out;
                    -moz-transition: all 0.4s ease-in-out;
                    -o-transition: all 0.4s ease-in-out;
                    transition: all 0.4s ease-in-out;
                }

                    .ftr-btn input:hover {
                        background: var(--primary);
                    }

                        .ftr-btn {
                            position: absolute;
                            top: 0;
                            bottom: 0;
                            margin: auto;
                            right: 5px;
                            width: 50px;
                            height: 50px;
                        }

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

                                .ftr-form span.wpcf7-not-valid-tip {
                                    font-size: 14px;
                                }

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

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

                                            .ftr-form .wpcf7-spinner {
                                                position: absolute;
                                                bottom: 0;
                                                left: 0;
                                                right: 0;
                                                margin: auto;
                                            }

                                                .ftr-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
                                                    position: absolute;
                                                    top: auto;
                                                    bottom: 5px;
                                                    left: 0;
                                                    z-index: 100;
                                                    border: 1px solid #ff0000;
                                                    background: #fff;
                                                    padding: .2em .8em;
                                                    width: auto;
                                                }

/*copyright & mls*/
.footer-copyright-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright, 
.footer-copyright a {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .footer-copyright a:hover{
        opacity: .7;
    }

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

            .footer-copyright a[href="https://www.agentimage.com"]:hover{
                opacity: .7;
            }

            .mls {
                font-size: 20px;
                color: #fff;
                text-align: center;
            }

                .mls em {
                    margin: 0 2px;
                }  


/*******************************************************
 *
 * 4. 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: var(--dark);
        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: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    display: block;
}

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

}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}

.ihf-modal-submit .ihf-modal-form-response-output{
    display: none!important;
} 

body #listings-results .listings-table .listings-table-body .listings-table-label{
    color: white;
}

#listings-details .listings-link-navigation-main:hover{
    border: 1px solid black;
    background: none!important;
}

article.post.archive-content {
    border-bottom: 1px dotted #000;
}

article.post.archive-content:last-child {
    border-bottom: none;
}

.page-template-template-in-the-media #content .archive-thumbnail {
    width: 15%;
}

.page-template-template-in-the-media #content .archive-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.page-template-template-in-the-media #content .archive-content.archive-has-thumbnail {
    width: 82%;
}

.page-template-template-in-the-media #content .archive-subtitle {
    line-height: 1.2;
    margin-top: 0;
}

section.sports-entertainment-area, section.relocation-assistance-area, section.commercial-realestate-area {
    display: none;
}

div#agents-popup-form span.wpcf7-not-valid-tip {
    position: absolute;
    width: fit-content;
}
.aios-communities-legacy .aioscomu-label {
    text-shadow: 0 2px 2px #000;
}
body.page-id-34 div#inner-page-wrapper > .container,
body.page-id-299 div#inner-page-wrapper > .container {
    width: 100%;
}
body.page-id-34 div#inner-page-wrapper > .container h1.entry-title {
    margin: .67em 0 !important;
    padding: 0 !important;
}
body.ihf-details-template .splide__main:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, black, transparent);
    z-index: 1;
    opacity: 0.7;
}
body.page-id-299 div#inner-page-wrapper form span.wpcf7-not-valid-tip {
    position: absolute;
    width: fit-content;
}
body.page-id-299 div#inner-page-wrapper form .wpcf7-response-output {
    text-align: center;
}

body.aios-custom-ihomefinder-printable-template header,
body.aios-custom-ihomefinder-printable-template #content #breadcrumbs,
body.aios-custom-ihomefinder-printable-template #content .listings-printable-header span {
    display: none;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    max-width: 150px;
}

body.ihf-details-template .wpcf7-not-valid-tip {
    font-size: 12px;
    right: auto;
}

body.ihf-details-template #listings-details .listings-form div.wpcf7-response-output {
  font-size: 12px;
}

body.ihf-details-template #listings-details .listings-form .wpcf7-not-valid-tip {
  font-size: 12px;
  left: auto;
}

body.ihf-details-template #listings-details .listings-form .wpcf7-spinner {
  position: absolute;
  right: 0%;
  top: 105%;
  margin: 0;
}

body.page-id-267 #inner-page-wrapper #breadcrumbs {
    padding: 0;
}

body.page-id-267 #content .entry {
    display: flex;
    flex-direction: column;
}

body.page-id-267 .addtoany_content {
    margin-left: 0;
    order: 2;
}

body.page-id-267 #agents-results .agent-top {
    margin: 0;
}

body.page-id-267 #agents-results .agents-contact {
    justify-content: center;
}

body.page-id-267 #agents-results .agents-pagination {
    display: flex;
    justify-content: center;
}

body.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type="submit"]:hover {
    color: var(--aios-agents-hover-color);
}

body.single-aios-agents #agents-popup-form .wpcf7-response-output {
    margin: 0;
}

body.single-aios-agents  #agents-single .agents-contact li.agent-contact-centered > div > div {
    text-align: center;
}

body.single-aios-agents  #agents-single .agents-contact li.agent-contact-centered > div > div span.ai-font-location-c {
    font-size: 1.25em;
    line-height: 1.5;
    align-self: flex-start;
}

body.page-id-19 #content .ai-contact-wrap a {
    transition: var(--default-transition);
}

body.page-id-19 #content .ai-contact-wrap em.ai-mobile-phone a:hover,
body.page-id-19 #content .ai-contact-wrap a:hover {
    color: var(--secondary);
}

body.error404 .wpcf7 form {
    position: relative;
}

body.error404 .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    top: 0.5em;
    left: auto;
    width: auto;
    line-height: 1;
    font-size: 12px;
    padding: 0.25em;
}

body.error404 .wpcf7 form .wpcf7-response-output {
    margin: 0;
    line-height: 1;
    font-size: 12px;
    text-align: center;
    padding: 0.5em 0.1em;
}

body.error404 .wpcf7 form .wpcf7-spinner {
    position: absolute;
    right: 0%;
    top: 105%;
    margin: 0;
}
#listings-details .listings-link-navigation-back .listings-link-navigation-main:hover{
    color: #ffffff !important;
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;;
}

.no-listings-found {
    font-size: 18px;
    width: 100%;
    text-align: center;
}
.featured-rentals-area .no-listings-found.fl,
.featured-rentals-area .no-listings-found.fr,
.vacation-rentals-area .no-listings-found.vr {
    color: #000;
}
.no-listings-found.fl {
    text-transform: capitalize;
    margin: 30px 0;
}
.no-listings-found.fs {
    color: #fff;
}
#inner-page-wrapper #listings-details .listings-extras > li > span,
#inner-page-wrapper #listings-details .listings-extras > li > strong,
#inner-page-wrapper #listings-details .listings-smi h2 {
    color: var(--aios-listing-secondary-color);
}
#agents-results .agents-contact li span,
#agents-results .agents-contact li a {
    color: #ffffff;
}