:root {
    /** Font default */
    --font-family-default: "Outfit", sans-serif;
    --font-family-title: 'Noto Serif', serif;
    --font-family-rock-salt: "Rock Salt", cursive;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;

    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

/* Sub Menu */
.header-nav li{
    position:relative;
    display: inline-block;
}
 
.header-nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    padding: 0 0 0;
    position: absolute;
    width: 100%;
    min-width: calc(100% + 70px);
    left: -35px;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header-nav .sub-menu a{
    color: #fff;
    display: block;
    padding: 10px;
    background: #cf9d3c;
}

.header-nav .sub-menu a:hover{
    background: #000;
    color: #fff;
    text-decoration: none;
}

.header-nav .sub-menu .sub-menu{
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}

.header-nav li:hover > .sub-menu{
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.header-nav .sub-menu li{
    position: relative;
    display: block;
}

/* 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;
}

div#main-wrapper{
    overflow: hidden;
    position: relative;
}

body.body-overflow {
    overflow: hidden;
}

.global-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.global-canvas-bg canvas{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.attachment-fixed canvas {
    background-attachment: fixed!important;
}

/* Global */

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    background: transparent;
    padding: 50px 15px;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .header-inner {
        max-width: 1480px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 5;
    } 

/*fixed*/
header.main-header.show-fixed {
    padding: 18px 15px;
    background-color: #050937;
}

    header.main-header.show-fixed .header-logo a{
        max-width: 154px;
    }

        header.main-header.show-fixed .header-broker-logo {
            max-width: 126px;
        }

        header.main-header.show-fixed .header-burger-menu:hover{
            background-color: #fff !important;
            color: #050937;
        }
  

/*logo*/
.header-logo a {
    display: block;
    position: relative;
    max-width: 257px;
    transition: all 0.3s ease-in-out;
}

    .header-broker-logo {
        max-width: 160px;
        transition: all 0.3s ease-in-out;
        margin-right: 50px;
    }

/*nav*/
nav.header-nav {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: 58px;
}

    nav.header-nav ul.header-nav{
        font-size: 0;
        position: relative;
        z-index: 5;
    }

        nav.header-nav ul.header-nav > li{
            margin: 0 20px;
            position: relative;
            display: inline-block;
            vertical-align: middle;
        }

            nav.header-nav ul.header-nav > li > a{
                font-size: 14px;
                text-align: center;
                color: #fff;
                font-weight: 300;
                font-family: var(--font-family-default);
                text-transform: uppercase;
                letter-spacing: 1.6px;
                padding: 5px;
                display: block;
                position: relative;
                z-index: 5;
                transition: all 0.3s ease-in-out;
            }

                nav.header-nav ul.header-nav > li > a::after {
                    content: '';
                    position: absolute;
                    top: -14px;
                    left: -35px;
                    right: 0;
                    width: calc(100% + 70px);
                    height: calc(100% + 14px);
                    background: #7e7242;
                    opacity: 0;
                    margin: auto;
                    z-index: -1;
                    pointer-events: none;
                }

                    nav.header-nav ul.header-nav > li:hover > a::after{
                        opacity: .8;
                        pointer-events: auto;
                    }

                nav.header-nav ul.header-nav > li:first-child{
                    margin-left: 0 !important;
                }

                    nav.header-nav ul.header-nav > li:last-child{
                        margin-right: 0 !important;
                    }

                        nav.header-nav ul.header-nav .sub-menu a {
                            color: #fff;
                            padding: 8px 5px;
                            font-size: 15px;
                            font-family: var(--font-family-default);
                            text-align: center;
                            letter-spacing: 1px;
                            font-weight: 300;
                            background: rgb(126 114 66 / 80%);
                            transition: all 0.3s ease-in-out;
                        }

                            nav.header-nav ul.header-nav .sub-menu li:hover > a{
                                background: #050937;
                            }

                        nav.header-nav ul.header-nav > li:not(.menu-item-has-children) > a::after {
                            height: calc(100% + 27px);
                        }

/*burger menu*/
.header-burger-menu {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    border: solid 1px #fff;
    border-radius: 100%;
    font-size: 10px;
    font-weight: 300;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

    .header-burger-menu:hover{
        background-color: #050937 !important;
        border: solid 1px #050937;
    }

/*site off*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}

.site-offcanvas .offcanvas-backdrop.active {
    visibility: visible;
}

.site-offcanvas .offcanvas-backdrop {
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.slide-menu-content {
    position: fixed;
    bottom: 0;
    right: -10%;
    width: 100%;
    max-width: 600px;
    height: 100%;
    opacity: 0;
    z-index: 1002;
    visibility: hidden;
    background: #050937;
    transition: all 0.4s ease-in-out;
}

.slide-menu-content.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.slide-menu-inner-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
    z-index: 2;
    padding: 0;
}

.slide-menu-bottom-inner {
    padding: 0 15px;
    margin: 0 auto;
    display: block;
}

.slide-menu-content-holder {
    position: relative;
    padding: 60px 15px 30px;
    height: 100%;
    z-index: 5;
}

    .slide-menu-content-inner {
        position: relative;
        z-index: 5;
        max-width: 480px;
        margin: 0 auto;
    }

        .slide-menu-content-inner .slider-logo a {
            max-width: 257px;
            display: block;
        }

.b-menu {
    margin-top: 115px;
    padding: 0;
}

.b-menu .menu-main-nav-container {
    display: block;
}

ul#slidenav {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
}

ul#slidenav > li:first-child {
    display: none;
}

ul#slidenav > li > a {
    display: inline-block;
    padding: 4px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-family: var(--font-family-default);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
}
    
ul#slidenav > li ul.sub-menu a {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
    font-family: var(--font-family-default);
    padding: 5px 0;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.1em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul#slidenav li a:hover{
    color: #7e7242 !important;
}

ul#slidenav > li:hover > a{
    color: #7e7242 !important;
}

ul#slidenav li ul.sub-menu {
    margin-top: 9px;
    margin-left: 0;
}

ul#slidenav li ul.sub-menu li {
    margin-bottom: 6px;
}

ul#slidenav > li {
    margin-bottom: 61px;
    position: relative;
    width: calc(100% / 3);
}

ul#slidenav > li > a i {
    font-style: normal;
}

ul#slidenav > li.bmenu-dd {
    margin-top: 12px;
}

ul#slidenav > li > .sub-menu {
    margin-bottom: 0;
    margin-top: 16px !important;
}

ul#slidenav > li:nth-child(3) {
    margin-bottom: 60px;
}

ul#slidenav > li.bmenu-contact-area {
    margin-bottom: 150px;
}

.close-burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 15px;
    color: #fff;
    position: absolute;
    top: 70px;
    right: 60px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    z-index: 12;
    border: solid 1px #fff;
    border-radius: 100%;
}

.close-burger-menu:hover{
    background-color: #7e7242;
    border: solid 1px #7e7242;
}

.b-menu-contact {
    margin: 0 0 0;
}

    .b-menu-contact span {
        display: block;
        margin: 6px 0;
    }

        .b-menu-contact a {
            display: block;
            padding: 5px;
            font-size: 14px;
            color: #fff;
            font-weight: 300;
            transition: all 0.3s ease-in-out;
            letter-spacing: 0.1em;
            font-family: var(--font-family-default);
        }

            .b-menu-contact a:hover{
                color: #7e7242;
            }

                .b-menu-contact em.ai-font-phone {
                    font-size: 14px;
                    margin-right: 10px;
                }

                    .b-menu-contact em.ai-font-envelope-f {
                        font-size: 10px;
                        margin-right: 11px;
                    }

.b-menu-contact-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 105px;
}

    .b-menu-smi{
        display: flex;
        gap: 10px;
    }

        .b-menu-smi a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #7e7242;
            width: 40px;
            height: 40px;
            color: #fff;
            border-radius: 100%;
            font-size: 17px;
            transition: all 0.3s ease-in-out;
        }

            .b-menu-smi a:hover{
                color: #7e7242;
                background: #fff;
            }

/* btn */
.global-site-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 210px;
    height: 50px;
    border: solid 1px #7e7242;
    color: #7e7242;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

    .global-site-btn a:hover {
        background-color: #7e7242 !important;
        border: solid 1px #7e7242 !important;
        color: #fff !important;
    }

        .global-site-btn.is-white a{
            color: #fff;
            border: solid 1px #fff;
        }

/* title */
.global-site-title {
    font-size: 72px;
    text-transform: uppercase;
    color: #050937;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    white-space: nowrap;
    left: -5px;
}

    .global-site-title span {
        display: block;
        font-size: 30px;
        color: #595959;
        letter-spacing: 0.4em;
        margin: 0 0 5px;
    }

        .global-site-title em {
            font-style: normal;
            font-family: var(--font-family-rock-salt);
            color: #f0f0f0;
            letter-spacing: -0.04em;
            position: absolute;
            font-size: 70px;
            z-index: -1;
            top: -25px;
            left: -62px;
        }

            .global-site-title em::after {
                content: '';
                position: absolute;
                top: 4px;
                left: 4px;
                bottom: 0;
                width: 80px;
                height: 80px;
                margin: auto;
                border: solid 1px #f0f0f0;
            }

                .global-site-title.is-center{
                    max-width: max-content;
                    margin: 0 auto;
                }

/* arrow */
.global-site-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}

    .global-site-arrow button{
        -webkit-appearance: none;
        -moz-appearance: none;
        border-radius: 0;
        border: none;
        outline: none;
        background: transparent;
        padding: 5px;
        transition: all 0.4s ease-in-out;
        pointer-events: auto;
    }

        .global-site-arrow button img{
            max-width: 30px;
        }

            .global-site-arrow button:hover{
                opacity: .6;
            }

                .global-site-arrow button:first-child img {
                    filter: brightness(0) invert(1);
                }

                    .global-site-arrow .global-site-btn {
                        width: 180px;
                        margin: 0 45px;
                    }

/* footer */
footer.main-footer {
    position: relative;
    padding: 70px 15px;
    background: #050937;
}

    .ftr-holder {
        max-width: 1320px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

        .ftr-inner {
            display: flex;
            flex-wrap: wrap;
            margin: 31px 0 0;
        }

            .ftr-title {
                font-size: 24px;
                font-weight: 500;
                letter-spacing: 0.1em;
                color: #fff;
                text-transform: uppercase;
                line-height: 1.3;
            }

/* logos */
.ftr-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

    .ftr-logos a {
        display: block;
        position: relative;
        max-width: 307px;
    }

        .ftr-logos span:nth-child(2) {
            margin-left: auto;
        }

            .ftr-logos .broker-1 {
                max-width: 271px;
            }

                .ftr-logos .broker-2 {
                    max-width: 172px;
                }

                    .ftr-logos .broker-3 {
                        max-width: 145px;
                    }

/* ftr contact */
.footer-contact-details {
    width: 35.304%;
}

    .ftr-contact {
        margin: 27px 0 34px;
        display: flex;
        gap: 40px;
    }

    .ftr-contact span {
        display: block;
    }

        .ftr-contact a {
            display: inline-block;
            padding: 5px 0;
            color: #fff;
            font-size: 14px;
            font-weight: 300;
            transition: all 0.3s ease-in-out;
            letter-spacing: 0.1em;
            font-family: var(--font-family-default);
        }

            .ftr-contact a:hover{
                color: #7e7242 !important;
            }

            .ftr-contact em.ai-font-phone {
                margin-right: 6px;
                font-size: 13px;
            }

        .ftr-contact em.ai-font-envelope-f {
            font-size: 11px;
            margin-right: 6px;
        }

/* ftr smi */
.ftr-smi{
    display: flex;
    gap: 10px;
}

    .ftr-smi a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #7e7242;
        width: 40px;
        height: 40px;
        color: #fff;
        border-radius: 100%;
        font-size: 17px;
        transition: all 0.3s ease-in-out;
    }

        .ftr-smi a:hover{
            color: #7e7242;
            background: #fff;
        }

/* ftr navs */
.ftr-nav {
    width: 64.696%;
}

    ul.footernav {
        font-size: 0;
        display: flex;
        justify-content: space-between;
        margin: 22px 0 0;
    }
                                        
        ul.footernav > li > a {
            display: inline-block;
            padding: 5px 0;
            color: #fff;
            font-size: 18px;
            font-weight: 300;
            text-transform: uppercase;
            transition: all 0.3s ease-in-out;
            position: relative;
            pointer-events: auto;
            letter-spacing: 0.1em;
        }
                                        
            ul.footernav li a:hover{
                color: #7e7242 !important;
            }
                                        
                ul.footernav > li {
                    margin-bottom: 6px;
                }

                    ul.footernav ul.sub-menu a {
                        font-size: 13px;
                        color: #e0dee0;
                        letter-spacing: 0.1em;
                        display: inline-block;
                        transition: all 0.3s ease-in-out;
                        padding: 5px 0;
                    }

                        ul.footernav ul.sub-menu li {
                            margin: 0 0 7px !important;
                        }

                            ul.footernav > li > .sub-menu {
                                margin: 16px 0 0;
                            }

                        ul.footernav > li:first-child {
                            display: none;
                        }

.ftr-disclaimer {
    font-size: 13px;
    color: #e0dee0;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-top: 44px;
    text-align: center;
}

    .ftr-disclaimer a{
        color: #e0dee0;
        transition: all 0.3s ease-in-out;
    }

    .footer-copyright {
        margin-top: 21px;
        text-align: center;
    }

    .footer-copyright, 
    .footer-copyright a {
        font-size: 13px;
        color: #e0dee0;
        line-height: 1.5;
        letter-spacing: 0.04em;
        font-weight: 300;
        transition: all 0.3s ease-in-out;
    }

        .footer-copyright a:hover,
        .ftr-disclaimer a:hover{
            color: #7e7242;
        }
    
            .footer-copyright a[href="https://www.agentimage.com"]{
                text-decoration: underline !important;
            }   

                .mls {
                    font-size: 20px;
                    color: #fff;
                    text-align: center;
                    margin-top: 24px;
                }
                
                .mls em {
                    margin: 0 3px;
                }


.wpcf7 form .wpcf7-response-output {
    font-size: 12px;
    text-align: center;
}

html.safari-true .attachment-fixed canvas {
    background-attachment: scroll!important;
}

.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: auto !important;
    bottom: 0;
    width: auto;
    font-size: 11px;
}

.wpcf7-spinner,
.wpcf7 .ajax-loader {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    margin: auto;
}

span.wpcf7-form-control-wrap {
    display: block;
}

/*******************************************************
 *
 * 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, 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;
}

.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}

#content .archive-subtitle, 
#content .archive-title, 
#content .entry-title {
    font-size: 50px;
    color: #1e3f66;
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
}

/*Meet the Team*/

.team-container {
    display: block;
    position: relative;
    z-index: 1;
    padding: 113px 0 40px;
    background: #fff;
}

.team-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.team-wrapper {
    display: block;
    position: relative;
}

.team-wrapper > .container {
    width: 100%;
    max-width: 1330px;
}


/*.team-item {
    display: block;
    position: relative;
    width: calc(100% / 4);
    padding: 0 3.5px;
}
*/

.team-item {
    display: inline-block;
    position: relative;
    width: calc(100% / 4);
    padding: 0 3.5px;
}

.team-item.stay-item .team-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    left: 0;
    pointer-events: auto;
}

.team-item-list {
    display: inline-block;
    position: relative;
    width: calc((100%/4) * 3);
    padding: 0 3.5px;
    font-size: 0;
}

.team-item-list .team-item:first-child {
    display: none;
}

.team-item-list .team-item {
    width: calc(100% / 3);
}

.team-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -3.5px;
}

.team-img a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.team-agent-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.team-agent-img canvas {
    display: block;
    width: 100%;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: 1s ease 0s, 1s ease 0s, -webkit-transform 1000ms;
    transition: 1s ease 0s, 1s ease 0s, -webkit-transform 1000ms;
    -o-transition: 1s ease 0s, 1s ease 0s, transform 1000ms;
    transition: 1s ease 0s, 1s ease 0s, transform 1000ms;
    transition: 1s ease 0s, 1s ease 0s, transform 1000ms, -webkit-transform 1000ms;
    background-color: #050937;
    height: 100%;
}

.team-main {
    display: block;
    position: relative;
    overflow: hidden;
}

.team-details {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    text-align: center;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    min-height: 200px;
}

.team-img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.team-name h2 {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1.32px;
    color: #050937;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.team-name {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.team-contacts span {
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.6px;
    color: #4c4c4c;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.team-item:hover .team-details:before {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.team-contacts span a {
    color: #4c4c4c;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.team-contacts span a:hover {
    color: #7e7242!important;
}

.team-hover {
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    pointer-events: none;
    width: calc(100% - 7px);
    -webkit-transform: translateX(-50%) scale(0.7);
    -ms-transform: translateX(-50%) scale(0.7);
    transform: translateX(-50%) scale(0.7);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    height: 100%;
}

.team-hover > .team-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.team-hover > .team-details .team-name h2 {
    color: #fff!important;
}

.team-hover > .team-details .team-hover .team-contacts span,
.team-hover > .team-details .team-contacts span a {
    color: #fff;
}

.team-item-list .team-item:hover .team-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
}

.team-arr {
    appearance: none;
    outline: none;
    background: transparent;
    display: inline-block;
    border: none;
    padding: 0;
    z-index: 10;
    position: absolute;
    top: calc(50% - 61px);
    transform: translateY(-50%);
}

.team-prev {
    left: 20px;
}

.team-next {
    right: 20px;
}

.team-arr em {
    font-size: 52px;
    color: #fff;
    transition: all .3s ease-in-out;
}

.team-arr:hover em {
    color: #050937;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--widget{
    margin: unset!important;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--input-area{
    padding: 1rem 0!important;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--button{
    width: 19%!important;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--input{
    width: 78.5%!important;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--input input.tt-hint,
#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--input input.tt-input{
    border-radius: 0;
    color: #595959;
    font-size: 14px;
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    width: 100%;
    height: 34px;
    padding: 0px 10px;
    line-height: 1;
    letter-spacing: 0.04em;
    border: none;
    border-bottom: solid 1px #595959;
    font-family: var(--font-family-default);
    margin-top: 15px;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--input input.tt-hint{
    margin-top: unset;
}

#realscout--kingdom #realscout--kingdom__castle #kingdom--castle #kingdom--castle__throne .search--button button[type="submit"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    height: 50px;
    background: #050937;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.1em;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    font-family: var(--font-family-default);
}   

body.wp-singular.page-template-default.page-id-0.page-child.parent-pageid--1 .ip-banner canvas {
    height: auto;
}

#content .aidefcf-cl3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media print{
    .page-id-0 header.main-header,
    .page-id-0 .site-offcanvas,
    .page-id-0 .ip-banner,
    .page-id-0 p#breadcrumbs,
    .page-id-0 footer.main-footer{
        display: none !important;
    }
} 

@media only screen and (min-width: 992px) and (max-width: 1600px) {
    /* Sub Menu */
    .header-nav .sub-menu {
        min-width: calc(100% + 4.375vw);
        left: -2.188vw;
    }

    .header-nav .sub-menu a{
        padding: 0.625vw;
    }

    .header-nav .sub-menu .sub-menu{
        margin-left: calc(100% + 0.125vw);
    }

    /*main header*/
    header.main-header {
        padding: 3.125vw 0.938vw;
    }

        .header-inner {
            max-width: 92.5vw;
        } 

    /*fixed*/
    header.main-header.show-fixed {
        padding: 1.125vw 0.938vw;
    }

        header.main-header.show-fixed .header-logo a{
            max-width: 9.625vw;
        }

            header.main-header.show-fixed .header-broker-logo {
                max-width: 7.875vw;
            }

    /*logo*/
    .header-logo a {
        max-width: 16.063vw;
    }

        .header-broker-logo {
            max-width: 10vw;
            margin-right: 3.125vw;
        }

    /*nav*/
    nav.header-nav {
        margin-right: 3.625vw;
    }

        nav.header-nav ul.header-nav > li{
            margin: 0 1.25vw;
        }

            nav.header-nav ul.header-nav > li > a{
                font-size: 0.875vw;
                letter-spacing: 0.1vw;
                padding: 0.313vw;
            }

                nav.header-nav ul.header-nav > li > a::after {
                    top: -0.875vw;
                    left: -2.188vw;
                    width: calc(100% + 4.375vw);
                    height: calc(100% + 0.875vw);
                }

                    nav.header-nav ul.header-nav .sub-menu a {
                        padding: 0.5vw 0.313vw;
                        font-size: 0.938vw;
                        letter-spacing: 0.063vw;
                    }

                        nav.header-nav ul.header-nav > li:not(.menu-item-has-children) > a::after {
                            height: calc(100% + 1.688vw);
                        }

    /*burger menu*/
    .header-burger-menu {
        width: 3.125vw;
        height: 3.125vw;
        border: solid 0.063vw #fff;
        font-size: 0.625vw;
        padding: 0.75vw;
    }

        .header-burger-menu:hover{
            border: solid 0.063vw #050937;
        }

    /*site off*/
    .slide-menu-content {
        max-width: 37.5vw;
    }

        .slide-menu-bottom-inner {
            padding: 0 0.938vw;
        }

            .slide-menu-content-holder {
                padding: 3.75vw 0.938vw 1.875vw;
            }

                .slide-menu-content-inner {
                    max-width: 30vw;
                }

                    .slide-menu-content-inner .slider-logo a {
                        max-width: 16.063vw;
                    }

    .b-menu {
        margin-top: 7.188vw;
    }

    ul#slidenav > li > a {
        padding: 0.25vw 0;
        font-size: 1.125vw;
    }
        
    ul#slidenav > li ul.sub-menu a {
        font-size: 0.813vw;
        padding: 0.313vw 0;
    }

    ul#slidenav li ul.sub-menu {
        margin-top: 0.563vw;
    }

    ul#slidenav li ul.sub-menu li {
        margin-bottom: 0.375vw;
    }

    ul#slidenav > li {
        margin-bottom: 3.813vw;
    }

    ul#slidenav > li.bmenu-dd {
        margin-top: 0.75vw;
    }

    ul#slidenav > li > .sub-menu {
        margin-top: 1vw !important;
    }

    ul#slidenav > li.bmenu-contact-area {
        margin-bottom: 9.375vw;
    }

    .close-burger-menu {
        width: 3.125vw;
        height: 3.125vw;
        font-size: 0.938vw;
        top: 4.375vw;
        right: 3.75vw;
        padding: 0.313vw;
        border: solid 0.063vw #fff;
    }

    .close-burger-menu:hover{
        border: solid 0.063vw #7e7242;
    }


    .b-menu-contact span {
        margin: 0.375vw 0;
    }

        .b-menu-contact a {
            padding: 0.313vw;
            font-size: 0.875vw;
        }

            .b-menu-contact em.ai-font-phone {
                font-size: 0.875vw;
                margin-right: 0.625vw;
            }

                .b-menu-contact em.ai-font-envelope-f {
                    font-size: 0.625vw;
                    margin-right: 0.688vw;
                }

    .b-menu-contact-area {
        margin-top: 6.563vw;
    }

        .b-menu-smi{
            gap: 0.625vw;
        }

            .b-menu-smi a {
                width: 2.5vw;
                height: 2.5vw;
                font-size: 1.063vw;
            }

    /* btn */
    .global-site-btn a {
        max-width: 13.125vw;
        height: 3.125vw;
        border: solid 0.063vw #7e7242;
        font-size: 0.875vw;
    }

        .global-site-btn a:hover {
            border: solid 0.063vw #7e7242 !important;
        }

            .global-site-btn.is-white a{
                border: solid 0.063vw #fff;
            }

    /* title */
    .global-site-title {
        font-size: 4.5vw;
        left: -0.313vw;
    }

        .global-site-title span {
            font-size: 1.875vw;
            margin: 0 0 0.313vw;
        }

            .global-site-title em {
                font-size: 4.375vw;
                top: -1.563vw;
                left: -3.875vw;
            }

                .global-site-title em::after {
                    top: 0.25vw;
                    left: 0.25vw;
                    width: 5vw;
                    height: 5vw;
                    border: solid 0.063vw #f0f0f0;
                }

    /* arrow */
    .global-site-arrow {
        gap: 2.813vw;
    }

        .global-site-arrow button{
            padding: 0.313vw;
        }

            .global-site-arrow button img{
                max-width: 1.875vw;
            }

                .global-site-arrow .global-site-btn {
                    width: 11.25vw;
                    margin: 0 2.813vw;
                }

    /* footer */
    footer.main-footer {
        padding: 4.375vw 0.938vw;
    }

        .ftr-holder {
            max-width: 82.5vw;
        }

            .ftr-inner {
                margin: 1.938vw 0 0;
            }

                .ftr-title {
                    font-size: 1.5vw;
                }

    /* logos */
    .ftr-logos {
        gap: 3.125vw;
    }

        .ftr-logos a {
            max-width: 19.188vw;
        }

            .ftr-logos .broker-1 {
                max-width: 16.938vw;
            }

                .ftr-logos .broker-2 {
                    max-width: 10.75vw;
                }

                    .ftr-logos .broker-3 {
                        max-width: 9.063vw;
                    }

    /* ftr contact */
    .ftr-contact {
        margin: 1.688vw 0 2.125vw;
        gap: 2.5vw;
    }

        .ftr-contact a {
            padding: 0.313vw 0;
            font-size: 0.875vw;
        }

            .ftr-contact em.ai-font-phone {
                margin-right: 0.375vw;
                font-size: 0.813vw;
            }

            .ftr-contact em.ai-font-envelope-f {
                font-size: 0.688vw;
                margin-right: 0.375vw;
            }

    /* ftr smi */
    .ftr-smi{
        gap: 0.625vw;
    }

        .ftr-smi a {
            width: 2.5vw;
            height: 2.5vw;
            font-size: 1.063vw;
        }

    /* ftr navs */
    ul.footernav {
        margin: 1.375vw 0 0;
    }
                                        
        ul.footernav > li > a {
            padding: 0.313vw 0;
            font-size: 1.125vw;
        }
                                    
            ul.footernav > li {
                margin-bottom: 0.375vw;
            }

                ul.footernav ul.sub-menu a {
                    font-size: 0.813vw;
                    padding: 0.313vw 0;
                }

                    ul.footernav ul.sub-menu li {
                        margin: 0 0 0.438vw !important;
                    }

                        ul.footernav > li > .sub-menu {
                            margin: 1vw 0 0;
                        }

    .ftr-disclaimer {
        font-size: 0.813vw;
        margin-top: 2.75vw;
    }

        .footer-copyright {
            margin-top: 1.313vw;
        }

            .footer-copyright, 
            .footer-copyright a {
                font-size: 0.813vw;
            }

                .mls {
                    font-size: 1.25vw;
                    margin-top: 1.5vw;
                }
                
                    .mls em {
                        margin: 0 0.188vw;
                    }
}

@media only screen and (max-width: 1280px) {
    .attachment-fixed canvas {
        background-attachment: local !important;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
   
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    
    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

    #content-sidebar,
    #content-full {
        width: 100%;
    }

    .outer {
        width: 100%;
        min-width: 100%;
    }

    #content-sidebar #content {
        width: 100%;
    }

    nav.header-nav,
    .header-broker-logo,
    .header-burger-menu {
        display: none;
    }

    header.main-header {
        background: #050937;
        z-index: 101;
        padding: 82px 15px 30px !important;
        position: relative;
    }

    .header-inner {
        justify-content: center;
    }

    .header-logo a {
        max-width: 257px !important;
    }

    .global-site-title {
        margin: 0 auto !important;
        font-size: 50px !important;
        text-align: center;
    }

    .global-site-title span {
        font-size: 25px;
    }

    .global-site-title em {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 0 -25px;
        display: block;
    }

    .global-site-title em::after {
        right: 0;
        left: 0;
    }

    .global-site-btn a {
        max-width: 210px;
        margin: 0 auto;
        width: 100%;
    }

    .ftr-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .ftr-logos span:nth-child(2) {
        margin-left: 0;
    }

    .footer-contact-details {
        width: 100%;
        text-align: center;
    }

    .ftr-contact {
        gap: 10px;
        justify-content: center;
        flex-direction: column;
    }

    .ftr-smi {
        justify-content: center;
        margin-bottom: 30px;
    }

    .ftr-nav {
        width: 100%;
        text-align: center;
    }

    ul.footernav {
        flex-direction: column;
    }


   
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }

    .global-site-title {
        font-size: 40px !important;
    }

    .global-site-arrow .global-site-btn {
        margin: 0 0;
    }
    
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
   .global-site-title {
        font-size: 35px !important;
        letter-spacing: 0;
    }

    .global-site-title span {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }

    .global-site-arrow {
        gap: 20px;
    }
}