/*
Theme Name: allurerealtyhomes.com
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
 *
 *******************************************************/

:root {
    /** Font default */
    --font-atkinson: 'Atkinson Hyperlegible', sans-serif;
    --font-ubuntu: 'Ubuntu', sans-serif;
    --font-gotham: 'Gotham', sans-serif;
    --BarlowSemiCondensed: 'Barlow Semi Condensed', sans-serif;
    --Roboto: 'Roboto', sans-serif;
    --SourceSansPro: 'Source Sans Pro', sans-serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;

    /** Use for input, button, and any other element */
    --primary: #000000;
    --secondary: #e43c77;
    --accent: #e43c77;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

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

/* Sub Menu */
.header_nav li {
    position: relative;
}
    .header_nav li a {
        font-size: 14px;
        text-transform: uppercase;
        font-family: var(--font-ubuntu);
        letter-spacing: 0.075em;
        color: #fff;
        display: block;
    }
.header_nav > li {
    display: inline-block;
    position: relative;
}
    .header_nav > li:before {
        content: '';
        position: absolute;
        left: 100%;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 1px;
        height: 12px;
        background: #fff;
        opacity: 0.17;
        margin-top: auto!important;
        margin-bottom: auto!important;
    }
    .header_nav > li:last-child:before {
        display: none;
    }
    .header_nav > li,
    .header_nav > li:before {
        margin: 0 30px;
    }
    .header_nav > li > a {
        letter-spacing: 0.25em;
        padding: 26px 0;
        transition: color .3s ease;
    }
        .header_nav > li:hover > a {
            color: var(--accent);
        }
    .header_nav .sub-menu {
        list-style: none outside none;
        margin: 0;
        background: #000;
        padding: 9px 0;
        position: absolute;
        width:100%;
        min-width:210px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
        transition: all .3s ease;
    }
    .header_nav > li > .sub-menu {
        left: calc(50% - 105px);
    }
        .header_nav .sub-menu a {
            color: #FFFFFF;
            display: block;
            padding: 8.5px 10px;
            position: relative;
            z-index: 1;
            transition: all .3s ease;
        }
            .header_nav .sub-menu a:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: -1;
                background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
                background-position: -363px -111px;
                transition: all .3s ease;
                opacity: 0;
            }
            .header_nav .sub-menu li:hover > a {
                background: var(--secondary);
            }
                .header_nav .sub-menu li:hover > a:before {
                    opacity: 0.39;
                }
            .header_nav .sub-menu .sub-menu {
                margin-left: calc(100% + 1px);
                top: -9px;
            }
            .header_nav li:hover > .sub-menu {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: all;
            }
            .header_nav .sub-menu li {
                position: relative;
            }


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

/* Global */

body{
    font-family: var(--font-atkinson);
    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; */
}

#main-wrapper {
    overflow: hidden;
}

a {
    color: inherit;
}
    a:hover {

    }
    a:hover, a:focus, .slick-slide, .slick-slide a {
        outline: none;
        text-decoration: none;
    }
    input, select, textarea {
        outline: none;
    }

p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.71;
    margin: 24px 0;
}

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

.pseudo-overlay:before,
.pseudo-overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    background-position: center;
    background-size: cover;
}
    .ios-true .section-bg,
    .ipad-true .section-bg,
    .is-mobile .section-bg,
    .name-Safari .section-bg {
        background-attachment: scroll!important;
    }

.section-title {
    font-family: var(--font-ubuntu);
    line-height: 1;
    font-size: 78px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
}
    .section-title span {
        display: inline-block;
        text-align: left;
        position: relative;
        /*padding-left: 7.8%;*/
        padding-left: 46px;
    }
        .section-title span:before {
            content: '';
            position: absolute;
            left: 0;
            top: 3.5%;
            bottom: 7.7%;
            width: 5px;
            background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
            background-position: 25% 4%;
        }
        .section-title small {
            position: absolute;
            top: 0;
            right: 100%;
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 0;
            margin-right: 29px;
        }
        .section-title em {
            font-style: normal;
            color: #8a8a8a;
            font-family: var(--font-atkinson);
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 0.6em;
            display: block;
            margin-bottom: 11px;
        }

.section-title.is-white {
    color: #fff;
}

a.btn-a,
.btn-a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 57px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.25em;
    line-height: 1;
    color: #fff;
    position: relative;
    text-transform: uppercase;
}
    .btn-a span {
        color: var(--secondary);
        margin-left: 8px;
        transition: color .3s ease;
        letter-spacing: 0;
    }
    .btn-a:before,
    .btn-a:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        z-index: -1;
    }
    .btn-a:before {
        border: 1px solid #8f8f8f;
    }
    .btn-a:after {
        background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
        background-position: -93px 96%;
        transition: all .3s ease;
        opacity: 0;
    }
    .btn-a:hover:after {
        opacity: 1;
    }
        .btn-a:hover span {
            color: #fff;
        }

/*popup*/

#popup-jon {
    width: 1278px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 0;
    position: relative;
}
    #popup-jon .aiosp-close {
        font-size: 0;
        width: 60px;
        height: 60px;
        background: transparent;
        outline: none;
        border: none;
        color: #fff;
        padding: 0;
        opacity: 1;
        line-height: 1;
        top: -33px;
        font-family: var(--font-atkinson);
    }
        #popup-jon .aiosp-close:before {
            content: "\b0241";
            display: block;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 12px;
            font-family: agentimage!important;
            speak: none;
            font-style: normal;
            font-weight: 400;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        #popup-jon .aiosp-close:after {
            content: 'Close';
            display: block;
            font-size: 12px;
            letter-spacing: 0.2em;
            line-height: 1;
            text-transform: uppercase;
        }
    .popup-jon-img {
        width: 615px;
        display: inline-block;
        vertical-align: top;
        width: 48.123%;
    }
        .popup-jon-img img {
            display: block;
            width: 100%;
        }
    .popup-jon-form {
        width: 51.877%;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        margin-top: 50px;
        padding: 59px 5% 56px 34px;
        position: relative;
    }
        .popup-jon-form:before {
            content: '';
            position: absolute;
            width: 75%;
            height: 100%;
            top: 0;
            right: 100%;
            background: #fff;
            z-index: -1;
        }
        .popup-jon-form .section-title {

        }
            .popup-jon-form .section-title em {
                color: #000;
            }
        .popup-jon-form > p {
            text-align: center;
            margin: 10px 0 25px;
            font-size: 18px;
            letter-spacing: 0.075em;
            color: #000;
        }
    .popup-jon-form form {
        position: relative;
        max-width: 548px;
    }
        .popup-jon-form form p {
            margin: 0;
        }
        .popup-jon-form label {
            display: block;
            position: relative;
        }
            .popup-jon-form label input {
                width: 100%;
                height: 62px;
                border: 1px solid #010101;
                font-size: 14px;
                font-style: italic;
                font-family: var(--font-ubuntu);
                letter-spacing: 0.25em;
                color: #000;
                padding-left: 24px;
                padding-right: 207px;
                background: transparent;
            }

        .popup-jon-form .btn-a {
            position: absolute;
            top: 2px;
            right: 2px;
            z-index: 1;
            height: 58px;
            transition: opacity .3s ease;
            background: var(--accent);
        }
            .popup-jon-form .btn-a span {
                color: #fff;
            }
            .popup-jon-form .btn-a input.wpcf7-submit {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                font-size: 0;
            }
            .popup-jon-form .btn-a span.ajax-loader {
                position: absolute;
                bottom: -30px;
                right: 0;
                margin: 0;
            }
            .popup-jon-form .btn-a:after {
                background-position: -9px -121px;
                background-size: 454px 296px;
                opacity: 0.53;
            }
            .popup-jon-form .btn-a:hover {
                opacity: 0.8;
            }

/*aiospopup overwrite*/
.aiosp-bg {
    background: #000;
}
/* overlay at start */
.aiosp-fade.aiosp-bg {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* overlay animate in */
.aiosp-fade.aiosp-bg.aiosp-ready {
    opacity: 0.8;
}
/* overlay animate out */
.aiosp-fade.aiosp-bg.aiosp-removing {
    opacity: 0;
}

/* content at start */
.aiosp-fade.aiosp-wrap .aiosp-content {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* content animate it */
.aiosp-fade.aiosp-wrap.aiosp-ready .aiosp-content {
    opacity: 1;
}
/* content animate out */
.aiosp-fade.aiosp-wrap.aiosp-removing .aiosp-content {
    opacity: 0;
}

/*slide menu*/
.slide-menu.is-active {
    transform: translateX(0);
}
.slide-menu-bg.is-active {
    pointer-events: all;
    visibility: visible;
}
.slide-menu-bg {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
    z-index: 1012;
}
.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 1045px;
    max-width: 90%;
    background: #000 url(images/bg-menu.jpg) center/cover no-repeat;
    z-index: 1012;
    padding: 4.55% 4.9%;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .6s ease;
}
    .slide-menu-btn {
        position: absolute;
        top: 2.6%;
        right: 3.3%;
        width: 60px;
        height: 60px;
        background: transparent;
        outline: none;
        border: none;
        color: #fff;
        padding: 0;
    }
        .slide-menu-btn em {
            display: block;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .slide-menu-btn span {
            display: block;
            font-size: 12px;
            letter-spacing: 0.2em;
            line-height: 1;
            text-transform: uppercase;
        }
    .slide-menu:before {
        content: '';
        position: absolute;
        bottom: 14.7%;
        right: 0;
        width: 516px;
        height: 304px;
        background: url(images/accent-logo.png) center/contain no-repeat;
        opacity: 0.06;
        z-index: -1;
    }
    .slide-menu-logo {
        font-size: 0;
        margin-bottom: 83px;
    }
        .slide-menu-logo a {
            display: inline-block;
        }
            .slide-menu-logo a img {
                display: block;
                width: 100%;
                max-width: 416px;
                height: auto;
            }

    #slide_nav {
        width: 660px;
        display: flex;
        flex-flow: column wrap;
        height: 140px;
        max-width: 100%;
    }
        #slide_nav > li {
            width: 27%;
            margin-bottom: 15px;
        }
            #slide_nav > li > a {
                font-size: 18px;
                letter-spacing: 0.025em;
                line-height: 1.2;
                color: #fff;
                text-transform: uppercase;
            }
            #slide_nav ul li a {
                font-size: 12px;
                letter-spacing: 0.005em;
                line-height: 1.2;
                color: #909090;
                text-transform: uppercase;
            }
        #slide_nav ul {
            margin: 9px 0 0;
        }
            #slide_nav ul li {
                padding: 5px 0;
            }
            #slide_nav li a {
                transition: color .3s ease;
            }
                #slide_nav li a:hover {
                    color: var(--accent);
                }

        #slide_nav ul ul {
            margin: 5px 0 -5px 15px;
        }

    .slide-menu-contact-info {
        display: flex;
        flex-flow: row wrap;
        margin: 120px 0 0;
    }
        .slide-menu-contact-info ul, .slide-menu-contact-info .contact-smi {
            width: 33.33%;
        }
        .slide-menu-contact-info ul li {
            font-size: 15px;
            letter-spacing: 0.1em;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 18px;
        }
            .slide-menu-contact-info ul li a {
                transition: color .3s ease;
            }
        .slide-menu-contact-info ul li:last-child {
            margin-bottom: 0;
        }
        .slide-menu-contact-info .contact-smi {
            align-self: self-end;
            padding: 0 0 32px 5%;
        }
            .slide-menu-contact-info .contact-smi a {
                font-size: 23px;
                color: #fff;
                transition: color .3s ease;
                margin-right: 23px;
            }
                .slide-menu-contact-info .contact-smi a:last-child {
                    margin-right: 0;
                }
                .slide-menu-contact-info .contact-smi a:hover,
                .slide-menu-contact-info ul li a:hover {
                    color: var(--accent);
                }

/*fixed header*/
.fixed-header.is-sticking {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 1011;
    /*padding: 0 34px 0 41px;*/
    padding: 0 2.2% 0 2.54%;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
    .fh-logo {
        /*width: 286px;*/
        width: 18.755%;
        font-size: 0;
    }
        .fh-logo a {
            display: inline-block;
        }
            .fh-logo a img {
                display: block;
                width: 100%;
                max-width: 283px;
                height: auto;
            }
    #fixed_nav {
        width: 81.245%;
        text-align: center;
        padding-right: 1%;
    }
        #fixed_nav > li:first-child {
            margin-left: 0;
        }
        #fixed_nav > li:last-child {
            margin-right: 0;
        }
        #fixed_nav > li,
        #fixed_nav > li:before {
            /*margin: 0 52px;*/
            margin: 0 1.250vw;
        }
            .header_nav#fixed_nav > li > a {
                padding: 24px 0 23px;
            }

/*header*/
header.header {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 101;
    text-align: center;
}
    .header-navigation {
        padding: 0 15px;
    }
        .header_nav {
            font-size: 0
        }

    .header-menu-btn {
        position: absolute;
        background: transparent;
        border: none;
        width: 30px;
        height: 30px;
        outline: none;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 2.1%;
    }
        .header-menu-btn span {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            width: 1px;
            height: 20px;
            background: #fff;
        }
        .header-menu-btn span:first-child {
            left: 10px;
        }
        .header-menu-btn span:last-child {
            right: 10px;
        }


/*floating smi*/
.floating-smi {
    position: fixed;
    right: 2.3%;
    top: 20%;
    /*top: 176px;*/
    width: 30px;
    text-align: center;
    z-index: 10;
    color: #fff;
}
    .floating-smi-list {

    }
        .floating-smi-list a {
            display: block;
            color: inherit;
            font-size: 18px;
            margin: 26px 0;
            transition: color .3s ease;
        }
            .floating-smi-list a:hover {
                color: var(--accent);
            }

    .scroll-down-text {
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        font-size: 10px;
        letter-spacing: 0.5em;
        line-height: 1;
        text-transform: uppercase;
        transition: color .3s ease;
        width: 10px;
        height: 100px;
        margin: auto;
        position: relative;
    }
        .scroll-down-text em {
            font-style: normal;
                transform: rotate(-90deg);
        }

        .scroll-down-text:before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin: 34px auto 0;
            background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
            background-position: -93px 96%;
            width: 1px;
            height: 120px;
        }

.nav-active-section-hp-section-3,
.nav-active-section-hp-section-4,
.nav-active-section-hp-section-6,
.nav-active-section-footer-section {
    color: #000;
}

/*section 1*/
section.section-1 {
    position: relative;
    z-index: 1;
}
    #hp-hero {
        position: relative;
        width: 100%;
    }
        #hp-hero:before  {
            height: 45.067%;
            bottom: initial;
            background: rgb(0,0,0);
            background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
            opacity: 0.35;
            z-index: 2;
        }
        #hp-hero:after {
            top: initial;
            height: 42.134%;
            background: rgb(0,0,0);
            background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
            background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
            background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
            z-index: 2;
        }
        #hp-hero .cycloneslider:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            z-index: 2;
        }
        #hp-hero .cycloneslider .cycloneslider-slides {
            z-index: 1;
        }

    .hp-slide-logo {
        position: absolute;
        left: 0;
        right: 0;
        z-index: 3;
        text-align: center;
        font-size: 0;
    }
        .hp-slide-logo a {
            display: inline-block;
            max-width: 100%;
        }
            .hp-slide-logo a img {
                display: block;
                width: 100%;
                max-width: 100%;
                height: auto;
            }
        .hp-slide-logo a.hp-slide-logo-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 14px;
            letter-spacing: 0.25em;
            line-height: 1;
            color: #fff;
            text-transform: uppercase;
            width: 204px;
            height: 57px;
            position: relative;
            z-index: 1;
            margin: 98px auto 0;
        }
            .hp-slide-logo a.hp-slide-logo-btn span {
                color: var(--secondary);
                margin-left: 8px;
                transition: color .3s ease;
                letter-spacing: 0;
            }
            .hp-slide-logo a.hp-slide-logo-btn:before {
                z-index: -1;
                background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
                background-position: -93px 96%;
                transition: all .3s ease;
                opacity: 0;
            }
            .hp-slide-logo a.hp-slide-logo-btn:hover span {
                color: #fff;
            }
            .hp-slide-logo a.hp-slide-logo-btn:hover:before {
                opacity: 1;
            }

/*section 2*/
section.section-2 {
    position: relative;
    z-index: 1;
    background: #000;
}
    .hp-meet-bg {
        top: 41px;
        bottom: 80px;
        /*background-attachment: fixed;*/
    }
    #bg-welcome {
        position: relative;
    }
        .hp-meet-img {
            width: 39.7%;
            margin-top: -87px;
        }
            .hp-meet-img img {
                display: block;
                max-width: 100%;
                width: 388px;
                margin: 0 auto;
                height: auto;
            }

        .hp-meet-text {
            width: 60.3%;
            padding: 35px 0 0 94px;
        }
            .hp-meet-text .section-title {
                margin-bottom: 66px;
            }
            .hp-meet-text p {
                color: #8b8b8b;
            }
            .hp-meet-text a.btn-a {
                margin-top: 73px;
            }


/*section 3*/
section.section-3 {
    position: relative;
    /*padding: 117px 0 0;*/
    padding: 61px 0 0;
    z-index: 1;
}
    section.section-3:before,
    section.section-3:after {
        content: '';
        position: absolute;
        z-index: -1;
        background: #000;
    }
    section.section-3:before {
        top: 0;
        left: 0;
        bottom: 0;
        width: 79px;
        z-index: 1;
    }
    section.section-3:after {
        right: 0;
        left: 0;
        bottom: 0;
        height: 80px;
    }
    .hp-fl-bg {
        background-attachment: fixed;
    }
        .safari-true .hp-fl-bg,
        .mobile .hp-fl-bg {
            background-attachment: scroll;
        }
        .hp-fl-bg::before {
            background: #ffffff;
            opacity: 0.85;
        }
    #hp-fp {
        position: relative;
    }
        .fp-left {
            /*width: 924px;*/
            width: 57.75%;
            padding-top: 56px;
        }
            .fp-left .section-title {
                text-align: center;
                padding-left: 6%;
                margin-bottom: 61px;
            }
                .fp-left .section-title span {
                    padding-left: 4.5%;
                }

            .fp-main-list {
                /*width: 824px;*/
                width: 89.178%;
                position: relative;
                z-index: 1;
                font-size: 0;
                background: #000;
            }
                .fp-main-list:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 100%;
                    bottom: 0;
                    background: url(images/shadow-fp.png) left top/100% 100% no-repeat;
                    pointer-events: none;
                    width: 50px;
                }
                .fp-main-item {
                    position: relative;
                }
                    .fp-main-item a {
                        display: block;
                        position: relative;
                        overflow: hidden;
                    }
                        .fp-img {
                            position: relative;
                        }
                            .fp-img canvas {
                                display: block;
                                width: 100%;
                            }
                            .fp-img img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transition: all .3s ease;
                            }
                            .fp-img:after {
                                z-index: 1;
                                height: 56%;
                                top: initial;
                                background: rgb(0,0,0);
                                background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                                background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                                background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
                                opacity: 0.45;
                            }
                        .fp-details {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            color: #fff;
                            z-index: 2;
                            padding: 0 7.2% 6.4%;
                            display: flex;
                            flex-flow: column wrap;
                            justify-content: flex-end;
                        }
                            .fp-address {
                                font-size: 24px;
                                letter-spacing: 0.05em;
                                line-height: 1;
                                margin-bottom: 25px;
                            }
                                .fp-address span {
                                    display: block;
                                    font-size: 18px;
                                    letter-spacing: 0.05em;
                                    margin-top: 11px;
                                }
                            .fp-price {
                                font-family: var(--font-ubuntu);
                                font-size: 36px;
                                letter-spacing: 0.05em;
                                line-height: 1;
                            }
                            .fp-btn {
                                position: absolute;
                                /*right: 55px;*/
                                right: 6.7%;
                                display: flex;
                                align-items: center;
                                /*width: 344px;*/
                                width: 41.748%;
                                z-index: 1;
                                transition: background .3s ease;
                            }
                                .fp-btn-plus {
                                    width: 84px;
                                    height: 77px;
                                    display: inline-flex;
                                    justify-content: center;
                                    align-items: center;
                                }
                                    .fp-btn-plus:before,
                                    .fp-btn-plus:after {
                                        content: '';
                                        position: absolute;
                                        margin: auto;
                                        background: var(--accent);
                                        background-position: center;
                                        transition: all .3s ease;
                                    }
                                    .fp-btn-plus:before {
                                        width: 28px;
                                        height: 3px;
                                    }
                                    .fp-btn-plus:after {
                                        width: 3px;
                                        height: 28px;
                                    }

                                .fp-btn:before,
                                .fp-btn:after {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    height: 100%;
                                    z-index: -1;
                                    transition: opacity .3s ease;
                                }
                                .fp-btn:before {
                                    width: 84px;
                                    border: 1px solid #8f8f8f;
                                }
                                .fp-btn:after {
                                    width: 100%;
                                    background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
                                    background-position: -93px 96%;
                                    opacity: 0;
                                }

                                .fp-btn span {
                                    font-size: 18px;
                                    letter-spacing: 0.3em;
                                    color: #fff;
                                    line-height: 1;
                                    text-transform: uppercase;
                                    white-space: nowrap;
                                    flex-grow: 1;
                                    text-align: center;
                                    padding-left: 16%;
                                    opacity: 0;
                                    transform: translateX(10px);
                                    transition: opacity .3s ease, transform .3s ease;
                                }

                            .fp-main-item a:hover .fp-img img {
                                -webkit-filter: grayscale(1);
                                filter: grayscale(1);
                            }
                            .fp-main-item a:hover .fp-btn {
                                background: var(--accent);
                            }
                                .fp-main-item a:hover .fp-btn span {
                                    opacity: 1;
                                    transform: translateX(0);
                                }
                                .fp-main-item a:hover .fp-btn:before {
                                    opacity: 0;
                                }
                                .fp-main-item a:hover .fp-btn:after {
                                    opacity: 0.45;
                                }
                                .fp-main-item a:hover .fp-btn-plus:before,
                                .fp-main-item a:hover .fp-btn-plus:after{
                                    background: #fff;
                                }

        .fp-right {
            width: 42.25%;
            padding-right: 8.815%;
        }
            .fp-thumb-list {
                margin: 0 -10px;
                font-size: 0;
            }
                .fp-thumb {
                    width: 50%;
                    padding: 10px;
                    display: inline-block;
                    vertical-align: top;
                }
                    .fp-thumb a {
                        display: block;
                        position: relative;
                    }
                        .fp-thumb-img {
                            position: relative;
                        }
                            .fp-thumb-img canvas {
                                display: block;
                                width: 100%;
                            }
                            .fp-thumb-img img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }

                .fp-thumb-btn {

                }
                    .fp-thumb-btn .fp-thumb-img {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                        .fp-thumb-btn canvas {
                            border: 1px solid #000;
                            transition: all .3s ease;
                        }
                        .fp-thumb-btn .fp-thumb-img:before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: var(--accent) url(images/bg-pattern-new.jpg) no-repeat;
                            background-position: -93px 96%;
                            opacity: 0;
                            transition: opacity .3s ease;
                        }
                        .fp-thumb-btn span {
                            font-size: 14px;
                            letter-spacing: 0.25em;
                            line-height: 1;
                            color: #000;
                            text-transform: uppercase;
                            position: absolute;
                            left: 0;
                            right: 0;
                            text-align: center;
                            padding-bottom: 6%;
                            transition: color .3s ease;
                        }
                            .fp-thumb-btn span i {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 27px;
                                height: 27px;
                                margin: 0 auto 18px;
                                position: relative;
                            }
                                .fp-thumb-btn span i:before,
                                .fp-thumb-btn span i:after {
                                    content: '';
                                    position: absolute;
                                    margin: auto;
                                    background: var(--accent);
                                    background-position: center;
                                    transition: all .3s ease;
                                }
                                .fp-thumb-btn span i:before {
                                    width: 27px;
                                    height: 3px;
                                }
                                .fp-thumb-btn span i:after {
                                    width: 3px;
                                    height: 27px;
                                }

                        .fp-thumb-btn:hover canvas {
                            border-color: var(--accent);
                            background: var(--accent);
                        }
                        .fp-thumb-btn:hover .fp-thumb-img:before {
                            opacity: 0.45;
                        }
                        .fp-thumb-btn:hover span {
                            color: #fff;
                        }
                            .fp-thumb-btn:hover span i:before,
                            .fp-thumb-btn:hover span i:after {
                                background: #fff;
                            }


/*section 4*/
section.section-4 {
    position: relative;
    z-index: 1;
}
    .hp-team-bg {

    }
        .hp-team-bg:before {
            background: #fff;
            opacity: 0.75;
        }
    #hp-team {
        position: relative;
        /*padding: 105px 0 43px;*/
        background-color: #cdcdcd;
    }
        #hp-team .section-title {
            text-align: center;
            padding-left: 5%;
            margin-bottom: 58px;
            position: absolute;
            top: 8%;
            z-index: 1;
            left: 0;
            right: 0;
        }
        .team-map-wrap {
            /*max-width: 1117px;*/
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            pointer-events: none;
        }
            .team-map-wrap canvas {
                display: block;
                width: 100%;
            }
            .team-map {
                position: absolute;
                top: 0;
                left: 0;
                font-size: 0;
            }
                .team-map img.team-photo {
                    /*max-width: 1117px;*/
                    max-width: 1600px;
                    /*-webkit-filter: grayscale(1);
                    filter: grayscale(1);*/
                }
                .team-map img[usemap] {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    z-index: 2;
                }

            .team-hovers {
                position: absolute;
                top: 0;
                left: 0;
            }
                .team-hover {
                    position: absolute;
                    top: 0;
                    left: 0;
                    opacity: 0;
                    transition: opacity .3s ease;
                }
                .team-hover-details {
                    position: absolute;
                    top: 0;
                    left: 0;
                    background: url(images/team/bg-agent-details.png) center/100% 100% no-repeat;
                    width: 327px;
                    text-align: center;
                    color: #fff;
                    padding: 59px 15px 46px;
                    z-index: 3;
                    pointer-events: none;
                    transform: translateY(20px);
                    transition: transform .3s ease;
                }
                    .team-hover-name {
                        font-family: var(--font-ubuntu);
                        font-size: 30px;
                        letter-spacing: 0.1em;
                        line-height: 1;
                        margin-bottom: 28px;
                    }
                        .team-hover-name span {
                            display: block;
                            font-family: var(--font-atkinson);
                            font-size: 16px;
                            letter-spacing: 0.6em;
                            text-transform: uppercase;
                            margin-bottom: 7px;
                        }
                    .team-hover-contact {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                        .team-hover-contact i {
                            font-size: 10px;
                            margin-right: 12px;
                        }
                        .team-hover-contact span {
                            font-size: 15px;
                            letter-spacing: 0.05em;
                            line-height: 1;
                        }
                            .team-hover-contact span a {
                                transition: color .3s ease;
                            }
                            .team-hover-contact span a:hover {
                                color:  var(--accent);
                            }
                .team-hover.is-active {
                    opacity: 1;
                }
                    .team-hover.is-active .team-hover-details {
                        transform: translateY(0);
                        pointer-events: all;
                    }
            .team-hover[data-agent="agent-1"] {
                top: 190px;
                left: 155px;
            }
                .team-hover[data-agent="agent-1"] .team-hover-details {
                    top: 300px;
                    left: -40px;
                }

            .team-hover[data-agent="agent-2"] {
                top: 323px;
                left: 371px;
            }
                .team-hover[data-agent="agent-2"] .team-hover-details {
                    top: 200px;
                    left: -90px;
                }

            .team-hover[data-agent="agent-3"] {
                top: 213px;
                left: 528px;
            }
                .team-hover[data-agent="agent-3"] .team-hover-details {
                    top: 200px;
                    left: -80px;
                }
            .team-hover[data-agent="agent-4"] {
                top: 205px;
                left: 675px;
            }
                .team-hover[data-agent="agent-4"] .team-hover-details {
                    top: 230px;
                    left: -20px;
                }
            .team-hover[data-agent="agent-5"] {
                top: 264px;
                left: 956px;
            }
                .team-hover[data-agent="agent-5"] .team-hover-details {
                    top: 200px;
                    left: -90px;
                }

            .team-hover[data-agent="agent-6"] {
                top: 193px;
                left: 1133px;
            }
                .team-hover[data-agent="agent-6"] .team-hover-details {
                    top: 300px;
                    left: -90px;
                }

            .team-hover[data-agent="agent-7"] {
                top: 175px;
                left: 1292px;
            }
                .team-hover[data-agent="agent-7"] .team-hover-details {
                    top: 210px;
                    left: -50px;
                }

            .team-hover[data-agent="agent-8"] {
                top: 436px;
                left: 601px;
            }
                .team-hover[data-agent="agent-8"] .team-hover-details {
                    top: 241px;
                    left: 10px;
                }

/*section 5*/
section.section-5 {
    position: relative;
    z-index: 1;
    padding: 86px 15px 95px;
}
    .hp-media-bg {
        background-attachment: fixed;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }
        .hp-media-bg:before {
            background: #000;
            opacity: 0.7;
        }
    #hp-media {
        max-width: 1320px;
        margin: 0 auto;
        position: relative;
    }
        .hp-media-title {
            /*width: 525px;*/
            width: 39.773%;
            padding-left: 4.3%;
            padding-bottom: 1.5%;
        }
            .hp-media-title .section-title {

            }
                .hp-media-title .section-title span {

                }

        .hp-media-list {
            /*width: 794px;*/
            width: 60.227%;
        }
            .hp-media-item {
                margin-bottom: 25px;
            }
            .hp-media-item:last-child {
                margin-bottom: 0;
            }
                a.hp-media-img {
                    position: relative;
                    display: inline-block;
                    /*width: 300px;*/
                    width: 37.737%;
                }
                    .hp-media-img canvas {
                        display: block;
                        width: 100%;
                        height: 100%;
                    }
                    .hp-media-img img {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .hp-media-details {
                    width: 62.263%;
                    background: rgba(0,0,0,0.65);
                    padding: 2.76% 4.2%;
                    display: flex;
                    flex-flow: row wrap;
                    align-items: center;
                }
                    .hp-media-details-inner {
                        width: 100%;
                    }
                    a.hp-media-blog-title {
                        font-size: 22px;
                        letter-spacing: 0.05em;
                        line-height: 1.1;
                        transition: color .3s ease;
                        color: #fff;
                    }
                    .hp-media-text {
                        font-size: 14px;
                        letter-spacing: 0.05em;
                        line-height: 1.7;
                        color: #8b8b8b;
                        margin: 4px 0 16px;
                    }
                    .hp-media-details-inner a.btn-a {
                        z-index: 1;
                    }
                    a.hp-media-link {
                        font-size: 14px;
                        letter-spacing: 0.25em;
                        line-height: 1;
                        color: #fff;
                        text-transform: uppercase;
                        display: inline-block;
                        transition: color .3s ease;
                    }
                        a.hp-media-link span {
                            letter-spacing: 0;
                            color: var(--accent);
                            text-transform: uppercase;
                        }
                        a.hp-media-blog-title:hover,
                        a.hp-media-link:hover {
                            color: var(--accent);
                        }


/*section 6*/
section.section-6 {
    position: relative;
}
    #hp-featured-in {
        position: relative;
        padding: 81px 0 46px;
    }
        #hp-featured-in .section-title {
            text-align: center;
            padding-left: 82px;
            margin-bottom: 59px;
        }
            #hp-featured-in .section-title span {

            }

        .featured-logo-list {
            width: 95%;
            max-width: 1285px;
            margin: 0 auto 96px;
        }
            .featured-logo-list img {
                max-width: 100%;
                opacity: 0.7;
            }

        .featured-netflix {
            position: relative;
        }
        .featured-netflix-cover-wrap {
            position: relative;
        }
            .featured-netflix-cover {
                position: relative;
            }
                .featured-netflix-cover canvas {
                    display: block;
                    width: 100%;
                }
                .featured-netflix-cover img:not(.featured-netflix-logo) {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                    object-fit: cover;
                }
                .featured-netflix-cover img.featured-netflix-logo {
                    position: absolute;
                    top: 6.9%;
                    right: 2.5%;
                    z-index: 1;
                    max-width: 100%;
                    width: 219px;
                    display: none;
                }
                .featured-netflix-title img {
                    max-width: 100%;
                    padding: 0 15px;
                }
                .featured-netflix-cover:after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    z-index: 1;
                    height: 35.5%;
                    opacity: 0.58;
                    background: rgb(0,0,0);
                    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
                }
            .featured-netflix-title {
                position: absolute;
                left: 0;
                right: 0;
                text-align: center;
                color: #fff;
                z-index: 2;
                text-transform: uppercase;
                line-height: 1;
                /*bottom: 177px;*/
                bottom: 23.3%;
            }
                .featured-netflix-title em {
                    display: inline-block;
                    font-family: var(--font-gotham);
                    font-size: 48px;
                    letter-spacing: 0.05em;
                    font-style: normal;
                    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.75);
                    margin: 0 0 5px;
                    position: relative;
                }
                    .featured-netflix-title em:before,
                    .featured-netflix-title em:after {
                        content: '';
                        position: absolute;
                        width: 100px;
                        height: 5px;
                        top: 0;
                        bottom: 0;
                        background: var(--accent) url(images/accent-netflix.jpg) center/cover no-repeat;
                        margin: auto;
                    }
                    .featured-netflix-title em:before {
                        right: 100%;
                        margin-right: 20px;
                    }
                    .featured-netflix-title em:after {
                        left: 100%;
                        margin-left: 20px;
                    }
                .featured-netflix-title span {
                    display: block;
                    font-family: var(--font-gotham);
                    font-size: 168px;
                    letter-spacing: 0.05em;
                    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.75);
                }

        a.featured-netflix-link {
            position: absolute;
            /*bottom: 43px;
            left: 77px;*/
            left: 4.8%;
            bottom: 5.7%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
            a.featured-netflix-link i {
                width: 57px;
                height: 57px;
                border-radius: 50%;
                border: 4px solid #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 20px;
                color: #fff;
                margin-right: 18px;
                padding-left: 6px;
                transition: color .3s ease, border .3s ease;
            }
            a.featured-netflix-link span {
                font-size: 16px;
                /*font-size: 20px;*/
                letter-spacing: 0.25em;
                line-height: 1.2;
                color: #e5e5e5;
                text-transform: uppercase;
                transition: color .3s ease;
            }
            a.featured-netflix-link:hover i {
                border-color: var(--accent);
                color: var(--accent);
            }
            a.featured-netflix-link:hover span {
                color: var(--accent);
            }

    .featured-space {
        height: 80px;
        position: relative;
    }

/*section 7*/
section.section-7 {
    position: relative;
    padding-bottom: 49px;
}
    section.section-7 .textwidget {
        position: relative;
    }
    .hp-work-bg {
        background-attachment: fixed;
    }
        .hp-work-bg:before {
            background: #000;
            opacity: 0.75;
        }
        #hp-work {
            /*min-height: 462px;*/
            padding: 116px 0 101px;
        }
            #hp-work .section-title {
                text-align: center;
                margin-bottom: 62px;
                letter-spacing: 0;
                font-size: 90px;
                font-weight: 600;
                font-family: var(--BarlowSemiCondensed);
                text-transform: uppercase;
                letter-spacing: -2.25px;
            }
                #hp-work .section-title em {
                    font-family: var(--SourceSansPro);
                }
                #hp-work .section-title small {
                    top: 3px;
                }
            .work-stats-list {
                /*padding: 0 6.5%;
                justify-content: space-evenly;*/
                max-width: 1140px;
                margin: 0 auto;
                justify-content: center;
            }
                .work-stat {
                    display: flex;
                    /*flex-flow: row wrap;*/
                    flex-flow: column wrap;
                    align-items: center;
                    -webkit-box-flex: 1;
                    -ms-flex: 1 0 0px;
                    flex: 1 0 0;
                    text-align: center;
                    position: relative;
                    padding: 0 30px;
                }
                    .work-stat:first-child {
                        padding-left: 0;
                    }
                    .work-stat:last-child {
                        padding-right: 0;
                    }
                    .work-stat::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 1px;
                        height: 134px;
                        background: rgba(255, 255, 255, 0.3);
                    }
                        .work-stat:first-child::after {
                            display: none;
                        }
                    .work-stat-number {
                        /*font-weight: 700;
                        font-size: 48px;*/
                        font-size: 62px;
                        font-weight: 600;
                        font-family: var(--SourceSansPro);
                        letter-spacing: 0.05em;
                        color: #fff;
                        text-transform: uppercase;
                        line-height: 1;
                    }
                    .work-stat-label {
                        font-size: 17px;
                        font-family: var(--Roboto);
                        /*letter-spacing: 0.075em;*/
                        letter-spacing: 3px;
                        /*line-height: 1.334;*/
                        line-height: 22px;
                        color: #8a8a8a;
                        /*border-left: 1px solid rgba(255,255,255,0.22);*/
                        text-transform: uppercase;
                        /*padding: 13px 0 9px 17px;*/
                        padding: 13px 0 9px 0;
                        /*margin-left: 21px;*/
                    }

/*section 8*/
section.section-8 {
    position: relative;
    z-index: 1;
}
    .hp-network-bg {
        background-attachment: fixed;
        background-position: top 25px center;
    }
        .hp-network-bg:before {
            background: #000;
            opacity: 0.83;
        }
        .hp-network-bg:after {
            height: 383px;
            top: initial;
            background: rgb(0,0,0);
            background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
            opacity: 0.7;
        }
    #hp-network {
        position: relative;
        /*min-height: 740px;*/
        padding: 117px 0 96px;
    }
        #hp-network .section-title {
            text-align: center;
            padding-left: 6%;
            margin-bottom: 52px;
        }
        .jon-form {
            position: relative;
            max-width: 620px;
            margin: 0 auto;
        }
            .jon-form > p {
                text-align: center;
                color: #b2b2b2;
                text-align: center;
                max-width: 455px;
                margin: 0 auto 25px;
            }

        .jon-form form {
            position: relative;
            font-size: 0;
        }
            label.jon-field {
                display: inline-block;
                vertical-align: top;
                padding: 0 5px;
            }
            label.jon-field.field-half {
                width: 50%;
            }
            label.jon-field.field-full {
                width: 100%;
                margin-top: 9px;
            }
                label.jon-field input,
                label.jon-field textarea {
                    width: 100%;
                    height: 63px;
                    border: none;
                    border-bottom: 1px solid #8a8a8a;
                    background: transparent;
                    font-size: 14px;
                    letter-spacing: 0.05em;
                    line-height: 1.3;
                    color: #fff;
                    text-transform: uppercase;
                    padding: 0;
                }
                label.jon-field textarea {
                    padding-top: 22px;
                    height: 112px;
                    resize: none;
                }

            .jon-form .btn-a {
                margin: 43px auto 0;
            }
                .jon-form .btn-a input {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: transparent;
                    opacity: 0;
                    border: none;
                    font-size: 0;
                    outline: none;
                }
                .jon-form .btn-a span.ajax-loader,
                .jon-form .btn-a span.wpcf7-spinner,
                .ip-ld-contact-form .btn-a span.wpcf7-spinner,
                .btn-a span.wpcf7-spinner {
                    position: absolute;
                    bottom: -30px;
                    left: 0;
                    right: 0;
                    margin: auto;
                }
                    .use-floating-validation-tip .wpcf7-not-valid-tip {
                        position: absolute;
                        width: auto;
                        font-size: 12px;
                        line-height: 1.2;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                    .jon-form .wpcf7 form .wpcf7-response-output {
                        position: absolute;
                        top: 100%;
                        left: 0;
                        right: 0;
                        margin: 16px 5px 0;
                        font-size: 12px;
                        color: #fff!important;
                        text-align: center;
                    }
/*footer*/
footer.footer {
    /*min-height: 758px;*/
    position: relative;
}
    .footer-bg {
        background-attachment: fixed;
        background-position: center 98%;
    }
        .footer-bg:before {
            background: #fff;
            opacity: 0.82;
        }
    .footer-top {
        position: relative;
        padding: 85px 0 0;
    }
        .footer-logo {
            /*width: 543px;*/
            width: 47.632%;
            text-align: center;
            font-size: 0;
            padding: 14px 5% 0;
        }
            .footer-logo a {
                display: inline-block;
            }
                .footer-logo a img {
                    display: block;
                    width: 100%;
                    height: auto;
                    max-width: 363px;
                }
        .footer-contact-info {
            width: 52.368%;
        }
        .footer-contact-row {

        }
            .footer-contact-row ul {
                width: 40%;
            }
            .footer-contact-row ul + ul {
                width: 60%;
            }
                .footer-contact-row ul li {
                    font-size: 15px;
                    letter-spacing: 0.1em;
                    line-height: 1.2;
                    color: #000;
                    margin-bottom: 18px;
                }
                    .footer-contact-row ul li a {
                        transition: color .3s ease;
                    }
            .footer-contact-row p {
                /*margin: 14px 0 36px;*/
                margin: 14px 0 0;
                font-size: 12px;
                line-height: 18px;
                letter-spacing: 0.005em;
                color: #535353;
            }
            .footer-contact-row .contact-smi {
                width: 100%;
                margin-top: 35px;
            }
                .footer-contact-row .contact-smi a {
                    font-size: 23px;
                    color: #000;
                    transition: color .3s ease;
                    margin-right: 23px;
                }
                    .footer-contact-row .contact-smi a:last-child {
                        margin-right: 0;
                    }
                    .footer-contact-row .contact-smi a:hover,
                    .footer-contact-row ul li a:hover {
                        color: var(--accent);
                    }

                    /*translate*/
                    .footer-translate {
                        margin: 20px 0;
                        width: 100px;
                        position: relative;
                    }

                    .footer-translate .ai-translator-dropdown-wrap.notranslate {
                        width: 100%;
                        display: block;
                    }
                    .footer-translate .translator-trigger {
                        border: none;
                        font-size: 13px;
                        font-family: "Roboto", sans-serif;
                        font-weight: 400;
                        letter-spacing: 0.26px;
                        color: #000000;
                        text-transform: uppercase;
                        height: 29px;
                        width: 100%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: end;
                        -webkit-justify-content: flex-end;
                        -ms-flex-pack: end;
                        justify-content: flex-end;
                        max-width: 100%;
                        margin-left: auto;
                        background: transparent;
                        cursor: pointer;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        user-select: none;
                        padding: 5px;
                        position: relative;
                    }
                        .footer-translate .translator-trigger::after {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            bottom: 0;
                            margin: auto;
                            width: 15px;
                            height: 15px;
                            background: url(images/translate-globe-icon.png) no-repeat;
                            background-position: center;
                            background-size: contain;
                        }
                            .footer-translate .translator-trigger::after {
                                content: "\b0079";
                                background: none;
                                font-family: agentimage!important;
                                speak: none;
                                font-style: normal;
                                font-weight: 400;
                                font-variant: normal;
                                text-transform: none;
                                line-height: 1;
                                -webkit-font-smoothing: antialiased;
                                -moz-osx-font-smoothing: grayscale;

                                position: absolute;
                                left: 0;
                                top: 0;
                                font-size: 15px;
                            }

                   /* .footer-translate .ai-translator-dropdown {
                        position: absolute;
                        z-index: 1;
                        top: calc(100% + 5px);
                        left: 0;
                        width: 200px;
                        min-width: 200px;
                        height: auto;
                        max-height: 300px;
                        border: 1px solid #d2d2d2;
                        border-radius: 4px;
                        box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
                        background: #fff;
                        display: block !important;
                    }
                        .footer-translate .ai-translator-dropdown select {
                            font-size: 0;
                            background-color: transparent;
                        }
                        .footer-translate .ai-translator-dropdown select option {
                            display: flex;
                            align-items: center;
                            width: 100%;
                            text-align: left;
                            height: 32px;
                            padding: 0 10px;
                            font-size: 14px;
                            cursor: pointer;
                        }*/

        .footer-affiliate-logos {
            position: relative;
            padding: 35px 3.5%;
            margin: 49px 0 0;
        }
            .footer-affiliate-logos:before,
            .footer-affiliate-logos:after {
                content: '';
                position: absolute;
                display: block;
                left: 0;
                right: 0;
                height: 1px;
                background: #949494 url(images/bg-footer-border.jpg) center/cover no-repeat;
            }
            .footer-affiliate-logos:before {
                top: 0;
            }
            .footer-affiliate-logos:after {
                bottom: 0;
            }
            .footer-affiliate-logos img:last-child {
                opacity: .5;
            }
        .footer-bottom {
            padding: 40px 0 54px;
        }
            .footernav {
                width: 53.3%;
                padding: 5px 6% 0 0;
                display: flex;
                flex-flow: column wrap;
                height: 230px;
            }
                .footernav > li {
                    width: 33.33%;
                    margin-bottom: 15px;
                }
                    .footernav > li > a {
                        font-size: 18px;
                        letter-spacing: 0.025em;
                        line-height: 1.2;
                        color: #000;
                        text-transform: uppercase;
                    }
                    .footernav ul li a {
                        font-size: 12px;
                        letter-spacing: 0.005em;
                        line-height: 1.2;
                        color: #58585c;
                        text-transform: uppercase;
                    }
                .footernav ul {
                    margin: 9px 0 0;
                }
                    .footernav ul li {
                        padding: 5px 0;
                    }
                    .footernav li a,
                    .footer-copyright p a {
                        transition: color .3s ease;
                    }
                        .footernav li a:hover,
                        .footer-copyright p a:hover {
                            color: var(--accent);
                        }
            .footer-copyright {
                width: 46.7%;
            }
                .footer-copyright p {
                    margin: 0;
                    font-size: 12px;
                    letter-spacing: 0.005em;
                    line-height: 18px;
                    color: #535353;
                }

                .footer-copyright-logo {
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    margin: 30px 0 0;
                }
                    .footer-copyright-logo svg {
                        /*width: 329px;*/
                        width: 40%;
                        margin-left: auto;
                        margin-right: 20px;
                    }
                    .footer-copyright-logo img {
                        /*width: 160px;*/
                        width: 30.056%;
                    }


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
 .ip-banner-wrapper {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.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,.4);*/
        height: 80.465%;
        opacity: 0.05;
        background: rgb(0,0,0);
        background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        opacity: 0;
    }
    .ip-banner:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgb(0,0,0);
        background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 100%);
        background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 100%);
        background: linear-gradient(0deg, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        height: 80.465%;
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 389px;
        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;
            }

    .ip-banner-wrapper .hp-slide-logo a {
        width: 258px;
    }

    .ip-breadcrumbs {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        font-family: var(--font-ubuntu);
        font-size: 12px;
        letter-spacing: 0.2em;
        line-height: 1.2;
        color: var(--secondary);
        text-transform: uppercase;
        z-index: 2;
        padding: 11px 4.938%;
    }
        .ip-breadcrumbs span.breadcrumb_last {
            color: #fff;
        }
        .ip-breadcrumbs a {
            transition: color .3s ease;
        }
            .ip-breadcrumbs a:hover {
                color: #fff;
            }

/* 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-family: var(--font-ubuntu);
    line-height: 1;
    font-size: 50px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
}

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

}


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

.aios-contact-wrap .aios-contact-main>div>span {
    margin-top: 0!important;
}

#content > p#breadcrumbs {
    display: none;
}

.agent-details-link{
    color: #8b8b8b !important;
    line-height: 1.75 !important;
    font-size: 0.875vw !important;
}

.grecaptcha-badge {
    z-index: 9999;
    display: none; /* REQUESTED BY PM */
}

.ip-team-agent-img:after,
.ip-listing-search-form-wrap::before,
.ip-fp-btn:after,
.ip-ld-share-buttons-title::before,
.ip-ld-share-buttons-title::after,
.ip-customer-service,
.ip-team-broker-agent-details:before {
    background-image: url(images/bg-pattern-new.jpg)!important;
}
.ip-listing-search-form-wrap::before {
    background-size: 100%!important;
    background-position: top!important;
}

ul#ihf-search-location-tabs, ul.chosen-results, ul#ihf-detail-extrainfotabs {
    margin-left: 0px !important;
}
ul.chosen-results {
    padding-left: 0 !important;
}
ul.chosen-results {
    margin: 0 !important;
}
.ip-search-field-wrap ul.dropdown-menu.inner {
    max-height: 200px !important;
}

.page-id-26 #inner-page-wrapper p#breadcrumbs {
    display: none;
}

#ihf-valuation-request-form .radio-inline {
    line-height: 1;
}

body.page-template-listings.page-id-86 .ip-listing-title-wrap {
    margin-bottom: 50px;
}

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

.ip-container .scroll-down-text em,
.ip-container .floating-smi-list a {
    text-shadow: 0 1px 3px rgb(0 0 0 / 90%);
}

.ip-container .floating-smi-list a:hover {
    text-shadow: none;
}

.ip-container .nav-active-section-footer-section .scroll-down-text em,
.ip-container .nav-active-section-footer-section .floating-smi-list a {
    text-shadow: none;
}

body .ai-translator-dropdown {
    max-height: 230px!important;
    position: absolute;
    z-index: 1;
}

ul.sitemap-list li.page_item.page-item-86.page_item_has_children {
    display: none;
}

.ip-listing-top-wrap {
    font-size: 0;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */