/*
Theme Name: Shawn Shirdel
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
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
 *
 *******************************************************/
@font-face {
    font-family: 'Trajan Pro 3';
    src: url('./fonts/trajanpro/TrajanPro3Bold.eot');
    src: url('./fonts/trajanpro/TrajanPro3Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/trajanpro/TrajanPro3Bold.woff2') format('woff2'),
        url('./fonts/trajanpro/TrajanPro3Bold.woff') format('woff'),
        url('./fonts/trajanpro/TrajanPro3Bold.ttf') format('truetype'),
        url('./fonts/trajanpro/TrajanPro3Bold.svg#TrajanPro3Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('./fonts/trajanpro/TrajanPro3ExtraLight.eot');
    src: url('./fonts/trajanpro/TrajanPro3ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('./fonts/trajanpro/TrajanPro3ExtraLight.woff2') format('woff2'),
        url('./fonts/trajanpro/TrajanPro3ExtraLight.woff') format('woff'),
        url('./fonts/trajanpro/TrajanPro3ExtraLight.ttf') format('truetype'),
        url('./fonts/trajanpro/TrajanPro3ExtraLight.svg#TrajanPro3ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('./fonts/trajanpro/TrajanPro3Black.eot');
    src: url('./fonts/trajanpro/TrajanPro3Black.eot?#iefix') format('embedded-opentype'),
        url('./fonts/trajanpro/TrajanPro3Black.woff2') format('woff2'),
        url('./fonts/trajanpro/TrajanPro3Black.woff') format('woff'),
        url('./fonts/trajanpro/TrajanPro3Black.ttf') format('truetype'),
        url('./fonts/trajanpro/TrajanPro3Black.svg#TrajanPro3Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('./fonts/trajanpro/TrajanPro3Regular.eot');
    src: url('./fonts/trajanpro/TrajanPro3Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/trajanpro/TrajanPro3Regular.woff2') format('woff2'),
        url('./fonts/trajanpro/TrajanPro3Regular.woff') format('woff'),
        url('./fonts/trajanpro/TrajanPro3Regular.ttf') format('truetype'),
        url('./fonts/trajanpro/TrajanPro3Regular.svg#TrajanPro3Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('./fonts/trajanpro/TrajanPro3Light.eot');
    src: url('./fonts/trajanpro/TrajanPro3Light.eot?#iefix') format('embedded-opentype'),
        url('./fonts/trajanpro/TrajanPro3Light.woff2') format('woff2'),
        url('./fonts/trajanpro/TrajanPro3Light.woff') format('woff'),
        url('./fonts/trajanpro/TrajanPro3Light.ttf') format('truetype'),
        url('./fonts/trajanpro/TrajanPro3Light.svg#TrajanPro3Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro 3';
    src: url('./fonts/trajanpro/TrajanPro3SemiBold.eot');
    src: url('./fonts/trajanpro/TrajanPro3SemiBold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/trajanpro/TrajanPro3SemiBold.woff2') format('woff2'),
        url('./fonts/trajanpro/TrajanPro3SemiBold.woff') format('woff'),
        url('./fonts/trajanpro/TrajanPro3SemiBold.ttf') format('truetype'),
        url('./fonts/trajanpro/TrajanPro3SemiBold.svg#TrajanPro3SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-title: 'Trajan Pro 3';
    --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;
}

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

/* Sub Menu */
ul.header-nav-col li{
    position:relative;
    display: inline-block;
}
 
ul.header-nav-col .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 172px;
    left: 50%;
    margin-left: -85px;
    padding-top: 7px;
    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.header-nav-col .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px;
    background: rgb(0 0 0 / 75%);
}

ul.header-nav-col .sub-menu a:hover{
    background: #000;
    text-decoration: none;
}
ul.header-nav-col .sub-menu .sub-menu{
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}
ul.header-nav-col 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.header-nav-col .sub-menu li{
    position: relative;
    display: block;
}

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

/* Fixed Sub Menu */
ul#nav2 li{
    position:relative;
    display: inline-block;
}
 
ul#nav2 .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 172px;
    left: 50%;
    margin-left: -85px;
    padding-top: 7px;
    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#nav2 .sub-menu a{
    color: #fff;
    display: block;
    padding: 10px;
    background: rgb(0 0 0 / 75%);
}

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

ul#nav2 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#nav2 .sub-menu li{
    position: relative;
    display: block;
}

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


/*******************************************************
 *
 * 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;
}

#nav {
    display: none;
}

/*fixed header*/
header.main-header.show-fixed {
    background: #000;
    padding: 15px;
}

    header.main-header.show-fixed .logo-holder a {
        max-width: 68px;
    }

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    padding: 54px 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;
}

    .logo-holder a {
        position: relative;
        display: block;
        max-width: 90px;
        margin: 0 auto;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .header-nav .menu-main-nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

            .header-nav-col.nav-left, .header-nav-col.nav-right {
                width: 41.492%;
                /*padding: 4px 0 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;
            }

                .logo-holder {
                    width: 17.016%;
                }

                    .header-nav .header-nav-col.nav-left {
                        text-align: right;
                    }

                        .header-nav .header-nav-col.nav-right {
                            text-align: left;
                        }

                            .header-nav .header-nav-col.nav-left li:first-child {
                                margin-left: 0;
                            }

                                .header-nav .header-nav-col.nav-right li:last-child {
                                    margin-right: 0;
                                }

/*header nav*/
nav.header-nav {
    position: relative;
    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;
}

    nav.header-nav ul.header-nav-col{
        font-size: 0;
        position: relative;
        z-index: 5;
    }

        nav.header-nav ul.header-nav-col > li{
            position: relative;
            display: inline-block;
            vertical-align: top;
            margin: 0 38px;
            -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.header-nav-col > li > a {
                font-size: 13px;
                color: #fff;
                font-weight: 400;
                font-family: var(--font-family-default);
                letter-spacing: 2.5px;
                text-transform: uppercase;
                display: block;
                position: relative;
                z-index: 5;
                padding: 10px;
                background: transparent;
                -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.header-nav-col > li > a:hover {
                    background: rgb(0 0 0 / 75%);
                }

                    nav.header-nav ul.header-nav-col .sub-menu a {
                        padding: 12px 0;
                        font-size: 12px;
                        font-weight: 400;
                        font-family: var(--font-family-default);
                        text-transform: uppercase;
                        letter-spacing: 2.5px;
                        text-align: center;
                        margin-bottom: 2px;
                        position: relative;
                        display: block;
                        -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-nav .header-nav-col.nav-left li:first-child {
                            padding-left: 0;
                        }
                                

/*slideshow*/
.slideshow-area,
.slider-holder {
    position: relative;
}
    .slider-holder .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-custom-video::after,
    .slider-holder .cycloneslider-slide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .2;
        z-index: 2;
        pointer-events: none;
    }

        .slider-holder .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-custom-video::before,
        .slider-holder .cycloneslider-slide::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            min-height: 273px;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
            z-index: 2;
            pointer-events: none;
        }

            .slider-holder::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(images/slider-gradient.png) no-repeat;
                background-size: cover;
                background-position: center;
                pointer-events: none;
            }

                .slider-holder::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    margin: auto;
                    width: calc(100% - 40px);
                    height: calc(100% - 40px);
                    pointer-events: none;
                    border: 1px solid #fff;
                    z-index: 1;
                    opacity: .25;
                }

/*slider tagline*/
.slider-content-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
}

    .slider-tagline {
        font-size: 75px;
        font-weight: 300;
        color: #fff;
        text-transform: uppercase;
        font-family: var(--font-family-title);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
        letter-spacing: 2.5px;
        line-height: 1.25;
        pointer-events: auto;
    }

        .slider-tagline span {
            display: block;
            font-size: 16px;
            font-weight: 500;
            font-family: var(--font-family-default);
            letter-spacing: 3.2px;
        }

/*side fixed smi & contact*/
.side-fixed-contact {
    position: fixed;
    top: 10%;
    right: -27px;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1001;
}

    .fixed-smi{
        position: relative;
    }

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

            .fixed-smi a {
                font-size: 18px;
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 37px;
                height: 37px;
                padding: 5px;
                border-radius: 100%;
                margin: 0 0;
                pointer-events: auto;
                position: relative;
                z-index: 4;
                background: transparent;
                -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 {
                    background: #000;
                }

                    span.fixed-smi-div {
                        width: 1px;
                        height: 49px;
                        background: #fff;
                        position: relative;
                        left: 21px;
                        top: -12px;
                    }

                        .fixed-smi p {
                            font-size: 11px;
                            font-weight: 300;
                            font-family: var(--font-family-default);
                            text-transform: uppercase;
                            color: #fff;
                            letter-spacing: 2.5px;
                            transform: rotate(-90deg);
                            position: relative;
                            top: -76px;
                            right: 25px;
                        }


/*global title*/
.global-title {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    color: #737373;
    display: inline-block;
    letter-spacing: 9.5px;
    line-height: 1.45;
}

    .global-title span {
        display: block;
        font-size: 75px;
        font-weight: 300;
        font-family: var(--font-family-title);
        color: #000;
        letter-spacing: 2.2px;
    }

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


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

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

        .fp-head {
            margin-bottom: 22px;
        }

            .fp-list-inner {
                position: relative;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                margin: 0 -1px;
            }

                .fp-list {
                    padding: 2px;
                }

                    .fp-list.fp-list-med {
                        width: 56.797%;
                    }

                        .fp-list.fp-list-small {
                            width: 43.203%;
                        }

                            .fp-list a {
                                position: relative;
                                display: block;
                            }

                                .fp-photo {
                                    position: relative;
                                }

                                    .fp-photo canvas {
                                        display: block;
                                        width: 100%;
                                        background: #000;
                                    }

                                        .fp-photo img {
                                            position: absolute;
                                            top: 0;
                                            left: 0;
                                            width: 100%;
                                            height: 100%;
                                            object-fit: cover;
                                            object-position: center;
                                            opacity: .9;
                                            -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;
                                        }

                                            .fp-content {
                                                position: absolute;
                                                bottom: 0;
                                                left: 0;
                                                color: #fff;
                                                padding: 29px 30px;
                                                -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;
                                            }

                                                .fp-price {
                                                    font-size: 36px;
                                                    font-weight: 600;
                                                    font-family: var(--font-family-default);
                                                    margin-bottom: 13px;
                                                    letter-spacing: 1.5px;
                                                }

                                                    .fp-address {
                                                        font-size: 24px;
                                                        font-weight: 300;
                                                        font-family: var(--font-family-title);
                                                        text-transform: uppercase;
                                                        letter-spacing: 2.3px;
                                                        line-height: 1.45;
                                                    }

                                                        .fp-address span {
                                                            display: block;
                                                            font-size: 16px;
                                                            font-weight: 300;
                                                            font-family: var(--font-family-default);
                                                            letter-spacing: 1.6px;
                                                        }

                                                            .fp-photo::after {
                                                                content: '';
                                                                position: absolute;
                                                                bottom: 0;
                                                                left: 0;
                                                                width: 100%;
                                                                min-height: 327px;
                                                                background: linear-gradient(to bottom, 
                                                                    rgba(0,0,0,0) 0%,
                                                                    rgba(0,0,0,0.5) 100%);
                                                                pointer-events: none;
                                                            }

                                                        .fp-list-holder {
                                                            display: flex;
                                                            flex-direction: column;
                                                        }

                                                    .fp-list-inner:nth-child(even) {
                                                        flex-direction: row-reverse;
                                                    }

                                                .fp-hover-content {
                                                    position: absolute;
                                                    top: 0;
                                                    left: 0;
                                                    width: 100%;
                                                    height: 100%;
                                                    display: flex;
                                                    align-items: center;
                                                    justify-content: center;
                                                    pointer-events: none;
                                                    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;
                                                }

                                            .fp-hover-btn {
                                                font-size: 13px;
                                                font-weight: 400;
                                                font-family: var(--font-family-default);
                                                color: #fff;
                                                text-transform: uppercase;
                                                letter-spacing: 2.6px;
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                width: 100%;
                                                max-width: 267px;
                                                height: 36px;
                                                background: transparent;
                                                border: 1px solid #fff;
                                                pointer-events: auto;
                                            }

                                        .fp-hover-btn em {
                                            margin-left: 20px;
                                        }

                                    .fp-list a:hover .fp-hover-content {
                                        opacity: 1;
                                    }

                                .fp-list a:hover .fp-content {
                                    opacity: 0;
                                }

                            .fp-list a:hover .fp-photo img {
                                filter: grayscale(1);
                                opacity: .25;
                            }

                        .global-btn.fp-btn a {
                            max-width: 227px;
                            margin: 68px auto 0;
                        }

                    .fp-bg {
/*
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: calc(100% - 175px);
                        background: url(images/fp-bg.jpg) no-repeat;
                        background-size: cover;
                        background-position: center;
                        filter: grayscale(1);
                        pointer-events: none;
                        opacity: .25;
*/
                    }

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

/*global button*/
.global-btn a {
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-family-default);
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 166px;
    height: 36px;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 75%);
    margin: 45px auto 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;
}

    .global-btn a:hover {
        background: #000;
        color: #fff;
    }

/*quick search section*/
section.quick-search-area {
    position: relative;
    padding: 89px 0 108px;
    z-index: 10;
}

    section.quick-search-area .container {
        position: relative;
        z-index: 5;
    }

        .qs-form form{
            position: relative;
            display: block;
            font-size: 0;
            margin: 0 -1px;
        }
            .qs-form select, .qs-form input {
                border-radius: 0;
                color: #000;
                font-size: 11px;
                font-weight: 400;
                font-family: var(--font-family-default);
                letter-spacing: .2px;
                -webkit-appearance: none;
                -moz-appearance: none;
                width: 100%;
                height: 56px;
                text-align: left;
                text-transform: uppercase;
                resize: none;
                border: 1px solid #bbbbbb;
                padding: 0 25px;
                background: url(images/qs-arrow.png) no-repeat scroll right 15px center;
                border-right: none;
                border-left: none;
            }

                .qs-form form div:first-child select {
                    border-left: 1px solid #bbbbbb;
                }

                .qs-form form div:nth-child(6) input {
                    border-right: 1px solid #bbbbbb;
                }

                    .qs-form select option{
                        color: #000;
                    }
                        .qs-form select::-ms-expand{
                            display: none;
                        }
                            .qs-form .qs-field {
                                display: inline-block;
                                vertical-align: bottom;
                                position: relative;
                            }
                                .qs-field {
                                    /*padding: 0 1px;*/
                                }
                                    .btn-form.qs-field.qsbtn1 input {
                                        font-size: 13px;
                                        font-weight: 500;
                                        font-family: var(--font-family-default);
                                        text-transform: uppercase;
                                        letter-spacing: 2.5px;
                                        border: none;
                                        color: #fff;
                                        width: 100%;
                                        height: 56px;
                                        text-align: center;
                                        background: #737373;
                                        -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;
                                    }
                                        .btn-form.qs-field.qsbtn1 input:hover {
                                            background: #000;
                                        }
                                            .btn-form.qs-field.qsbtn2 a {
                                                font-size: 13px;
                                                font-weight: 500;
                                                font-family: var(--font-family-default);
                                                text-transform: uppercase;
                                                letter-spacing: 2.5px;
                                                border: none;
                                                color: #fff;
                                                width: 100%;
                                                height: 56px;
                                                text-align: center;
                                                background: #000;
                                                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;
                                            }
                                                .btn-form.qs-field.qsbtn2 a:hover {
                                                    background: #737373;
                                                }
                                                    .long-form1 {
                                                        width: 17.951%;
                                                    }
                                                        .long-form2 {
                                                            width: 13.135%;
                                                        }
                                                    .short-form {
                                                        width: 10.508%;
                                                    }
                                                .qsbtn1 {
                                                    width: 13.923%;
                                                    padding-right: 3px;
                                                    padding-left: 11px;
                                                }
                                            .qsbtn2 {
                                                width: 12.959%;
                                                padding-left: 3px;
                                            }

                                        .qs-form p {
                                            font-size: 12px;
                                            font-weight: 300;
                                            font-family: var(--font-family-default);
                                            text-align: right;
                                            letter-spacing: 1px;
                                            padding: 8px 0 0;
                                            margin-right: 5px;
                                        }

                                    .qs-head .global-title span {
                                        margin-left: -5px;
                                    }

/*
                                .qs-left-bg {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    max-width: 898px;
                                    height: 100%;
                                    background: url(images/qs-left-bg.jpg) no-repeat;
                                    background-size: cover;
                                    background-position: center;
                                    filter: grayscale(1);
                                    pointer-events: none;
                                    opacity: .95;
                                }

                            .qs-left-bg::after {
                                content: '';
                                position: absolute;
                                right: 0;
                                width: 100%;
                                height: 100%;
                                background: linear-gradient(to right, 
                                    rgba(255,255,255,0) 0%,
                                    rgba(255,255,255,0.6) 27%,
                                    rgba(255,255,255,0.7) 62%,
                                    rgba(255,255,255,1) 100%);
                                pointer-events: none;
                            }
*/

                        section.quick-search-area::after {
                            content: '';
                            position: absolute;
                            top: 0;
                            right: 0;
                            width: calc(100% - 70px);
                            height: 100%;
                            background: #fff;
                            opacity: .5;
                            pointer-events: none;
                        }

/*
                    .qs-right-bg {
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: calc(100% - 70px);
                        height: 100%;
                        background: url(images/qs-right-bg.jpg) no-repeat;
                        background-size: cover;
                        background-position: center;
                        pointer-events: none;
                        opacity: .25;
                    }
*/

                .qs-right-gradient::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    max-width: 1092px;
                    height: 100%;
                    background: url(images/qs-right-gradient.png) no-repeat;
                    background-size: cover;
                    background-position: center;
                    pointer-events: none;
                }

            .qs-right-gradient {
                position: absolute;
                top: 0;
                right: 0;
                width: calc(100% - 70px);
                height: 100%;
                pointer-events: none;
            }

/*welcome section*/
section.welcome-area {
    position: relative;
    padding: 66px 0 188px;
}

    section.welcome-area .container {
        position: relative;
        z-index: 5;
    }

        .wc-col1 {
            margin-left: -160px;
            padding: 33px 0 0;
        }

            .wc-photo {
                position: relative;
                max-width: 550px;
            }

                .wc-photo img {
                    display: block;
                    width: 100%;
                }

                    .wc-col2 {
                        margin: 0 -15px;
                    }

                        .wc-head .global-title span {
                            letter-spacing: -0.8px;
                            margin-left: -5px;
                        }

                            .wc-text p {
                                font-size: 14px;
                                font-weight: 400;
                                font-family: var(--font-family-default);
                                color: #202020;
                                display: block;
                                margin-bottom: 25px;
                                line-height: 1.8;
                                letter-spacing: 0.75px;
                                max-width: 675px;
                                text-align: justify;
                            }

                                .wc-head {
                                    margin-bottom: 9px;
                                }

                                    .global-btn.wc-btn a {
                                        margin: 40px 0 0;
                                    }

                                        .wc-bg {
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            width: 100%;
                                            min-height: 604px;
                                            background: #000;
                                            pointer-events: none;
                                        }

                                            .wc-bg::after {
                                                content: '';
                                                position: absolute;
                                                bottom: 0;
                                                left: 0;
                                                width: 100%;
                                                height: 100%;
                                                background: url(images/wc-bg.jpg) no-repeat;
                                                background-size: cover;
                                                background-position: center;
                                                opacity: .05;
                                                filter: grayscale(1);
                                            }

                                        .wc-details-bg {
                                            position: absolute;
                                            top: 0;
                                            right: 0;
                                            width: 100%;
                                            max-width: 1069px;
                                            min-height: 886px;
                                            background: #fff;
                                            pointer-events: none;
                                        }

                                    .wc-details-bg::after {
                                        content: '';
                                        position: absolute;
                                        top: 0;
                                        right: 0;
                                        width: 100%;
                                        height: 100%;
                                        background: url(images/wc-details-bg.jpg) no-repeat;
                                        background-position: center;
                                        background-size: cover;
                                        filter: grayscale(1);
                                        opacity: .15;
                                    }

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


/*in the press section*/
section.press-area {
    position: relative;
    padding: 92px 15px 0;
}

    .ps-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        pointer-events: none;
    }

        .ps-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/ps-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            filter: grayscale(1);
            opacity: .33;
        }

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

                .ps-head .global-title {
                    color: #d9d9d9;
                }

                    .ps-head .global-title span {
                        color: #b28e3b;
                    }

                        .ps-list-holder {
                            position: relative;
                            max-width: 1210px;
                            margin: 0 auto 85px;
                        }

                            .ps-list {
                                max-width: 382px;
                                width: 100%;
                                text-align: center;
                                color: #d9d9d9;
                            }

                                .ps-list-text p {
                                    font-size: 14px;
                                    font-weight: 300;
                                    line-height: 1.8;
                                    font-style: italic;
                                    letter-spacing: 0.7px;
                                    position: relative;
                                    padding: 0 0 25px;
                                }

                                    .ps-list-text p::after {
                                        content: '';
                                        position: absolute;
                                        bottom: 0;
                                        left: 0;
                                        right: 0;
                                        margin: auto;
                                        width: 47px;
                                        height: 2px;
                                        background: #737373;
                                    }

                                        .ps-list-label {
                                            font-size: 18px;
                                            font-weight: 300;
                                            font-family: var(--font-family-title);
                                            color: #b28e3b;
                                            letter-spacing: 2.7px;
                                            padding: 28px 0 0;
                                        }

                                            .ps-head {
                                                margin-bottom: 18px;
                                            }

                                                    .ps-logo-holder {
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: space-between;
                                                        padding: 103px 0;
                                                        position: relative;
                                                        border-top: 1px solid rgb(255 255 255 / 25%);
                                                    }

                                                        .ps-logo-holder::after {
                                                            content: '';
                                                            position: absolute;
                                                            top: -1px;
                                                            left: 100%;
                                                            width: 1000px;
                                                            height: 1px;
                                                            background: rgb(255 255 255 / 25%);
                                                        }

                                                            .ps-logo-holder::before {
                                                                content: '';
                                                                position: absolute;
                                                                top: -1px;
                                                                right: 100%;
                                                                width: 1000px;
                                                                height: 1px;
                                                                background: rgb(255 255 255 / 25%);
                                                            }

                                                        .ps-logo img {
                                                            cursor: pointer;
                                                            filter: invert(1) brightness(8);
                                                            opacity: .7;
                                                            -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;
                                                        }

                                                    .ps-logo img:hover {
                                                        filter: none;
                                                        opacity: 1;
                                                    }

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

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

        .testi-inner {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-wrap: wrap;
        }

            .testi-col1 {
                width: 62.329%;
                padding: 33px 0 0;
            }

                .testi-col2 {
                    width: 37.671%;
                }

                    .testi-head {
                        margin-left: 85px;
                        margin-bottom: 32px;
                    }

                        .testi-bg {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            max-width: 1398px;
                            min-height: 479px;
                            background: #d9d9d9;
                            pointer-events: none;
                        }

                            .testi-bg::after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                background: url(images/testi-bg.jpg) no-repeat;
                                background-size: cover;
                                background-position: center;
                                filter: grayscale(1);
                                opacity: .15;
                            }

                                .testi-bg::before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    width: 70%;
                                    height: 100%;
                                    background: linear-gradient(to right, 
                                        rgba(255,255,255,0) 0%,
                                        rgba(255,255,255,1) 50%,
                                        rgba(255,255,255,1) 100%);
                                    z-index: 1;
                                    pointer-events: none;
                                }

                                    .testi-content {
                                        background: #fff;
                                        padding: 63px 15px 84px 86px;
                                        position: relative;
                                    }

                                        .testi-list em.quote-icon {
                                            display: block;
                                            width: 32px;
                                            height: 26px;
                                            background: url(images/quote-icon.png) no-repeat;
                                            margin: 0 0 29px;
                                        }

                                            .testi-text p {
                                                font-size: 14px;
                                                font-weight: 400;
                                                font-family: var(--font-family-default);
                                                color: #202020;
                                                max-width: 684px;
                                                line-height: 2;
                                                display: block;
                                                margin-bottom: 30px;
                                                letter-spacing: 0.7px;
                                            }

                                                .testi-text span {
                                                    font-size: 24px;
                                                    font-weight: 300;
                                                    font-family: var(--font-family-title);
                                                    color: #000;
                                                    letter-spacing: 2.5px;
                                                }

                                                    .global-btn.testi-btn a {
                                                        margin: 0;
                                                    }

                                                        .global-btn.testi-btn {
                                                            max-width: 166px;
                                                            width: 100%;
                                                        }

                                                            .testi-links {
                                                                display: flex;
                                                                align-items: flex-end;
                                                                justify-content: space-between;
                                                                max-width: 684px;
                                                                margin: 48px 0 0;
                                                            }

                                                                .testi-links > div:last-child {
                                                                    order: -1;
                                                                }

                                                            .testi-arrow span {
                                                                font-size: 22px;
                                                                color: #737373;
                                                                display: inline-block;
                                                                cursor: pointer;
                                                                margin: 0 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;
                                                            }

                                                            span.testi-prev {
                                                                color: #d9d9d9;
                                                                -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;
                                                            }

                                                        .testi-arrow span.testi-prev:hover {
                                                            color: #737373;
                                                        }

                                                        .testi-arrow span.testi-next:hover {
                                                            color: #d9d9d9;
                                                        }

                                                    .testi-arrow {
                                                        margin-right: -3px;
                                                    }

                                                .testi-content::after {
/*
                                                    content: '';
                                                    position: absolute;
                                                    top: 0;
                                                    left: 0;
                                                    width: 100%;
                                                    height: 100%;
                                                    background: url(images/testi-details-bg.jpg) no-repeat;
                                                    background-size: cover;
                                                    background-position: center;
                                                    pointer-events: none;
                                                    opacity: .25;
*/
                                                }

                                            .testi-list-holder, .testi-links {
                                                position: relative;
                                                z-index: 5;
                                            }

                                        .testi-content::before {
                                            content: '';
                                            position: absolute;
                                            top: 0;
                                            right: 0;
                                            width: 100%;
                                            height: 100%;
                                            background: linear-gradient(to right, 
                                                rgba(255,255,255,0) 0%,
                                                rgba(255,255,255,1) 100%);
                                            z-index: 1;
                                            pointer-events: none;
                                        }

                                    .testi-top-bot-gradient {
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        width: 100%;
                                        height: 100%;
                                        pointer-events: none;
                                    }

                                .testi-top-bot-gradient::after {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    min-height: 110px;
                                    background: linear-gradient(to bottom, 
                                        rgba(255,255,255,1) 0%,
                                        rgba(255,255,255,0) 100%);
                                    z-index: 1;
                                    pointer-events: none;
                                }

                            .testi-top-bot-gradient::before {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                width: 100%;
                                min-height: 110px;
                                background: linear-gradient(to bottom, 
                                    rgba(255,255,255,0) 0%,
                                    rgba(255,255,255,1) 100%);
                                z-index: 2;
                                pointer-events: none;
                            }

                        .testi-logo-bg {
                            position: absolute;
                            top: 0;
                            right: 0;
                            width: 100%;
                            max-height: 508px;
                            min-height: 489px;
                            background: url(images/testi-logo-bg.png) no-repeat;
                            background-position: center;
                            background-size: cover;
                            opacity: .2;
                            pointer-events: none;
                        }

                    .testi-logo-bg {
                        position: absolute;
                        top: 30px;
                        right: 20px;
                        width: 100%;
                        max-width: 508px;
                        min-height: 489px;
                        background: url(images/testi-logo-bg.png) no-repeat;
                        background-position: center;
                        background-size: cover;
                        opacity: .2;
                        pointer-events: none;
                        z-index: 3;
                    }

                .testi-photo {
                    width: calc((100vw - 1140px) / 2 + 100%);
                }

            .testi-photo img {
                display: block;
            }

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

/*social media section*/
section.social-media-area {
    position: relative;
    padding: 60px 0 0;
    margin: 140px 0 0;
}

    .sm-head {
        max-width: 1140px;
        margin: 0 auto 25px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

        .global-btn.sm-btn a {
            margin: 0 0 32px;
            max-width: 100%;
        }

            .global-btn.sm-btn {
                max-width: 297px;
                width: 100%;
            }

                section.social-media-area::after {
/*
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
*/
                    /*max-width: 1428px;*/
/*
                    min-height: 384px;
                    background: url(images/sm-bg.jpg) no-repeat;
                    background-size: cover;
                    background-position: center;
                    opacity: .25;
                    pointer-events: none;
*/
                }

                    .sm-content-holder {
                        display: flex;
                        justify-content: space-between;
                        flex-wrap: wrap;
                        margin: 0 -1px 2px;
                    }

                        .sm-col1 {
                            width: 5.363%;
                            position: relative;
                        }

                            .sm-col2 {
                                width: 94.637%;
                            }

                                .sm-list-holder {
                                    position: relative;
                                }

                                    .sm-list {
                                        /*width: calc(100% / 5);*/
                                        padding: 0 1px;
                                    }

                                        .sm-list a {
                                            position: relative;
                                            display: block;
                                            overflow: hidden;
                                        }

                                            .sm-photo {
                                                position: relative;
                                            }

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

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

                                                    .sm-list a:hover .sm-photo img {
                                                        filter: grayscale(1);
                                                        transform: scale(1.2);
                                                    }

                                                        .sm-label {
                                                            position: absolute;
                                                            top: 0;
                                                            left: 0;
                                                            width: 100%;
                                                            height: 100%;
                                                            display: flex;
                                                            align-items: center;
                                                            justify-content: center;
                                                            background: #000;
                                                            pointer-events: none;
                                                        }

                                                            .sm-label em {
                                                                font-size: 38px;
                                                                color: #fff;
                                                                pointer-events: auto;
                                                            }

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

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

/*get in touch section*/
section.get-in-touch-area {
    position: relative;
    padding: 93px 0 117px;
    background: #000;
}

    section.get-in-touch-area .container {
        position: relative;
        z-index: 5;
    }

        section.get-in-touch-area::after {
/*
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/gt-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: .3;
            pointer-events: none;
*/
        }

            .gt-holder {
                position: relative;
                max-width: 780px;
                margin: 0 auto;
            }


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

                .gt-head .global-title span {
                    color: #fff;
                    line-height: 1.2;
                    margin-top: 9px;
                }

                .gt-head .global-title {
                    color: #d9d9d9;
                }

                    .gt-fields input, 
                    .gt-fields textarea {
                        font-size: 14px;
                        width: 100%;
                        font-weight: 500;
                        font-family: var(--font-family-default);
                        letter-spacing: 1.5px;
                        background: transparent;
                        height: 110px;
                        color: #fff;
                        padding: 0;
                        border-radius: 0;
                        resize: none;
                        border: none;
                        border-bottom: solid 1px #fff;
                        -webkit-appearance: none;
                        -moz-appearance: none;
                    }

                        .gt-form textarea {
                            padding-top: 27px;
                            height: 132px;
                        }

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

                                .gt-fields {
                                    position: relative;
                                    width: calc(100% / 3);
                                    padding: 0 11px;
                                    display: inline-block;
                                    vertical-align: top;
                                    margin-bottom: 10px;
                                }

                                    .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 form {
                                                        position: relative;
                                                        margin: 0 -11px;
                                                        font-size: 0;
                                                    }

                                                        .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 {
                                                            width: 100%;
                                                            max-width: 167px;
                                                            padding: 0;
                                                            display: block;
                                                            margin: 39px auto 0;
                                                        }

                                                    .gt-fields input.wpcf7-form-control.wpcf7-submit {
                                                        font-size: 13px;
                                                        font-weight: 500;
                                                        font-family: var(--font-family-default);
                                                        text-transform: uppercase;
                                                        color: #fff;
                                                        letter-spacing: 2.1px;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: center;
                                                        width: 100%;
                                                        height: 36px;
                                                        border: 1px solid rgb(255 255 255 / 75%);
                                                        position: relative;
                                                        z-index: 5;
                                                        background: transparent;
                                                        -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 input.wpcf7-form-control.wpcf7-submit:hover {
                                                    background: #000;
                                                    border: 1px solid #000;
                                                }
                                                            
                                            .gt-form .wpcf7-spinner {
                                                position: absolute;
                                                bottom: 0;
                                                left: 0;
                                                right: 0;
                                                margin: auto;
                                                z-index: 5;
                                            }

/*main footer section*/
footer.main-footer {
    position: relative;
    padding: 87px 0 47px;
    background: #121212;
    color: #fff;
}

    footer.main-footer .container {
        position: relative;
        z-index: 5;
    }

        footer.main-footer::after {
/*
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/ftr-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            opacity: .05;
            pointer-events: none;
*/
        }

            footer.main-footer::before {
/*
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                width: 100%;
                max-width: 480px;
                min-height: 462px;
                background: url(images/ftr-logo-bg.png) no-repeat;
                background-size: contain;
                background-position: center;
                pointer-events: none;
                opacity: .02;
                z-index: 1;
*/
            }

                .ftr-logo-holder {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 0 51px -77px;
                }

                    .ftr-logo1 a {
                        position: relative;
                        display: block;
                        max-width: 302px;
                        margin: 0 auto;
                    }

                        .ftr-logo2 em {
                            font-size: 75px;
                        }

                            .ftr-logo-holder > div {
                                padding: 0 43px;
                            }

                            .ftr-logo2 {
                                margin-top: 17px;
                            }

                                .ftr-logo1 {
                                    position: relative;
                                }

                                    .ftr-logo1::after {
                                        content: '';
                                        position: absolute;
                                        top: 17px;
                                        bottom: 0;
                                        right: 0;
                                        margin: auto;
                                        width: 1px;
                                        height: 94px;
                                        background: #fff;
                                        opacity: .15;
                                    }

                                        .ftr-contact span {
                                            display: inline-block;
                                            padding: 0 31px;
                                        }

                                            .ftr-contact a, 
                                            .ftr-contact span {
                                                font-size: 15px;
                                                font-weight: 400;
                                                font-family: var(--font-family-default);
                                                color: #fff;
                                                letter-spacing: 1.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;
                                            }

                                                .ftr-contact em {
                                                    color: #b28e3b;
                                                    font-size: 15px;
                                                    margin-right: 12px;
                                                }

                                                    .ftr-contact em.ai-font-business-card,
                                                    .ftr-contact em.ai-font-location-c {
                                                        font-size: 18px;
                                                    }

                                                        .ftr-contact em.ai-font-envelope-f {
                                                            font-size: 13px;
                                                        }

                                                            span.ftr-loc a {
                                                                display: flex;
                                                                max-width: 300px;
                                                                line-height: 1.5;
                                                            }

                                                                .ftr-contact span:first-child {
                                                                    padding-left: 0;
                                                                }

                                                                    .ftr-contact span:last-child {
                                                                        padding-right: 0;
                                                                    }

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

                                                            .ftr-disclaimer p {
                                                                font-size: 12px;
                                                                font-weight: 400;
                                                                font-family: var(--font-family-default);
                                                                color: #a6a6a6;
                                                                text-align: center;
                                                                line-height: 2;
                                                            }

                                                        .ftr-disclaimer {
                                                            border-top: 1px solid rgb(255 255 255 / 15%);
                                                            padding: 38px 0 0;
                                                        }

                                                    .ftr-contact-holder {
                                                        margin-bottom: 38px;
                                                    }
     
/*mls*//*copyright*/
.footer-copyright-holder {
    padding: 21px 0 0;
}

.footer-copyright, .footer-copyright a {
    font-size: 12px;
    color: #a6a6a6;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--font-family-default);
    -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: 25px;
                    color: #b28e3b;
                    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: 50px;
    font-weight: 300;
    font-family: var(--font-family-title);
    color: #000;
    letter-spacing: 2.2px;
    line-height: 1;
}

/* 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;
}

/*scroll down*/
div#scroll-down ul.aios-section-nav {
    display: none;
}

    .nav-active-section-content-properties .fixed-smi a,
    .nav-active-section-content-properties .fixed-smi p,
    .nav-active-section-content-qs .fixed-smi a,
    .nav-active-section-content-qs .fixed-smi p,
    .nav-active-section-content-welcome .fixed-smi a,
    .nav-active-section-content-welcome .fixed-smi p,
    .nav-active-section-content-testimonials .fixed-smi a,
    .nav-active-section-content-testimonials .fixed-smi p,
    .nav-active-section-content-socmed .fixed-smi a,
    .nav-active-section-content-socmed .fixed-smi p {
        color: #737373;
        font-weight: 500;
    }

        .nav-active-section-content-properties span.fixed-smi-div,
        .nav-active-section-content-qs span.fixed-smi-div,
        .nav-active-section-content-welcome span.fixed-smi-div,
        .nav-active-section-content-testimonials span.fixed-smi-div,
        .nav-active-section-content-socmed span.fixed-smi-div {
            background: #737373;
        }

            .nav-active-section-content-properties .fixed-smi a:hover,
            .nav-active-section-content-qs .fixed-smi a:hover,
            .nav-active-section-content-welcome .fixed-smi a:hover,
            .nav-active-section-content-testimonials .fixed-smi a:hover,
            .nav-active-section-content-socmed .fixed-smi a:hover {
                color: #fff;
            }

.page-id-19 .aios-about-wrap .aios-about-title,
.page-id-90.post-page-contact .hentry h1.entry-title {
  display: block;
}
            
.page-id-19 #content .entry-title { 
    display: none;
}

/*contact page custom*/
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form {
    margin-top: 0;
    padding: 0 33px;
    border: none;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form h2 {
    margin-top: 0 !important;
    text-align: left;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields {
    width: 100%;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields.cu-submit input {
    max-width: 150px;
    width: 100%;
    height: 50px;
    margin: 0;
    border: 2px solid #000;
    font-weight: 600;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields.cu-submit input:hover {
    background: #000;
    color: #fff;
}

.post-page-contact .cu-fields.cu-textarea p {
    font-size: 15px;
    font-weight: 300;
    margin: 0 !important;
    display: block;
    padding: 13px 0 23px;
    letter-spacing: .5px;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields.cu-textarea textarea {
    height: 105px;
    border: 1px solid #a5a5a5;
    padding: 0;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields.cu-textarea {
    height: 100% !important;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form div.wpcf7-response-output {
    bottom: -10px !important;
    left: 0 !important;
    right: 0!important ;
    margin: auto !important;
    font-size: 12px !important;
    transform: none!important;
    width: calc(100% - 10px) !important;
}

.post-page-contact .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 20% !important;
    width: auto !important;
}

.post-page-contact .ip-contact-name {
    font-size: 25px;
    margin-bottom: 15px;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span i {
    display: block;
    margin-left: 42px;
    font-style: normal !important;
}

.post-page-contact .aios-cu-contact a {
    display: inline-block;
}

.post-page-contact .aios-cu-contact a:hover {
    opacity: .7;
}

.post-page-contact .aios-cu-contact em {
    font-size: 25px !important;
    position: relative;
    top: 13px;
}

.post-page-contact .aios-cu-contact em.ai-font-envelope-f {
    font-size: 20px !important;
    top: 10px;
}

.post-page-contact .aios-cu-contact em.ai-font-location-c {
    font-size: 30px !important;
    top: 17px !important;
    margin-right: 9px !important;
}

.post-page-contact .aios-cu-contact em.ai-font-phone-alt {
    margin-right: 12px !important;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form h2 {
    font-size: 35px !important;
}

.post-page-contact .aios-cu-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 1px;
    min-height: 550px;
    background: #000;
}

.post-page-contact .aios-cu-right .aios-cu-left::after {
    display: none;
}

.post-page-contact .aios-cu-left, .aios-cu-right {
    padding: 25px 0 0;
}

.post-page-contact .aios-cu-right .aios-cu-left {
    padding: 0;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-smi a {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
}

.post-page-contact section.get-in-touch-area {
    display: none;
}

.post-page-about .global-title.aios-about-title span {
    font-size: 50px;
}

.post-page-contact #inner-page-wrapper h1 {
    display: none;
}

.post-page-contact .aios-cu-title strong,
.post-page-contact .aios-cu-form h2 {
    font-family: var(--font-family-title);
    font-weight: 400 !important;
}
button.btn.dropdown-toggle.btn-default {
    border-radius: 0;
    color: #000;
    font-size: 11px;
    font-weight: 400;
    font-family: var(--font-family-default);
    letter-spacing: .2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 56px;
    text-align: left;
    text-transform: uppercase;
    resize: none;
    border: 1px solid #bbbbbb;
    padding: 0 25px;
    background: url(images/qs-arrow.png) no-repeat scroll right 15px center;
    border-right: none;
    border-left: none;
}
                
#content-qs select[id="max-price"] {
  border-right: 1px solid #bbbbbb;
}

.category-in-the-press .row.archive-list{
    display: flex;
    flex-wrap: wrap;
}

.ftr-disclaimer a {
    color: inherit;
    -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;
}

.ip-container .fixed-smi a {
    text-shadow: 1px 2px 2px #000;
}

.ip-container span.fixed-smi-div {
    box-shadow: 1px 2px 2px #000;
}

.ip-container .fixed-smi p {
    font-weight: 600;
    text-shadow: 1px 2px 2px #000;
}
.grecaptcha-badge {
    z-index: 999 !important;
}

.quick-search-area button.btn.dropdown-toggle.btn-default:hover {
    color: inherit !important;
    background: url(images/qs-arrow.png) no-repeat scroll right 15px center !important;
}

.quick-search-area ul.dropdown-menu.inner {
    max-height: 250px !important;
}

.quick-search-area .qs-field .bootstrap-select.btn-group .dropdown-menu {
    width: 100% !important;
    min-width: 100%;
}

.quick-search-area .qs-form ul li span.text {
    width: 100%;
    display: block;
    overflow: hidden;
    max-width: 60px;
    text-overflow: ellipsis !important;
}

.quick-search-area .qs-form ul li span small.text-muted {
    position: absolute;
    right: 20px;   
}
.quick-search-area .qs-form ul li.selected span small.text-muted {
    right: 32px;   
}
.quick-search-area .bootstrap-select.btn-group .dropdown-menu li a.opt {
    padding-left: 15px !important;
}

#nav .sub-menu.show-menu {
    display: block;
    opacity: 1;
}   

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

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100% !important;
    padding: 0 !important;
    margin-left: -5px !important;
}

.ihf-details-template #listings-details .listings-slideshow-text span {
    text-shadow: 1px 2px 2px #000 !important;
}

.ihf-details-template #listings-details .listings-form textarea {
    padding-right: 30px !important;
}

.error404 .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: center;
}

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    top: 2px;
}

.ihf-details-template #listings-details .listings-smi ul > li {
    padding: 10px 5px;
}

/*optimization*/
.hp-fp-bg {
    width: 100%;
    height: calc(100% - 175px);
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    font-size: 0;
}
.hp-fp-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 888px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.hp-fp-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    pointer-events: none;
    opacity: .25;
}

.hp-qs-left-bg {
    width: 100%;
    max-width: 898px;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}
.hp-qs-left-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    pointer-events: none;
    opacity: .95;
}
.hp-qs-left-bg::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 27%, rgba(255,255,255,0.7) 62%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}
.hp-qs-right-bg {
    width: calc(100% - 70px);
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    font-size: 0;
}
.hp-qs-right-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    opacity: .25;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}
.qs-right-gradient {
    z-index: 1;
}
section.quick-search-area::after{
    z-index: 1;
}


.hp-wc-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 604px;
    background: #000;
    pointer-events: none;
    font-size: 0;
}
.hp-wc-bg canvas {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: .05;
    filter: grayscale(1);
    bottom: 0;
    position: absolute;
}
.hp-wc-details-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 1069px;
    min-height: 886px;
    background: #fff;
    pointer-events: none;
}
.hp-wc-details-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}
.hp-wc-details-bg canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
    opacity: .15;
}


.hp-ps-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    pointer-events: none;
    font-size: 0;
}
.hp-ps-bg canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: .33;
}


.hp-testi-logo-bg {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 100%;
    max-width: 508px;
    min-height: 489px;
    z-index: 3;
}
.hp-testi-logo-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-position: center;
    background-size: cover;
    opacity: .2;
    pointer-events: none;
    background-repeat: no-repeat;
}

.hp-testi-details-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    font-size: 0;
}
.hp-testi-details-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: .25;
    background-repeat: no-repeat;
}


.hp-social-media-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* max-width: 1428px; */
    min-height: 384px;
}
.hp-social-media-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    opacity: .25;
    pointer-events: none;
    background-repeat: no-repeat;
}

.hp-git-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}
.hp-git-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: .3;
    pointer-events: none;
    background-repeat: no-repeat;
}



.hp-footer-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 480px;
    min-height: 462px;
    z-index: 1;
}
.hp-footer-logo-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    opacity: .02;
    background-repeat: no-repeat;
}
.hp-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hp-footer-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    opacity: .05;
    pointer-events: none;
    background-repeat: no-repeat;
}
