/*
Theme Name: Advani Real Estate Group
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
*/
/*fonts*/
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/gotham/Gotham-Bold.eot');
    src: url('./fonts/gotham/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/gotham/Gotham-Bold.woff2') format('woff2'),
        url('./fonts/gotham/Gotham-Bold.woff') format('woff'),
        url('./fonts/gotham/Gotham-Bold.ttf') format('truetype'),
        url('./fonts/gotham/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('./fonts/gotham/Gotham-Book.eot');
    src: url('./fonts/gotham/Gotham-Book.eot?#iefix') format('embedded-opentype'),
        url('./fonts/gotham/Gotham-Book.woff2') format('woff2'),
        url('./fonts/gotham/Gotham-Book.woff') format('woff'),
        url('./fonts/gotham/Gotham-Book.ttf') format('truetype'),
        url('./fonts/gotham/Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*fonts update for safari (gotham)*/
@font-face {
    font-family: 'Gotham-font';
    src: url('./fonts/gt/Gotham-Book.woff2') format('woff2'),
        url('./fonts/gt/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham-font';
    src: url('./fonts/gt/Gotham-BookItalic.woff2') format('woff2'),
        url('./fonts/gt/Gotham-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham-font';
    src: url('./fonts/gt/Gotham-Medium.woff2') format('woff2'),
        url('./fonts/gt/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham-font';
    src: url('./fonts/gt/GothamBold.woff2') format('woff2'),
        url('./fonts/gt/GothamBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham-font';
    src: url('./fonts/gt/Gotham-MediumItalic.woff2') format('woff2'),
        url('./fonts/gt/Gotham-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham-font';
    src: url('./fonts/gt/Gotham-BoldItalic.woff2') format('woff2'),
        url('./fonts/gt/Gotham-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}



/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/
:root {
    /** Font default */
    --font-family-default: 'Compass Sans', sans-serif;
    --font-family-title: 'Gotham', sans-serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --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 */
.hdr-nav li{
    position:relative;
    display: inline-block;
}
 
.hdr-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    padding: 18px 0 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
    left: 50%;
    margin-left: -90px;
    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;
}
.hdr-nav .sub-menu a{
    color: #000;
    display: block;
    padding: 10px;
    background: #fff;
}
.hdr-nav .sub-menu a:hover{
    background: #000;
    color: #fff;
    text-decoration: none;
}
.hdr-nav .sub-menu .sub-menu{
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}
.hdr-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);
}
.hdr-nav .sub-menu li{
    position: relative;
    display: block;
    margin-bottom: 1px;
}

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
/* Global */
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;
}
div#main-wrapper{
    overflow: hidden;
    position: relative;
}
/*main header*/
header.main-header {
    z-index: 1001;
    position: absolute;
    padding: 87px 15px 0;
    width: 100%;
    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;
}
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1190px;
        margin: 0 auto;
    }
        .hdr-border {
            width: 1px;
            height: 25px;
            background: #fff;
            opacity: .4;
            margin-left: 17px;
        }
/*fixed*/
.fixed-header{
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1001;
    margin-top: -100px;
    opacity: 1;
    pointer-events: auto;
    padding: 15px 15px;
    background: #000 url(images/fixed-header-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    -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;
}
    .fixed-header.show-fixed{
        margin-top: 0;
        opacity: 1;
        pointer-events: auto;
    }
        .fixed-inner {
            max-width: 1365px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
            .fixed-header nav.header-nav {
                margin-left: auto;
            }
/*nav*/
nav.header-nav {
    position: relative;
    text-align: right;
}
    nav.header-nav ul.hdr-nav{
        font-size: 0;
        position: relative;
        z-index: 5;
    }
        nav.header-nav ul.hdr-nav > li{
            margin: 0 22px;
            position: relative;
            display: inline-block;
            vertical-align: top;
        }
            nav.header-nav ul.hdr-nav > li > a{
                font-size: 16px;
                text-align: center;
                color: #fff;
                font-weight: 500;
                font-family: var(--font-family-default);
                letter-spacing: 2px;
                text-transform: uppercase;
                padding: 5px 0;
                display: block;
                position: relative;
                z-index: 5;
                -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.hdr-nav > li:first-child{
                    margin-left: 0 !important;
                }
                    nav.header-nav ul.hdr-nav > li:last-child{
                        margin-right: 0;
                    }
                        nav.header-nav ul.hdr-nav .sub-menu a {
                            color: #fff;
                            padding: 13px 5px 8px;
                            font-size: 14px;
                            font-weight: 500;
                            font-family: var(--font-family-default);
                            text-align: center;
                            letter-spacing: 2px;
                            text-transform: uppercase;
                            -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;
                            background: rgb(0 0 0 / 50%);
                        }
                            nav.header-nav ul.hdr-nav .sub-menu li:hover > a {
                                background: #fff;
                                color: #000;
                            }
                                nav.header-nav ul.hdr-nav > li:hover > a{
                                    /*color: #949599;*/
                                }
                                    nav.header-nav ul.hdr-nav > li > a::after {
                                        content: '';
                                        position: absolute;
                                        bottom: -3px;
                                        left: 0;
                                        right: 0;
                                        width: 0%;
                                        opacity: 0;
                                        height: 36px;
                                        border-top: solid 1px #fff;
                                        border-bottom: solid 1px #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;
                                        margin: auto;
                                        pointer-events: none;
                                    }
                                    nav.header-nav ul.hdr-nav > li:hover > a::after {
                                       opacity: .6;
                                       width: 100%;
                                    }
/*header contact*/
.hdr-contact {
    font-size: 0;
}
    .hdr-contact span {
        display: inline-block;
        margin-left: 32px;
    }
        .hdr-contact span a {
            display: block;
            padding: 5px 0;
            color: #fff;
            font-size: 14px;
            -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 span a:hover {
            opacity: 0.7;
        }
/*slideshow*/
.slideshow-area,
.slider-holder {
    position: relative;
}
    .slider-holder::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .35;
        z-index: 2;
        pointer-events: none;
    }
        #aios-slider-slideshow .aios-slider-volume {
            /*display: none;*/
        }
            .slider-holder::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                min-height: 400px;
                background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
                z-index: 2;
                pointer-events: none;
            }
                .slider-content{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 5;
                    pointer-events: none;
                }
                    .slider-logos {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-direction: column;
                        margin-top: 35px;
                    }
                        .slider-logos > span{
                            width: 2px;
                            height: 142px;
                            background: #fff;
                            margin: 0 50px;
                        }
                            .slider-logos a {
                                margin-bottom: 75px;
                                pointer-events: auto;
                            }
                            section.slideshow-area {
                                z-index: 3;
                            }
                                .slider-arrow {
                                    position: absolute;
                                    bottom: 40px;
                                    z-index: 5;
                                    left: 0;
                                    width: 100%;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    text-align: center;
                                }
                            .scroll-down {
                                cursor: pointer;
                                color: #fff;
                                text-transform: uppercase;
                                font-size: 16px;
                                font-weight: 500;
                                font-family: var(--font-family-default);
                                -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;
                                letter-spacing: 4px;
                                position: relative;
                                pointer-events: auto;
                            }
                        .scroll-down img {
                            margin: 17px auto 0;
                        }
                    .scroll-down:hover{
                        opacity: .7;
                    }
                .scroll-down::after {
                    content: '';
                    position: absolute;
                    top: calc(100% + 13px);
                    left: 0;
                    right: 0;
                    margin: auto;
                    width: 1px;
                    height: 27px;
                    background: #fff;
                }
                    .scroll-down::before {
                        content: '';
                        position: absolute;
                        top: calc(100% + 40px);
                        left: 0;
                        right: 0;
                        margin: auto;
                        width: 1px;
                        height: 25px;
                        background: #000;
                    }
/*title*/
.global-site-head {
    display: inline-block;
    position: relative;
}
    .global-site-title-bot {
        font-size: 90px;
        text-transform: uppercase;
        font-weight: 700;
        /*font-family: var(--font-family-title);*/
        letter-spacing: -5px;
        font-family: 'Gotham-font';
    }
        .global-site-title-top {
            font-size: 20px;
            text-transform: uppercase;
            color: #454545;
            letter-spacing: 12px;
            border-bottom: solid 1px #cccccc;
            margin-bottom: 4px;
            font-family: var(--font-family-default);
        }
        html.safari .global-site-title-top {
            margin-bottom: 40px;
        }
            .global-site-title-top span {
                display: inline-block;
                position: relative;
                padding: 0 0 16px;
            }
                .global-site-title-top span::after{
                    content: '';
                    position: absolute;
                    bottom: -1px;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background: #454545;
                }
/*global link*/
.global-site-btn a {
    max-width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-default);
    font-size: 15px;
    font-weight: 700;
    position: relative;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 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;
    text-align: center;
}
    .global-site-btn a::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        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;
    }
        .global-site-btn a:hover::after{
            width: 100%;
        }
            .global-site-btn a:hover{
                color: #fff;
                max-width: 220px;
            }
                .global-site-btn a span{
                    position: relative;
                    z-index: 2;
                    top: -10px;
                    -webkit-transition: top 0.4s ease-in-out;
                    -moz-transition: top 0.4s ease-in-out;
                    -o-transition: top 0.4s ease-in-out;
                    transition: top 0.4s ease-in-out;
                }
                    .global-site-btn a:hover span{
                        top: 0;
                    }
                        .global-site-btn a::before {
                            content: '';
                            position: absolute;
                            top: -10px;
                            left: -10px;
                            width: 220px;
                            height: 100%;
                            border: solid 1px #c1c1c1;
                        }
                            .global-site-btn a span i {
                                font-size: 13px;
                            }
/*welcome*/
section.welcome-area {
    position: relative;
    padding: 0 15px;
    background: #fff;
    margin-top: 85px;
}
    .wc-bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        .wc-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 75%;
            height: 204px;
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
        }
            .wc-bg::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 75%;
                height: 204px;
                background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
                z-index: 2;
            }
        .wc-bg canvas{
            display: block;
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .5;
            filter: grayscale(1);
            height: 100%;
        }
            .wc-holder {
                max-width: 1460px;
                margin: 0 auto;
                position: relative;
                z-index: 5;
                background: rgb(255 255 255 / 86%);
            }
                .wc-inner {
                    display: flex;
                    flex-wrap: wrap;
                    position: relative;
                    z-index: 2;
                }
                    .wc-inner::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 100%;
                        width: 10000px;
                        height: 100%;
                        background: #fff;
                        z-index: -1;
                    }
                .wc-content {
                    width: 62.329%;
                    padding: 21px 15px 11px;
                }
                    .wc-content-inner {
                        max-width: 730px;
                        margin: 0 auto;
                    }
                        .wc-photo {
                            width: 37.671%;
                            position: relative;
                            margin-top: -30px;
                        }
                            .wc-photo::after {
                                content: '';
                                position: absolute;
                                bottom: -70px;
                                left: calc(100% - 114px);
                                width: 182px;
                                height: 83%;
                                background: #000 url(images/wc-agent-accent.jpg) no-repeat;
                                background-size: cover;
                                background-position: center;
                            }
                            .wc-photo-inner {
                                max-width: 550px;
                                margin: 0 auto;
                                position: relative;
                                z-index: 1;
                            }
                                .wc-text p {
                                    font-size: 18px;
                                    color: #454545;
                                    font-family: var(--font-family-default);
                                    letter-spacing: .9px;
                                    line-height: 1.9;
                                    padding: 0 0 25px;
                                }
                                    .wc-text p strong {
                                        font-size: 24px;
                                        color: #000;
                                        line-height: 1.45;
                                    }
                                        .wc-text {
                                            margin: 41px 0 33px;
                                        }
                                    .wc-agent-details {
                                        position: absolute;
                                        bottom: -70px;
                                        left: -82px;
                                        z-index: 2;
                                        background: #000;
                                        padding: 29px 15px;
                                        text-align: center;
                                        width: 100%;
                                        max-width: 342px;
                                    }
                                .wc-agent-label {
                                    color: #fff;
                                    font-size: 30px;
                                    font-weight: 700;
                                    text-transform: uppercase;
                                    font-family: var(--font-family-title);
                                    letter-spacing: -1px;
                                }
                            .wc-agent-label span {
                                display: block;
                                text-transform: none;
                                font-size: 16px;
                                font-family: var(--font-family-default);
                                letter-spacing: .8px;
                                margin-top: 6px;
                            }
                        .wc-agent-contact span a {
                            display: inline-block;
                            color: #fff;
                            font-size: 14px;
                            font-family: var(--font-family-default);
                            padding: 5px;
                            letter-spacing: 1.3px;
                            -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;
                        }
                            .wc-agent-contact span a:hover{
                                opacity: .7;
                            }
                    .wc-agent-contact span {
                        display: block;
                    }
                .wc-agent-contact .ai-font-phone {
                    font-size: 15px;
                    margin-right: 3px;
                    top: 1px;
                }
            .wc-agent-contact em.ai-font-envelope-f {
                font-size: 12px;
                margin-right: 3px;
            }
        a.wc-agent-dre {
            display: inline-flex !important;
            align-items: center;
        }
            a.wc-agent-dre img {
                margin-right: 10px;
                top: -2px;
                position: relative;
            }
                .wc-agent-contact {
                    margin: 12px 0 0;
                }
/*keypoint*/
section.keypoint-area {
    position: relative;
    padding: 140px 0 0;
}
    .keypoint-holder {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
        .keypoint-monogram-logo {
            width: calc(50% + 15px);
            background: #000;
        }
            .keypoint-monogram-logo video {
                width: 100%;
            }
            .keypoint-monogram-logo img {
                margin: 0 0 0 auto;
            }
                .keypoint-content {
                    width: calc(50% - 15px);
                    padding: 0 80px;
                    background: #fff;
                }
                    .keypoint-title {
                        font-size: 60px;
                        font-weight: 700;
                        text-transform: uppercase;
                        font-family: var(--font-family-title);
                        letter-spacing: -4px;
                        line-height: 1.07;
                    }
                        .keypoint-text {
                            font-size: 18px;
                            font-weight: 700;
                            line-height: 1.85;
                            letter-spacing: .85px;
                            font-family: var(--font-family-default);
                            margin-top: 42px;
                        }
                            .keypoint-content-inner {
                                max-width: 555px;
                            }
/*properties*/
section.featured-properties-area {
    position: relative;
    padding: 141px 0 0;
}
    .fp-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 22%;
    }
        .fp-bg canvas{
            display: block;
            width: 100%;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            filter: grayscale(1);
            opacity: .5;
        }
        .fp-holder{
            position: relative;
            z-index: 5;
        }
    .fp-head {
        padding: 0 15px;
        max-width: 1440px;
        margin: 0 auto;
    }
        .fp-photo a {
            display: block;
            position: relative;
        }
            .fp-photo a canvas{
                display: block;
                width: 100%;
                background: #000;
                position: relative;
                z-index: 2;
                opacity: .16;
            }
                .fp-photo a img{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
                    .fp-feed {
                        margin: 58px 0 0;
                    }
                        .fp-list {
                            position: relative;
                            margin-bottom: 89px;
                        }
                            .fp-list::after {
                                content: '';
                                position: absolute;
                                top: 100%;
                                height: 89px;
                                width: 30%;
                                left: 0;
                                background: #000 url(images/fp-list-accent.jpg) no-repeat;
                                background-position: center;
                                background-size: cover;
                            }
                                .fp-list:nth-child(even)::after{
                                    left: auto;
                                    right: 0;
                                }
                                    .fp-list:last-child::after{
                                        display: none;
                                    }
                            .fp-content {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                max-width: 1398px;
                                margin: auto;
                                right: 0;
                                padding: 0 15px;
                                display: flex;
                                align-items: center;
                                justify-content: end;
                                z-index: 5;
                                pointer-events: none;
                            }
                                .fp-content-inner {
                                    pointer-events: auto;
                                    background: #000 url(images/fp-content-bg.jpg) no-repeat;
                                    background-position: center;
                                    background-size: cover;
                                    border: solid 5px #fff;
                                    padding: 37px 15px 38px;
                                    max-width: 438px;
                                    width: 100%;
                                    text-align: center;
                                }
                                    .fp-icon img {
                                        margin: 0 auto 21px;
                                    }
                                        .fp-icon{
                                            -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;
                                            height: 0;
                                            opacity: 0;
                                        }
                                            .fp-list:hover .fp-icon{
                                                height: 59px;
                                                opacity: 1;
                                            }
                                        .fp-price {
                                            font-size: 44px;
                                            color: #fff;
                                            font-weight: 700;
                                            font-family: var(--font-family-title);
                                            margin-bottom: 17px;
                                        }
                                    .fp-address {
                                        font-size: 28px;
                                        color: #fff;
                                        font-weight: 500;
                                        font-family: var(--font-family-default);
                                    }
                                .fp-address span{
                                    display: block;
                                    font-weight: 400;
                                    color: #cecece;
                                    text-transform: uppercase;
                                    font-size: 14px;
                                    margin-top: 7px
                                }
                            .fp-specs {
                                display: flex;
                                font-size: 12px;
                                color: #fff;
                                justify-content: center;
                                font-family: var(--font-family-default);
                                margin-top: 18px;
                                margin-bottom: 35px;
                            }
                        .fp-specs span {
                            display: flex;
                            align-items: flex-end;
                            margin: 0 9px;
                        }
                    .fp-specs span img {
                        margin-right: 11px;
                    }
                .fp-content-inner .global-site-btn a {
                    margin: 0 auto;
                    color: #fff;
                }
            .fp-content-inner .global-site-btn a::after {
                background: #fff;
            }
        .fp-content-inner .global-site-btn a:hover {
            color: #000;
        }
            .fp-hover {
                z-index: 2;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                width: calc(100% - 40px);
                height: calc(100% - 40px);
                background: rgb(0 0 0 / 65%);
                -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;
                opacity: 0;
            }
                .fp-list:hover .fp-hover{
                    opacity: 1;
                }
                .fp-hover::after{
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    background: url(images/fp-monogram.png) no-repeat;
                    background-size: auto 100%;
                    background-position: right center;
                    opacity: .5;
                }
                    .fp-list:hover .fp-photo a img{
                        filter: grayscale(1);
                    }
                        .fp-list:nth-child(even) .fp-content {
                            justify-content: start;
                        }
                            .fp-list:nth-child(even) .fp-hover::after {
                                background-position: left center;
                            }
                                .fp-list:last-child {
                                    margin-bottom: 0;
                                }
/*testimonials*/
section.testimonials-area {
    padding: 114px 15px 0;
    position: relative;
}
    .testi-holder {
        position: relative;
        max-width: 1435px;
        margin: 0 auto;
        z-index: 5;
    }
        .testi-bg {
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
            width: 100%;
            height: calc(100% - 80px);
        }
            .testi-accent {
                position: absolute;
                top: 0;
                left: 0;
                background: #000;
                width: 33.5%;
                height: 83.5%;
            }
                .testi-bg canvas {
                    background-size: auto 100%;
                    background-position: right -100px center;
                    background-repeat: no-repeat;
                    height: 100%;
                    display: block;
                    width: 100%;
                }
                    .testi-accent canvas {
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                        height: 100%;
                        display: block;
                        width: 100%;
                    }
                        .testi-inner {
                            display: flex;
                            flex-wrap: wrap;
                        }
                            .testi-photo {
                                width: 43.903%;
                            }
                                .testi-content {
                                    width: 56.097%;
                                    padding: 115px 0 0;
                                }
                            .testi-head .global-site-head {
                                text-align: left;
                            }
                    .testi-photo-inner {
                        position: relative;
                    }
                        .testi-photo-inner canvas{
                            display: block;
                            width: 100%;
                        }
                            .testi-photo-inner img{
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                object-position: center;
                            }
                        .testi-head {
                            text-align: right;
                            padding-right: 59px;
                        }
                            .testi-feed {
                                background: #fff;
                                position: relative;
                                margin-left: -232px;
                                margin-top: 73px;
                                box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 5%);
                                padding: 65px 15px 70px;
                            }
                                .testi-feed .global-site-btn a::before {
                                    width: 320px;
                                }
                                    .testi-feed .global-site-btn a{
                                        max-width: 300px;
                                        margin: 0 auto;
                                    }
                                        .testi-feed .global-site-btn a:hover {
                                            max-width: 320px;
                                        }
                                    .testi-slick-slider .slick-slide > div > div {
                                        display: block !important;
                                    }
                                .testi-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                    display:none;
                                }
                            .testi-slick-slider {
                                padding: 0 65px;
                                max-width: 910px;
                                margin: 0 auto;
                            }
						.test-list {
							display: flex;
							flex-direction: column;
							align-items: center;
							justify-content: center;
						}
                        .test-list img {
                            margin: 0 auto 30px;
                        }
                    .test-list p {
                        font-size: 16px;
                        color: #454545;
                        line-height: 1.75;
                        letter-spacing: .85px;
                        text-align: center;
                        font-family: var(--font-family-default);
                        padding-bottom: 18px;
                    }
                        .test-list p strong {
                            font-size: 20px;
                            color: #000;
                            line-height: 1.7;
                            letter-spacing: .05px;
                        }
                        .test-list span {
                            display: block;
                            text-align: center;
                            font-size: 21px;
                            text-transform: uppercase;
                            font-weight: 700;
                            color: #000;
                            font-family: var(--font-family-title);
                            letter-spacing: 1px;
                            margin-top: 25px;
                           margin-bottom: 49px;
                        }
                .test-list .global-site-btn a {
                    max-width: 213px;
                }
            .testi-arrow-holder{
                position: absolute;
                top: -83px;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                pointer-events: none;
                padding: 0 40px 0;
                z-index: 5;
            }
        .testi-arrow-holder span{
            pointer-events: auto;
            cursor: pointer;
            font-size: 50px;
            padding: 5px;
            -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;
        }
            .testi-arrow-holder span:hover{
                opacity: .7;
            }
/*videos*/
section.featured-videos-area {
    position: relative;
    padding: 117px 15px 0;
}
    .fv-accent {
        position: absolute;
        top: 153px;
        right: 0;
        width: 35%;
        height: 49%;
    }
        .fv-accent canvas {
            display: block;
            width: 100%;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            height: 100%;
        }
    .fv-holder {
        max-width: 1473px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }
        .fv-head {
            text-align: center;
        }
            .fv-head .global-site-head {
                text-align: left;
            }
                .fv-feed {
                    display: flex;
                    flex-wrap: wrap;
                    margin: 49px 0 0;
                }
                    .fv-main-slider {
                        width: 49.695%;
                    }
                        .fv-thumb-slider {
                            width: 50.305%;
                            padding-left: 12px;
                            overflow: hidden;
                        }
                            .fv-slick-slider .slick-slide > div > div,
                            .fv-thumb-slick-slider .slick-slide > div > div {
                                display: block !important;
                            }
                                .fv-slick-slider:not(.slick-initialize) > div:not(:first-child),
                                .fv-thumb-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                    display:none;
                                }
                                    .fv-list a {
                                        display: block;
                                        position: relative;
                                    }
                                        .fv-list a canvas {
                                            display: block;
                                            width: 100%;
                                            background: #000;
                                            position: relative;
                                            z-index: 2;
                                            opacity: .42;
                                            -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;
                                        }
                                            .fv-list a img {
                                                position: absolute;
                                                top: 0;
                                                left: 0;
                                                width: 100%;
                                                height: 100%;
                                                object-fit: cover;
                                                object-position: center;
                                            }
                                        .fv-list a:hover canvas{
                                            opacity: .6;
                                        }
                                    .fv-list a::after{
                                        content: '';
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        right: 0;
                                        bottom: 0;
                                        margin: auto;
                                        width: 102px;
                                        height: 102px;
                                        background: url(images/play-icon.png) no-repeat;
                                        background-position: center;
                                        background-size: contain;
                                        z-index: 5;
                                    }
                                .fv-thumb-slick-slider .fv-list a::after{
                                    width: 69px;
                                    height: 69px;
                                }
                            .fv-thumb-slick-slider {
                                position: relative;
                                margin: 0 -6px;
                            }
                        .fv-thumb-slick-slider .fv-list{
                            padding: 0 6px;
                        }
                    .fv-links {
                        margin: 57px 0 0;
                    }
                .fv-links .global-site-btn:first-child a::before {
                    width: 320px;
                }
            .fv-links .global-site-btn:first-child a {
                max-width: 300px;
            }
        .fv-links .global-site-btn:first-child a:hover {
            max-width: 320px;
        }
        .fv-links .global-site-btn a{
            margin: 0 auto;
        }
            .fv-links .global-site-btn{
                margin-bottom: 27px;
            }
                .fv-links .global-site-btn:last-child a::before {
                    width: 460px;
                }
                    .fv-links .global-site-btn:last-child a {
                        max-width: 440px;
                    }
                        .fv-links .global-site-btn:last-child a:hover {
                            max-width: 460px;
                        }
                            .fv-links .global-site-btn:last-child {
                                margin-bottom: 0;
                            }
/*social media*/
section.social-media-area {
    position: relative;
    padding: 105px 15px 0;
    background: #fff url(images/sm-monogram.png) no-repeat;
    background-position: top 100px center;
    background-size: auto;
}
    .sm-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 53.5%;
        height: 30%;
    }
        .sm-accent canvas{
            display: block;
            width: 100%;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            height: 100%;
        }
    .sm-holder {
        max-width: 1350px;
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }
        .sm-head .global-site-title-bot {
            line-height: .9;
        }
            .sm-content {
                padding: 15px 0 70px;
                width: 47.408%;
                position: relative;
                z-index: 5;
            }
                .sm-feed-holder {
                    width: 52.592%;
                    position: relative;
                    z-index: 5;
                    padding: 71px 0 0;
                }
                    .sm-agent-photo {
                        position: relative;
                        margin-right: -12px;
                        margin-left: -152px;
                        margin-top: 52px;
                    }
                        .sm-slick-slider .slick-slide > div > div{
                            display: block !important;
                        }
                            .sm-slick-slider:not(.slick-initialize) > div:not(:first-child){
                                display:none;
                            }
                                .sm-feed-head {
                                    font-size: 24px;
                                    color: #000;
                                    display: flex;
                                    justify-content: space-between;
                                    font-family: var(--font-family-default);
                                    letter-spacing: 2.2px;
                                    margin-bottom: 29px;
                                }
                                    .sm-slick-slider {
                                        position: relative;
                                        margin: 0 -5px 58px;
                                    }
                                        .sm-list {
                                            padding: 5px;
                                        }
                                            .sm-list a {
                                                display: block;
                                                position: relative;
                                            }
                                                .sm-list a canvas {
                                                    display: block;
                                                    width: 100%;
                                                    background: #fff;
                                                    position: relative;
                                                    z-index: 2;
                                                    /* opacity: .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;
                                                }
                                                    /* .sm-list.black-bg a canvas{
                                                        background: #000;
                                                        opacity: .45;
                                                    } */
                                                    .sm-list a:hover img{
                                                        filter: grayscale(0);
                                                    }
                                                        /* .sm-list a:hover canvas{
                                                            opacity: 0 !important;
                                                        } */
                                                    .sm-list a img{
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        object-fit: cover;
                                                        object-position: center;
                                                        filter: grayscale(1);
                                                    }
                                                .sm-list a span {
                                                    position: absolute;
                                                    bottom: 30px;
                                                    right: 28px;
                                                    font-size: 44px;
                                                    color: #fff;
                                                    z-index: 3;
                                                }

                                                .sm-list a canvas {
                                                    display: block;
                                                    width: 100%;
                                                    background-position: center;
                                                    background-size: cover;
                                                    background-repeat: no-repeat;
                                                    background-color: #323232;
                                                     filter: grayscale(1);
                                                }
                                                .sm-list a:has(video) canvas{
                                                   opacity: 0 !important;
                                                }
                                                .sm-list a video {
                                                    position: absolute;
                                                    top: 0;
                                                    left: 0;
                                                    z-index: 0;
                                                    height: 100%;
                                                    object-fit: cover;
                                                    object-position: center;
                                                    filter: grayscale(1);
                                                }
                                                .sm-list a:hover canvas,
                                                .sm-list a:hover video {
                                                   filter: grayscale(0);
                                                }

                                            .sm-feed-holder .global-site-btn a::before{
                                                width: 340px;
                                            }
                                        .sm-feed-holder .global-site-btn a{
                                           max-width: 320px;
                                           margin: 0 auto;
                                        }
                                    .sm-feed-holder .global-site-btn a:hover{
                                       max-width: 340px;
                                    }
/*get in touch*/
section.get-in-touch-area {
    position: relative;
    padding: 161px 15px 0;
}
    .gt-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 68%;
    }
        .gt-bg canvas{
            display: block;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: grayscale(1);
        }
    .gt-holder {
        max-width: 1435px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
        .gt-holder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 100%;
            width: 1000px;
            height: 100%;
            background: #fff;
            z-index: -1;
        }
        .gt-form-area {
            width: 60.558%;
            background: #fff;
            position: relative;
            padding: 0 15px 69px;
        }
            .gt-form-area::after {
                content: '';
                position: absolute;
                top: -50px;
                left: 0;
                width: 100%;
                height: 100%;
                background: #fff url(images/gt-monogram.png) no-repeat;
                background-position: top center;
                background-size: auto;
            }
            .gt-photo {
                width: 39.442%;
                position: relative;
                margin-top: 38px;
            }
                .gt-photo::after {
                    content: '';
                    position: absolute;
                    bottom: -85px;
                    left: 100%;
                    width: 91px;
                    height: 98%;
                    background: #000 url(images/gt-accent.jpg) no-repeat;
                    background-position: center;
                    background-size: cover;
                }
                .gt-head {
                    text-align: center;
                }
                    .gt-head .global-site-head {
                        text-align: left;
                    }
                        .gt-text {
                            text-align: center;
                            font-size: 18px;
                            color: #000;
                            font-weight: 600;
                            letter-spacing: .8px;
                            margin: 63px 0 0;
                            font-family: var(--font-family-default);
                        }
                            .gt-photo-inner {
                                position: relative;
                            }
                                .gt-photo-inner canvas{
                                    display: block;
                                    width: 100%;
                                }
                                    .gt-photo-inner img{
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        object-fit: cover;
                                        object-position: center;
                                    }
                                .gt-form {
                                    font-size: 0;
                                    position: relative;
                                    display: block;
                                    max-width: 636px;
                                    margin: 15px auto 0;
                                }
                                    .gt-fields {
                                        position: relative;
                                        width: calc(100% / 2);
                                        display: inline-block;
                                        vertical-align: top;
                                        padding: 0 14px;
                                        margin-bottom: 24px;
                                    }
                                        .gt-fields.gt-full {
                                            width: 100%;
                                        }
                                        .gt-form form {
                                            position: relative;
                                            margin: 0 -14px;
                                        }
                                            .gt-fields input, 
                                            .gt-fields textarea {
                                                font-size: 16px;
                                                font-weight: 700;
                                                color: #454545;
                                                font-family: var(--font-family-default);
                                                letter-spacing: 1px;
                                                width: 100%;
                                                height: 75px;
                                                border-radius: 0;
                                                resize: none;
                                                border: none;
                                                background: transparent;
                                                border-bottom: 1px solid rgb(0 0 0 / 75%) !important;
                                                -webkit-appearance: none;
                                                -moz-appearance: none;
                                                text-transform: uppercase;
                                            }
                                                .gt-form textarea {
                                                    padding-top: 29px;
                                                    height: 115px;
                                                }
                                                    .gt-fields.gt-textarea {
                                                        width: 100%;
                                                        margin-bottom: 0;
                                                        position: relative;
                                                    }
                                                        .gt-fields input.wpcf7-form-control.wpcf7-submit {
                                                            font-size: 0;
                                                            width: 100%;
                                                            height: 55px;
                                                            border: 0 !important;
                                                            -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;
                                                        }
                                                            .gt-fields.gt-btn span.gt-submit{
                                                                font-weight: 700;
                                                                letter-spacing: 2.5px;
                                                                font-family: var(--font-family-default);
                                                                display: block;
                                                                color: #000;
                                                                position: absolute;
                                                                top: 9px;
                                                                font-size: 15px;
                                                                text-transform: uppercase;
                                                                left: 0;
                                                                width: 100%;
                                                                max-width: 175px;
                                                                text-align: center;
                                                                -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;
                                                                pointer-events: none;
                                                                z-index: 5;
                                                            }
                                                        .gt-fields.gt-btn:hover span.gt-submit{
                                                            max-width: 195px;
                                                            top: 18px;
                                                            color: #fff;
                                                        }
                                                        .gt-fields.gt-btn::after {
                                                            content: '';
                                                            position: absolute;
                                                            top: -10px;
                                                            left: -10px;
                                                            width: 195px;
                                                            height: 100%;
                                                            border: solid 1px #c1c1c1;
                                                            pointer-events: none;
                                                        }
                                                    .gt-fields.gt-btn::before {
                                                        content: '';
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 3px;
                                                        height: 100%;
                                                        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;
                                                        pointer-events: none;
                                                        z-index: 2;
                                                    }
                                                            .gt-fields.gt-btn:hover::before {
                                                                width: 100%;
                                                            }
                                                        .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 {
                                                        position: absolute;
                                                        font-size: 11px;
                                                        width: auto;
                                                        /* left: 0; */
                                                        top: auto;
                                                        bottom: 0;
                                                    }
                                                .gt-form span.wpcf7-form-control-wrap {
                                                    display: block;
                                                }
                                            .gt-form div.wpcf7-response-output {
                                                margin: auto;
                                                position: absolute;
                                                width: calc(100% - 28px);
                                                font-size: 12px;
                                                color: #000;
                                                text-align: center;
                                                left: 0;
                                                right: 0;
                                                margin-top: 5px;
                                            }
                                                .gt-fields.gt-btn {
                                                    display: flex;
                                                    align-items: center;
                                                    justify-content: center;
                                                    margin: 67px auto 0;
                                                    position: relative;
                                                    max-width: 195px;
                                                    width: 100%;
                                                    padding: 0;
                                                }
                                            .gt-fomr-inner {
                                                position: relative;
                                                z-index: 5;
                                            }
/*footer*/
footer.main-footer {
    position: relative;
    padding: 85px 0 0;
}
    .ftr-inner {
        /*background: #000;*/
        padding: 87px 0 0;
        position: relative;
        z-index: 5;
    }
        .ftr-holder {
            display: flex;
            flex-wrap: wrap;
        }
            .ftr-col1 {
                width: 31.58%;
            }
                .ftr-col2 {
                    width: 28.246%;
                    padding: 40px 15px 0;
                }
                    .ftr-col3 {
                        width: 40.174%;
                        padding: 4px 0;
                    }
                .ftr-bg{
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                }
            .ftr-bg canvas{
                display: block;
                width: 100%;
                height: 100%;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
            }
        .ftr-inner .container {
            position: relative;
            z-index: 5;
        }
    .ftr-inner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% - 94px);
        height: 100%;
        background: #000;
        opacity: .88;
    }
/*footer logo*/
.ftr-logos span {
    margin: 0 0 37px;
    display: block;
}
    .ftr-logos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 235px;
        margin-bottom: 9px;
    }
        .ftr-col1 .global-site-btn {
            max-width: 235px;
        }
            .ftr-col1 .global-site-btn a {
                margin: 0 auto;
                color: #fff;
            }
                .ftr-col1 .global-site-btn a::after {
                    background: #fff;
                }
                    .ftr-col1 .global-site-btn a:hover::after {
                        width: 100%;
                    }
                        .ftr-col1 .global-site-btn a:hover {
                            color: #000;
                        }
/*footer contact*/
.ftr-contact a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-family-default);
    letter-spacing: 1.3px;
    -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-contact span {
        display: block;
        margin-bottom: 35px;
    }
        .ftr-contact span strong {
            display: block;
            font-weight: 700;
            font-family: var(--font-family-title);
            text-transform: uppercase;
            color: #fff;
            letter-spacing: 7.2px;
            margin-bottom: 10px;
        }
            .ftr-contact a:hover{
                opacity: .6;
            }
/*footer nav*/
.ftr-nav {
    max-width: 420px;
    margin: 0 0 0 auto;
}
    ul.footernav {
        font-size: 0;
        max-width: 280px;
        text-align: right;
    }
        ul.footernav > li > a {
            display: inline-block;
            padding: 5px 0;
            color: #fff;
            font-size: 22px;
            font-weight: 400;
            font-family: var(--font-family-title);
            text-transform: uppercase;
            -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;
            position: relative;
            pointer-events: auto;
            letter-spacing: .7px;
        }
            ul.footernav li a:hover{
                opacity: .7;
            }
                ul.footernav > li {
                    display: block;
                    border-right: solid 1px rgb(255 255 255 / 50%);
                    padding: 4px 40px 4px 0;
                }
                    ul.footernav .sub-menu a{
                        font-family: var(--font-family-default);
                        font-size: 16px;
                        text-transform: uppercase;
                        -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;
                        color: #fff;
                    }
                        ul.footernav > li > .sub-menu {
                            text-align: left;
                            position: relative;
                            left: 100%;
                            margin-top: -24px;
                            margin-left: 80px
                        }
                            ul.footernav > li > .sub-menu li:last-child {
                                margin-bottom: 0;
                            }
                                ul.footernav > li > .sub-menu li {
                                    margin-bottom: 10px;
                                }
                                    ul.footernav > li:nth-child(1), ul.footernav > li:nth-child(2) {
                                        margin-bottom: 17px;
                                    }
/*disclaimer*/
.ftr-disclaimer {
    font-size: 14px;
    color: #8f8f8f;
    line-height: 1.6;
    letter-spacing: .2px;
    font-family: var(--font-family-default);
}
/*copyright*/
.footer-copyright {
    font-size: 14px;
    color: #a8a8a8;
    line-height: 2;
    letter-spacing: .2px;
    font-family: var(--font-family-default);
    font-weight: 400;
    margin-bottom: 17px;
}   
.footer-copyright a {
    display: inline-block;
    color: #a8a8a8;
    -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 span{
            font-family: var(--font-family-title);
            color: #fff;
            font-weight: 700;
        }
        .footer-copyright a[href="https://www.agentimage.com"]{
            text-decoration: underline !important;
            font-family: var(--font-family-title);
            color: #fff;
        }   
            .footer-copyright a[href="https://www.agentimage.com"]:hover{
                opacity: .7;
            }
.mls {
    font-size: 32px;
    color: #fff;
}
.mls em {
    margin: 0 2px;
}
.ftr-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 69px 0 75px;
}
    .ftr-bot-left {
        width: 35%;
        max-width: 347px;
    }
        .ftr-bot-right {
            width: 58%;
        }
        
 /* new dev */
 .newdev-holder {
    margin: 100px 0 40px;
}
.newdev-img {
    display: block;
    position: relative;
    overflow: hidden;
}
.newdev-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}
.newdev-img canvas {
    display: block;
    width: 100%;
    height: auto;
}
.newdev-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--default-transition);
    object-fit: cover;
}
.newdev-box {
    width: 90%;
    max-width: 1172px;
    margin: -200px auto 0;
    background: #fff;
    position: relative;
    text-align: center;
    padding: 70px 6.250vw 30px;
    box-shadow: 0 0 20px rgb(0 0 0 / .1);
}
.newdev-head {
    text-align: center;
    margin-bottom: 30px;
}
.newdev-head .global-site-head {
    text-align: left;
}
.newdev-box p {
    color: #454545;
    line-height: 1.5;
    margin-bottom: 45px;
    font-size: 18px;
    
}
.newdev-box .global-site-btn a {
    margin: 30px auto;
}           
/*******************************************************
 *
 * 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: 74%; }
#content-full #content { width: 100%; }
/* Adjust width of sidebar */
.sidebar{ width: 24%; }
/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}
    .page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
        margin-left: -15px;
        margin-right: -15px;
    }
/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }
/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title, 
#content .archive-title {
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-family-title);
    letter-spacing: -1px;
    font-size: 50px;
}
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
}
.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}
.amh-header-buttons {
    opacity: 0;
    pointer-events: none;
}
.mobile-burger-menu {
    width: 30px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.mobile-burger-menu:hover{
    opacity: .7;
}
.mobile-burger-menu span {
    width: 100%;
    height: 3px;
    background: #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;
    display: block;
}
.mobile-burger-menu span:nth-child(2) {
    margin: 7px 0;
}
/*site off*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}
.site-offcanvas .offcanvas-backdrop.active {
    visibility: visible;
}
.site-offcanvas .offcanvas-backdrop {
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}
.slide-menu-content {
    position: fixed;
    bottom: 0;
    right: -10%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1002;
    visibility: hidden;
    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;
}
.slide-menu-content.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}
.slide-menu-inner-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
    z-index: 2;
    padding: 0;
}
.slide-menu-bottom-inner {
    padding: 0 15px;
    margin: 0 auto;
    display: block;
}
.slide-menu-content-holder {
    position: relative;
    padding: 15px 14px 30px;
    height: 100%;
    background: #000;
}
    .slide-menu-content-holder::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/b-menu-bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        filter: grayscale(1);
        opacity: .2;
    }
    .slide-menu-content-inner {
        position: relative;
        z-index: 5;
        max-width: 100%;
        margin: 0 auto;
    }
        .slide-menu-content-inner .slider-logo a {
            max-width: 71px;
        }
            .slider-logo a {
                display: block;
                max-width: 71px;
            }
.b-menu {
    margin-top: 63px;
    padding: 0;
    text-align: right;
}
.b-menu .menu-main-nav-container {
    display: block;
}
ul#slidenav {
    font-size: 0;
}
ul#slidenav > li > a {
    display: inline-block;
    padding: 5px 0;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    -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;
    position: relative;
    letter-spacing: .5px;
}
    
ul#slidenav > li ul.sub-menu a {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    font-family: var(--font-family-secondary);
    text-transform: uppercase;
    padding: 3px 0;
    display: inline-block;
    letter-spacing: .5px;
    -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#slidenav li a:hover{
    color: #b79a30 !important;
}
ul#slidenav > li:hover > a{
    color: #b79a30 !important;
}
ul#slidenav li ul.sub-menu {
    margin-top: 9px;
    margin-left: 0;
    padding-left: 25px;
}
ul#slidenav li ul.sub-menu li {
    margin-bottom: 4px;
}
ul#slidenav > li {
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
}
ul#slidenav > li.bmenu-dd {
    margin-top: 12px;
}
ul#slidenav > li > .sub-menu {
    margin-bottom: 10px;
    margin-top: 12px !important;
}
.close-burger-menu {
    font-size: 19px;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 13px;
    padding: 5px;
    cursor: pointer;
    -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;
    text-transform: uppercase;
    z-index: 10;
}
.close-burger-menu:hover{
    opacity: .7;
}
span.wpcf7-spinner {
    position: absolute;
    bottom: -24px;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 11px;
    width: auto;
    /* left: 0; */
    top: auto;
    bottom: 0;
}
.wc-agent-contact span a.wc-agent-dre,
.ftr-contact a.wc-agent-dre {
    pointer-events: none;
}
p#breadcrumbs {
    margin: -30px auto 0;
    text-transform: uppercase;
    color: #fff;
}
span.breadcrumb_last {
    font-weight: 700 !important;
}
p#breadcrumbs a {
    -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;
}
p#breadcrumbs a:hover {
    color: #ffffff;
    opacity: 0.7;
}
.ip-banner-logos {
    position: absolute;
    bottom: 15.8%;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    display: none;
}
.ip-banner-logos .slider-logos a {
    margin-bottom: 32px;
    pointer-events: auto;
}
#content-sidebar, #content-full {
    margin-top: 0 !important;
}
.featured-properties-area .fp-photo a {
    pointer-events: none;
}
.fv-thumb-slider .slick-track {
    left: -371px;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: auto;
    top: 0.5em;
}

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

#content .sitemap-list .page_item.page-item--1 {
    display: none;
}

body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}
/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

[class^="ai-font-"]::before {
    font-family: 'agentimage' !important;
}

.cu-form-holder {
    font-size: 0;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */