/*
Theme Name: Ray Warren
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.1
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Roboto', sans-serif;
    --font-family-title: 'Montserrat', sans-serif;
    --font-size-default: 16px;
    --font-size-title: 70px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;

    /** Use for input, button, and any other element */
    --primary: #010101;
    --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 */
ul#nav li{
    position:relative;
    display: inline-block;
}
 
ul#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 199px;
    left: 50%;
    margin-left: -100px;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

ul#nav .sub-menu a {
    color: #fff;
    display: block;
    padding: 12px 10px;
    background: rgb(1 1 1 / 54%);
}

ul#nav .sub-menu a:hover{
    background: var(--primary);
    text-decoration: none;
}
ul#nav .sub-menu .sub-menu{
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}

ul#nav li:hover > .sub-menu{
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

ul#nav .sub-menu li{
    position: relative;
    display: block;
}

ul#nav .sub-menu li:last-child{
    border-bottom: none;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/

/* Global */

body.home {
    background: #fff;
}

body{
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
}

a,a:hover,a:visited,a:focus,input,input:focus,textarea,textarea:focus,select:focus,select{
    outline: none !important;
    text-decoration: none !important;
}

.slick-slide{
    outline: none !important;
}

.label-hide{
    display: none !important;
}

.no-padding {
    padding: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-margin {
    margin: 0;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.text-center {
    text-align: center;
}

div#main-wrapper{
    overflow: hidden;
    position: relative;
}

/*global photo*/
.global-photo {
    position: relative;
}

.global-photo canvas {
    display: block;
    width: 100%;
}

.global-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/*global title*/
.global-title {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    letter-spacing: 9px;
    text-align: left;
    position: relative;
    
}

.global-title span {
    display: inline-block;
    background: rgb(105,75,44);
    background: linear-gradient(90deg, 
        rgba(105,75,44,1) 0%, 
        rgba(204,147,95,1) 38%, 
        rgba(227,166,113,1) 68%, 
        rgba(156,109,61,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.global-title strong {
    font-size: var(--font-size-title);
    /*font-weight: 700;*/
    color: var(--primary);
    letter-spacing: 0;
    display: block;
    margin-top: 5px;
}

/*global btn*/
.global-btn {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #383838;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 174px;
    height: 47px;
    border: 1px solid #383838;
    position: relative;
    background: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-btn:hover {
    color: #fff;
}

.global-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(105,75,44);
    background: linear-gradient(90deg, 
        rgba(105,75,44,1) 0%, 
        rgba(204,147,95,1) 38%, 
        rgba(227,166,113,1) 68%, 
        rgba(156,109,61,1) 100%);
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-btn:hover::before {
    opacity: 1;
}

.global-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -17px;
    bottom: 0;
    margin: auto;
    width: 34px;
    height: 1px;
    background: #383838;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-btn::after {
    background: var(--primary);
}

.global-btn span {
    position: relative;
    z-index: 5;
}

/*global arrow*/
.global-arrow button {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-arrow button:hover {
    opacity: .7;
}

/*fixed header*/
header.main-header.show-fixed {
    background: rgb(255 255 255 / 88%);
    padding: 5px 15px;
}

    header.main-header.show-fixed .hdr-logo a {
        max-width: 141px;
    }

        header.main-header.show-fixed nav.header-nav ul#nav > li > a {
            color: var(--primary);
        }

            header.main-header.show-fixed nav.header-nav ul#nav > li > a::after {
                background: var(--primary);
            }

                header.main-header.show-fixed .bm-line span {
                    background: var(--primary);
                }

                    header.main-header.show-fixed .bm-line span:hover {
                        opacity: .7;
                    }

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    padding: 43px 15px 15px;
    width: 100%;
    background: transparent;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .hdr-holder {
        position: relative;
        max-width: 1500px;
        margin: 0 auto;
        z-index: 5;
    }   

            .hdr-inner,
            .hdr-col2 {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .hdr-logo a {
                    max-width: 235px;
                    display: block;
                    position: relative;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }
.hdr-logo img.fixed {
	display: none;
}
.show-fixed .hdr-logo img.fixed {
	display: block;
}
.show-fixed .hdr-logo img.default {
	display: none;
}

/*header nav*/
nav.header-nav {
    position: relative;
    text-align: center;
}
    
    nav.header-nav ul#nav {
        font-size: 0;
        position: relative;
        z-index: 5;
    }
        
        nav.header-nav ul#nav > li {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            margin: 0 19px;
        }
            
            nav.header-nav ul#nav > li > a {
                font-size: var(--font-size-default);
                color: #fff;
                font-weight: 500;
                letter-spacing: .5px;
                text-transform: uppercase;
                display: block;
                position: relative;
                z-index: 5;
                padding: 9px 0;
                background: transparent;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                nav.header-nav ul#nav > li > a::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    margin: auto;
                    width: 0;
                    height: 1px;
                    background: #fff;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }

                    nav.header-nav ul#nav > li > a:hover::after {
                        width: 70px;
                    }
                            
                        nav.header-nav ul#nav .sub-menu a {
                            font-size: var(--font-size-default);
                            font-weight: 500;
                            text-transform: uppercase;
                            letter-spacing: .5px;
                            text-align: center;
                            display: block;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }

                            nav.header-nav ul#nav > li:first-child {
                                margin-left: 0;
                            }

                                nav.header-nav ul#nav > li:last-child {
                                    margin-right: 0;
                                }

/*slideshow*/
.slideshow-area,
.slider-holder {
    position: relative;
}

    .slider-holder .cycloneslider-slide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .45;
        z-index: 2;
        pointer-events: none;
    }

    .slider-holder .aios-slider-splide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .45;
        z-index: 2;
        pointer-events: none;
    }

/*slider tagline*/
.slider-tagline-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

    .slider-tagline {
        font-size: var(--font-size-title);
        font-weight: 600;
        font-family: var(--font-family-title);
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 2.9px;
    }

        .slider-tagline span {
            display: block;
            font-size: 25px;
            font-weight: 400;
            letter-spacing: 11.2px;
            margin-top: 11px;
        }

/*side fixed smi*/
.side-fixed-contact {
    position: fixed;
    top: 0;
    right: 8px;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1000;
}

.ip-container .side-fixed-contact {
    right: -15px;
}

    .fixed-smi {
        position: relative;
        pointer-events: none !important;
    }

        .fixed-smi span{
            display: block;
            text-align: center;
            margin: 10px 0;
        }

            .fixed-smi a {
                font-size: 21px;
                color: #fff;
                margin: 0;
                pointer-events: auto;
                position: relative;
                text-shadow: 0px 0px 4px #000;
                z-index: 4;
                display: inline-block;
                position: relative;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .fixed-smi a:hover {
                    opacity: .7;
                }

                    .fsmi-divider {
                        display: block;
                        width: 1px;
                        height: 45px;
                        margin: 0 auto;
                        background: rgb(255 255 255 / 37%);
                    }

                        .fixed-smi i {
                            display: none;
                        }

                            span.fsmi-phone a {
                                font-size: 15px;
                            }

                                span.fsmi-email a {
                                    font-size: 13px;
                                }

                                    .fsmi-follow {
                                        font-size: 12px;
                                        font-weight: 400;
                                        text-transform: uppercase;
                                        color: #fff;
                                        letter-spacing: 2px;
                                        transform: rotate(-90deg);
                                        position: relative;
                                        top: 40px;
                                    }

/*burger menu*/
.header-burger-menu {
    position: relative;
    cursor: pointer;
    margin-left: 50px;
    -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;
}

    .bm-line span {
        width: 40px;
        height: 3px;
        background: #fff;
        display: block;
        margin: 10px 0;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .bm-line span:first-child {
            width: 34px;
            margin-left: auto;
        }

            .bm-line span:last-child {
                width: 23px;
                margin-left: auto;
            }

                .bm-line:hover span {
                    background: var(--primary);
                }

/*Slide menu*/
.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;
            background: rgb(0 0 0 / 30%);
        }

            .slide-menu-content {
                position: fixed;
                bottom: 0;
                right: -50%;
                width: 100%;
                max-width: 796px;
                height: 100%;
                opacity: 0;
                z-index: 1002;
                visibility: hidden;
                background: rgb(0 0 0 / 90%);
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .slide-menu-content.active {
                    right: 0;
                    opacity: 1;
                    visibility: visible;
                }

                    .slide-menu-inner-content {
                        position: relative;
                        height: 100%;
                        overflow-y: auto;
                        z-index: 2;
                        padding: 0;
                    }

                        ul#slidenav {
                            font-size: 0;
                            position: relative;
                            display: flex;
                            flex-wrap: wrap;
                        }

                            ul#slidenav > li {
                                margin: 0 0 40px;
                                display: block;
                                width: 50%;
                            }

                                ul#slidenav > li > a {
                                    display: inline-block;
                                    padding: 0;
                                    font-size: 19px;
                                    font-weight: 700;
                                    text-transform: uppercase;
                                    position: relative;
                                    letter-spacing: .7px;
                                    margin-bottom: 18px;
                                    background: rgb(105,75,44);
                                    background: linear-gradient(90deg, 
                                        rgba(105,75,44,1) 0%, 
                                        rgba(204,147,95,1) 38%, 
                                        rgba(227,166,113,1) 68%, 
                                        rgba(156,109,61,1) 100%);
                                    -webkit-background-clip: text;
                                    -webkit-text-fill-color: transparent;
                                    -webkit-transition: all 0.3s ease-in-out;
                                    -moz-transition: all 0.3s ease-in-out;
                                    -o-transition: all 0.3s ease-in-out;
                                    transition: all 0.3s ease-in-out;
                                }

                                    ul#slidenav > li ul.sub-menu a {
                                        font-size: 19px;
                                        color: #fff;
                                        font-weight: 500;
                                        text-transform: uppercase;
                                        padding: 0;
                                        display: inline-block;
                                        margin-bottom: 10px;
                                        letter-spacing: .7px;
                                        -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,
                                        ul#slidenav > li ul.sub-menu a:hover {
                                            opacity: .7;
                                        }
                                    
                                            .close-b-menu {
                                                color: #fff;
                                                font-size: 14px;
                                                cursor: pointer;
                                                z-index: 4;
                                                text-align: center;
                                                position: absolute;
                                                top: 44px;
                                                right: 44px;
                                                -webkit-transition: all 0.4s ease-in-out;
                                                -moz-transition: all 0.4s ease-in-out;
                                                -o-transition: all 0.4s ease-in-out;
                                                transition: all 0.4s ease-in-out;
                                            }

                                                .close-b-menu:hover{
                                                    opacity: .7;
                                                }

                                                    body.body-overflow {
                                                        overflow: hidden;
                                                    }

                                                        .b-menu-holder {
                                                            padding: 43px 60px 15px 97px;
                                                            position: relative;
                                                        }

                                                            .b-menu-logo a {
                                                                display: block;
                                                                position: relative;
                                                                max-width: 234px;
                                                                margin: 0 0 58px;
                                                            }

                                                                .b-menu-contact span {
                                                                    display: block;
                                                                    font-size: 15px;
                                                                    font-weight: 400;
                                                                    color: #fff;
                                                                    margin: 0 0 10px;
                                                                }

                                                                    .b-menu-contact a {
                                                                        color: #fff;
                                                                        display: inline-block;
                                                                        position: relative;
                                                                        -webkit-transition: all 0.3s ease-in-out;
                                                                        -moz-transition: all 0.3s ease-in-out;
                                                                        -o-transition: all 0.3s ease-in-out;
                                                                        transition: all 0.3s ease-in-out;
                                                                    }

                                                                        .b-menu-contact a:hover {
                                                                            opacity: .7;
                                                                        }

                                                                    .b-menu-contact em {
                                                                        margin-right: 20px;
                                                                    }

                                                                span.b-menu-loc em {
                                                                    font-size: 20px;
                                                                    margin-right: 13px;
                                                                }

                                                            em.ai-font-mailbox {
                                                                display: inline-block;
                                                                width: 14px;
                                                                height: 17px;
                                                                background: url(images/mailbox.png) no-repeat;
                                                                background-position: center;
                                                                filter: invert(1);
                                                            }

                                                        span.b-menu-loc em.ai-font-mailbox {
                                                            margin-right: 19px;
                                                        }

                                                    span.b-menu-email em {
                                                        font-size: 12px;
                                                    }

                                                span.b-menu-phone em {
                                                    margin-right: 21px;
                                                }

                                            .b-menu-contact {
                                                margin: 6px 0 28px;
                                            }

                                        .b-menu-smi {
                                            font-size: 0;
                                            margin-left: -15px;
                                        }

                                    .b-menu-smi span {
                                        display: inline-block;
                                        padding: 0 15px;
                                    }

                                .b-menu-smi a {
                                    font-size: 20px;
                                    color: #fff;
                                    display: inline-block;
                                    position: relative;
                                    -webkit-transition: all 0.3s ease-in-out;
                                    -moz-transition: all 0.3s ease-in-out;
                                    -o-transition: all 0.3s ease-in-out;
                                    transition: all 0.3s ease-in-out;
                                }

                            .b-menu-smi a:hover {
                                opacity: .7;
                            }

/*explore*/
.explore {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
}

    .explore span {
        cursor: pointer;
        font-size: 13px;
        font-weight: 400;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 7px;
        display: inline-block;
        position: relative;
    }

        .explore img {
            margin: 15px auto 0;
        }

/*indicattor*/
.indicator {
    position: absolute;
    top: -7px;
    left: 25px;
    font-size: 303px;
    font-weight: 700;
    font-family: var(--font-family-title);
    letter-spacing: 5px;
    line-height: .77;
    color: #fff;
    text-shadow: rgb(0, 0, 0) 1px 0px 0px, 
    rgb(0, 0, 0) 0.540302px 0.841471px 0px, 
    rgb(0, 0, 0) -0.416147px 0.909297px 0px, 
    rgb(0, 0, 0) -0.989992px 0.14112px 0px, 
    rgb(0, 0, 0) -0.653644px -0.756802px 0px, 
    rgb(0, 0, 0) 0.283662px -0.958924px 0px, 
    rgb(0, 0, 0) 0.96017px -0.279415px 0px;
    opacity: .13;
    pointer-events: none;
}

/*quick search section*/
section.quick-search-area {
    position: relative;
    padding: 53px 15px 82px;
}

    .qs-holder {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        z-index: 5;
    }

        .qs-form form {
            display: flex;
            flex-wrap: wrap;
            font-size: 0;
        }

            .qs-col1 {
                width: 29.286%;
                margin-top: 17px;
            }

                .qs-col2 {
                    width: 70.714%;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: flex-end;
                }

                    .qs-field-col1 {
                        width: 78.788%;
                    }

                    .qs-field-col1-inner {
                        display: flex;
                        flex-wrap: wrap;
                        margin: 0 -14px;
                    }

                        .qs-field-col2 {
                            width: 21.212%;
                        }

                            .short-form {
                                width: 25%;
                            }

                                .long-form {
                                    width: 50%;
                                    margin-bottom: 17px;
                                }

                                    .qs-form select, .qs-form input,
                                    .qs-form button.btn.dropdown-toggle.btn-default {
                                        border-radius: 0;
                                        color: #545454;
                                        font-size: 12px;
                                        font-weight: 500;
                                        letter-spacing: 1px;
                                        text-transform: uppercase;
                                        width: 100%;
                                        height: 50px;
                                        text-align: left;
                                        resize: none;
                                        border: none;
                                        border-bottom: 1px solid #838383;
                                        padding: 0 15px 0 27px;
                                        background: url(images/qs-arrow.png) no-repeat scroll right 1px center;
                                        -webkit-appearance: none;
                                        -moz-appearance: none;
                                    }

                                        .qs-form select option{
                                            color: #000;
                                        }

                                            .qs-form select::-ms-expand{
                                                display: none;
                                            }

                                                .qs-form .qs-field {
                                                    display: inline-block;
                                                    vertical-align: bottom;
                                                    position: relative;
                                                }

                                                    .qs-field {
                                                        padding: 0 14px;
                                                    }

                                                        .btn-form.qs-field.qsbtn1 input {
                                                            font-size: 0;
                                                            width: 100%;
                                                            height: 103px;
                                                            background: var(--primary);
                                                            background: rgb(105,75,44);
                                                            background: linear-gradient(0deg, 
                                                                rgba(105,75,44,1) 0, 
                                                                rgba(204,147,95,1) 38%, 
                                                                rgba(227,166,113,1) 70%, 
                                                                rgba(156,109,61,1) 100%);
                                                            -webkit-transition: all 0.4s ease-in-out;
                                                            -moz-transition: all 0.4s ease-in-out;
                                                            -o-transition: all 0.4s ease-in-out;
                                                            transition: all 0.4s ease-in-out;
                                                        }

                                                            .btn-form.qs-field.qsbtn1:hover em {
                                                                opacity: .7;
                                                            }

                                                                .btn-form.qs-field.qsbtn2 a {
                                                                    font-size: 40px;
                                                                    color: var(--primary);
                                                                    width: 100%;
                                                                    height: 103px;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    position: relative;
                                                                    -webkit-transition: all 0.4s ease-in-out;
                                                                    -moz-transition: all 0.4s ease-in-out;
                                                                    -o-transition: all 0.4s ease-in-out;
                                                                    transition: all 0.4s ease-in-out;
                                                                }

                                                            .btn-form.qs-field.qsbtn2 a:hover {
                                                                opacity: .7;
                                                            }

                                                        .qs-form p {
                                                            font-size: 12px;
                                                            font-weight: 300;
                                                            text-align: right;
                                                            letter-spacing: 0.7px;
                                                            padding: 20px 14px 0;
                                                            color: #000;
                                                        }

                                                    .short-form.qs-field:nth-child(4), .short-form.qs-field:nth-child(6) {
                                                        padding-left: 6px;
                                                    }

                                                .short-form.qs-field:nth-child(3), .short-form.qs-field:nth-child(5) {
                                                    padding-right: 6px;
                                                }

                                            .qs-field-col1 .qs-field > em {
                                                font-size: 16px;
                                                color: var(--primary);
                                                position: absolute;
                                                top: 0;
                                                bottom: 0;
                                                margin: auto;
                                                height: 19px;
                                            }

                                        .btn-form.qs-field.qsbtn1 {
                                            padding: 0 0 0 39px;
                                            width: 67.63%;
                                        }

                                    .btn-form.qs-field.qsbtn2 {
                                        width: 32.37%;
                                    }

                                .btn-form.qs-field.qsbtn1 em {
                                    font-size: 36px;
                                    color: #fff;
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    width: 103px;
                                    height: 103px;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    pointer-events: none;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                            .qs-col1 .global-title strong {
                                font-size: 56px;
                                letter-spacing: 2.7px;
                            }

                        section.quick-search-area::before {
                            content: '';
                            position: absolute;
                            top: 0;
                            right: 0;
                            width: 76.625%;
                            height: 100%;
                            background: url(images/qs-bg.png) no-repeat;
                            background-size: cover;
                            background-position: center;
                            opacity: .14;
                            filter: grayscale(1);
                            pointer-events: none;
                        }


/*welcome section*/
section.welcome-area {
    position: relative;
    padding: 0 0 100px;
    z-index: 1;
}

    section.welcome-area .container {
        position: relative;
        z-index: 5;
    }

        section.welcome-area .row {
            display: flex;
            align-items: end;
        }

        section.welcome-area .row::before {
            display: none;
        }

        .wc-photo {
            max-width: 535px;
        }

            .wc-col1 {
                margin-left: -162px;
            }

            .wc-col2 {
                margin-top: 97px;
                margin-left: -28px;
                margin-right: -130px;
            }

                .wc-head {
                    margin: 0 0 10px;
                }

                    .wc-head .global-title strong {
                        font-size: 100px;
                        margin-left: -5px;
                        letter-spacing: 4px;
                        line-height: .8;
                        margin-top: 16px;
                    }

                        /*.wc-position {
                            font-size: 22px;
                            font-weight: 500;
                            font-family: var(--font-family-title);
                            text-transform: uppercase;
                            color: #4a4a4a;
                            letter-spacing: 9.5px;
                            margin: 15px 0 21px;
                        }*/

                            .wc-expi {
                                font-size: 20px;
                                font-weight: 700;
                                font-family: var(--font-family-title);
                                color: #4a4a4a;
                                text-transform: uppercase;
                                letter-spacing: 8.5px;
                                line-height: 1.2;
                                margin: 19px 0 28px;
                                max-width: 466px;
                            }

                                .wc-text p {
                                    font-size: 16px;
                                    font-weight: 400;
                                    color: #535353;
                                    line-height: 1.8;
                                    display: block;
                                    margin: 0 0 25px;
                                }

                                    .wc-btn {
                                        padding: 26px 0 0;
                                    }

                                        section.welcome-area .indicator {
                                            top: 50px;
                                            left: auto;
                                            right: -119px;
                                        }

                                            section.welcome-area::before {
                                                content: '';
                                                position: absolute;
                                                top: 0;
                                                right: 0;
                                                width: 80.5%;
                                                height: 100%;
                                                background: url(images/wc-bg.jpg) no-repeat;
                                                background-size: cover;
                                                background-position: center;
                                                filter: grayscale(1);
                                                opacity: .08;
                                                pointer-events: none;
                                            }

                                                section.welcome-area::after {
                                                    content: '';
                                                    position: absolute;
                                                    top: 0;
                                                    right: 0;
                                                    width: 80.5%;
                                                    min-height: 380px;
                                                    background: linear-gradient(to bottom, 
                                                        rgba(255,255,255,1) 0%,
                                                        rgba(255,255,255,0) 100%);
                                                    pointer-events: none;
                                                }

/*featured communities section*/
section.featured-communities-area {
    position: relative;
    padding: 113px 15px 74px;
    background: #000;
}

    section#content-communities::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: -moz-linear-gradient( 80deg, rgb(105,75,44) 0%, rgb(204,147,95) 38%, rgb(227,166,113) 68%, rgb(156,109,61) 100%);
        background-image: -webkit-linear-gradient( 80deg, rgb(105,75,44) 0%, rgb(204,147,95) 38%, rgb(227,166,113) 68%, rgb(156,109,61) 100%);
        background-image: -ms-linear-gradient( 80deg, rgb(105,75,44) 0%, rgb(204,147,95) 38%, rgb(227,166,113) 68%, rgb(156,109,61) 100%);
        z-index: 3;
        opacity: .8;
        pointer-events: none;
    }

    section.featured-communities-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/fc-bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        pointer-events: none;
        filter: grayscale(1);
    }

        .fc-holder {
            position: relative;
            z-index: 5;
            max-width: 1418px;
            margin: 0 auto;
        }

            .fc-head {
                position: relative;
                margin: 0 0 45px;
            }

            .fc-head .global-title,
            .fc-head .global-title strong {
                color: #fff;
                text-align: center;
            }

            .fc-head .global-title span {
                background: #fff;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

                .fc-list-holder {
                    /*display: flex;
                    flex-wrap: wrap;
                    justify-content: center;*/
                    position: relative;
                }

                    .fc-list {
                        /*width: 25%;*/
                        padding: 0 9px;
                    }

                        .fc-list a {
                            position: relative;
                            display: block;
                        }

                            .fc-photo.global-photo::after {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                width: 100%;
                                height: 30%;
                                background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.51) 100%);
                                pointer-events: none;
                            }

                                .fc-photo.global-photo::before {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    border: 7px solid #fff;
                                    z-index: 1;
                                    opacity: 0;
                                    pointer-events: none;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                                    .fc-list a:hover .fc-photo.global-photo::before {
                                        opacity: 1;
                                    }

                                    .fc-photo.global-photo canvas {
                                        background: #000;
                                    }

                                    .fc-list a:hover .fc-photo.global-photo img {
                                        filter: grayscale(1);
                                        opacity: .67;
                                    }

                                        .fc-content {
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            width: 100%;
                                            padding: 23px 15px;
                                            text-align: center;
                                            color: #fff;
                                        }

                                            .fc-label {
                                                font-size: 22px;
                                                font-weight: 700;
                                                font-family: var(--font-family-title);
                                                text-transform: uppercase;
                                                letter-spacing: 2px;
                                            }

                                                .fc-content::after {
                                                    content: '';
                                                    position: absolute;
                                                    bottom: -15px;
                                                    left: 0;
                                                    right: 0;
                                                    margin: auto;
                                                    width: 1px;
                                                    height: 30px;
                                                    background: #fff;
                                                }

                                                    .fc-btn a {
                                                        max-width: 286px;
                                                        margin: 46px auto 0;
                                                        border: 1px solid #fff;
                                                        color: #fff;
                                                    }

                                                    .fc-btn a:hover {
                                                        background: var(--primary);
                                                    }

                                                        .fc-btn a::after {
                                                            background: #fff;
                                                        }

                                                        .fc-btn a::before {
                                                            display: none;
                                                        }

                                                            .fc-hover {
                                                                position: absolute;
                                                                top: 0;
                                                                left: 0;
                                                                width: 100%;
                                                                height: 100%;
                                                                display: flex;
                                                                align-items: center;
                                                                justify-content: center;
                                                                opacity: 0;
                                                                pointer-events: none;
                                                                -webkit-transition: all 0.4s ease-in-out;
                                                                -moz-transition: all 0.4s ease-in-out;
                                                                -o-transition: all 0.4s ease-in-out;
                                                                transition: all 0.4s ease-in-out;
                                                            }

                                                                .fc-list a:hover .fc-hover {
                                                                    opacity: 1;
                                                                }

                                                            .fc-head .indicator {
                                                                right: 0;
                                                                top: -85px;
                                                                text-align: center;
                                                                color: unset;
                                                                text-shadow: #fff 1px 0px 0px, 
                                                                #fff 0.540302px 0.841471px 0px, 
                                                                #fff -0.416147px 0.909297px 0px, 
                                                                #fff -0.989992px 0.14112px 0px, 
                                                                #fff -0.653644px -0.756802px 0px, 
                                                                #fff 0.283662px -0.958924px 0px, 
                                                                #fff 0.96017px -0.279415px 0px;
                                                                opacity: .05;
                                                            }

                                                        .fc-view.global-btn {
                                                            max-width: 154px;
                                                            color: #fff;
                                                            z-index: 2;
                                                        }

                                                    .fc-view.global-btn::before {
                                                        opacity: 1;
                                                        z-index: -1;
                                                    }

                                                .fc-slick .slick-slide > div > div{
                                                    display: block !important;
                                                }
                                                
                                            .fc-slick:not(.slick-initialize) > div:not(:first-child){
                                                display:none;
                                            }

                                        .fc-arrow.global-arrow {
                                            position: absolute;
                                            top: -9px;
                                            left: 0;
                                            width: 100%;
                                            height: 100%;
                                            display: flex;
                                            align-items: center;
                                            justify-content: space-between;
                                            pointer-events: none;
                                        }

                                    button.fc-prev {
                                        margin-left: -35px;
                                    }

                                button.fc-next {
                                    margin-right: -35px;
                                }

                            .fc-list-holder .slick-list {
                                padding-bottom: 15px;
                            }

/*cta section*/
section.cta-area {
    position: relative;
    padding: 118px 0;
}

    section.cta-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: url(images/cta-bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        filter: grayscale(1);
        opacity: .15;
    }

        .cta-holder {
            position: relative;
            z-index: 5;
        }

            .cta-inner {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

                .cta-list {
                    width: 25%;
                }

                    .cta-list a {
                        position: relative;
                        display: block;
                    }

                        .cta-photo.global-photo::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            height: 50%;
                            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.73) 100%);
                            pointer-events: none;
                        }

                            .cta-photo.global-photo img {
                                filter: grayscale(1);
                            }

                                .cta-list a:hover .cta-photo.global-photo img {
                                    filter: unset;
                                }

                                    .cta-content {
                                        position: absolute;
                                        bottom: 0;
                                        left: 0;
                                        width: 100%;
                                        pointer-events: none;
                                    }

                                        .cta-label {
                                            font-size: 38px;
                                            font-weight: 700;
                                            font-family: var(--font-family-title);
                                            text-transform: uppercase;
                                            color: #fff;
                                            letter-spacing: 1px;
                                            transform: rotate(-90deg) translate(100%, 100%);
                                            position: absolute;
                                            bottom: -60px;
                                            right: 0;
                                            display: block;
                                            width: 167px;
                                            white-space: nowrap;
                                            z-index: 5;
                                        }

                                            .cta-accent {
                                                position: absolute;
                                                top: 110px;
                                                right: -30px;
                                                transform: rotate(-90deg) translate(100%, 100%);
                                                font-size: 120px;
                                                font-weight: 700;
                                                font-family: var(--font-family-title);
                                                white-space: nowrap;
                                                text-transform: uppercase;
                                                width: 395px;
                                                color: transparent;
                                                -webkit-text-stroke-width: 1px;
                                                -webkit-text-stroke-color: white;
                                                opacity: .16;
                                            }

/*testimonials section*/
section.testimonials-area {
    position: relative;
    padding: 132px 15px 111px;
}

    section.testimonials-area::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 50%;
        background: url(/wp-content/uploads/2024/05/tm-bg1.jpg) no-repeat;
        background-size: contain;
        background-attachment: fixed;
        background-position: left;
        pointer-events: none;
    }

        section.testimonials-area::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url(/wp-content/uploads/2024/05/tm-bg2.jpg) no-repeat;
            background-size: inherit;
            background-attachment: fixed;
            background-position: right;
            pointer-events: none;
        }

            .tm-holder {
                position: relative;
                z-index: 5;
                max-width: 1400px;
                margin: 0 auto;
            }

                .tm-head .global-title {
                    display: inline-block;
                    text-align: left;
                }

                    .tm-head {
                        margin: 0 98px 132px 0;
                        text-align: right;
                    }

                        .tm-head .indicator {
                            left: auto;
                            right: 90px;
                            top: -65px;
                        }

                            .tm-list-holder {
                                position: relative;
                                padding: 15px;
                                text-align: center;
                                background: #000;
                                color: #fff;
                            }

                                .tm-qoute {
                                    display: block;
                                    width: 73px;
                                    height: 51px;
                                    margin: 0 auto 35px;
                                    background: url(images/tm-qoute.png) no-repeat;
                                }

                                    .tm-text p {
                                        font-size: 15px;
                                        font-weight: 400;
                                        font-style: italic;
                                        letter-spacing: .4px;
                                        line-height: 1.9;
                                        display: block;
                                        max-width: 1090px;
                                        margin: 0 auto 23px;
                                    }

                                        .tm-text span {
                                            font-size: 15px;
                                            font-weight: 600;
                                            font-family: var(--font-family-title);
                                            letter-spacing: .4px;
                                        }

                                            .tm-btn a {
                                                color: #fff;
                                                border: 1px solid #fff;
                                                margin: 0 auto;
                                            }

                                                .tm-btn a:hover {
                                                    border: 1px solid var(--primary);
                                                }

                                                    .tm-btn a::after {
                                                        background: #fff;
                                                    }

                                                        .tm-btn {
                                                            padding: 35px 0 0;
                                                        }

                                                            .tm-list-holder {
                                                                position: relative;
                                                                padding: 90px 15px 95px;
                                                                text-align: center;
                                                                background: #000;
                                                                color: #fff;
                                                            }

                                                                .tm-arrow {
                                                                    position: absolute;
                                                                    top: -21px;
                                                                    left: 0;
                                                                    right: 0;
                                                                    margin: auto;
                                                                    width: 91%;
                                                                    height: 100%;
                                                                    display: flex;
                                                                    align-items: center;
                                                                    justify-content: space-between;
                                                                    pointer-events: none;
                                                                }

                                                            .tm-arrow button {
                                                                background: transparent;
                                                                border: none;
                                                                font-size: 24px;
                                                                color: #fff;
                                                                pointer-events: auto;
                                                                -webkit-transition: all 0.4s ease-in-out;
                                                                -moz-transition: all 0.4s ease-in-out;
                                                                -o-transition: all 0.4s ease-in-out;
                                                                transition: all 0.4s ease-in-out;
                                                            }

                                                        .tm-arrow button:hover {
                                                            opacity: .7;
                                                        }

                                                    .tm-slick .slick-slide > div > div{
                                                        display: block !important;
                                                    }
                                                    
                                                .tm-slick:not(.slick-initialize) > div:not(:first-child){
                                                    display:none;
                                                }

/*get in touch section*/
section.get-in-touch-area {
    position: relative;
    padding: 182px 0 100px;
}

    section.get-in-touch-area .container {
        position: relative;
        z-index: 5;
    }

        .gt-head {
            text-align: center;
            margin-bottom: 72px;
        }

        .gt-head .global-title {
            text-align: center;
        }

        .gt-head .indicator {
            left: auto;
            right: 0;
            top: -85px;
            text-align: center;
            width: 100%;
        }

        .ip-container .gt-head .indicator {
            display: none !important;
        }

            .gt-form form {
                position: relative;
                margin: 0 -8px;
                font-size: 0;
                z-index: 1;
            }

                .gt-fields input, 
                .gt-fields textarea {
                    font-size: 14px;
                    font-weight: 300;
                    letter-spacing: .7px;
                    background: var(--primary);
                    width: 100%;
                    height: 50px;
                    color: #fff;
                    padding: 0 20px;
                    border-radius: 0;
                    resize: none;
                    border: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                }

                        .gt-form textarea {
                            padding-top: 17px;
                            height: 164px;
                            padding-right: 50px;
                        }

                            .gt-fields.gt-textarea {
                                width: 100%;
                                margin-bottom: 0;
                                position: relative;
                            }

                                .gt-fields {
                                    position: relative;
                                    width: 50%;
                                    padding: 0 8px;
                                    display: inline-block;
                                    vertical-align: top;
                                    margin-bottom: 16px;
                                }

                                .gt-fields:nth-child(4) {
                                    width: 100%;
                                }

                                    .gt-form div.wpcf7 .ajax-loader {
                                        display: block;
                                        position: absolute;
                                        right: 0;
                                        left: 0;
                                        margin: auto;
                                        bottom: -18px;
                                    }

                                        .gt-form span.wpcf7-not-valid-tip {
                                            font-size: 14px;
                                        }

                                            .gt-form span.wpcf7-form-control-wrap {
                                                display: block;
                                            }

                                                .gt-form div.wpcf7-response-output {
                                                    margin: auto;
                                                    position: absolute;
                                                    width: calc(100% - 16px);
                                                    font-size: 14px;
                                                    color: #fff;
                                                    text-align: center;
                                                    left: 0;
                                                    right: 0;
                                                    margin-top: 5px;
                                                }
                                                    .gt-form .wpcf7-spinner {
                                                        position: absolute;
                                                        bottom: 0;
                                                        left: 0;
                                                        right: 0;
                                                        margin: auto;
                                                    }

                                                        .gt-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
                                                            position: absolute;
                                                            top: auto;
                                                            bottom: 5px;
                                                            left: 0;
                                                            z-index: 100;
                                                            border: 1px solid #ff0000;
                                                            background: #fff;
                                                            padding: .2em .8em;
                                                            width: auto;
                                                        }

                                                        .gt-fields.gt-btn {
                                                            position: absolute;
                                                            bottom: 20px;
                                                            right: 25px;
                                                            width: 30px;
                                                            height: 30px;
                                                            padding: 0;
                                                            margin: 0;
                                                        }

                                                    .gt-fields.gt-btn input {
                                                        border: none;
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        width: 100%;
                                                        height: 100%;
                                                        font-size: 0;
                                                        padding: 0;
                                                    }

                                                .gt-fields.gt-btn .ai-font-paper-airplane-outline {
                                                    font-size: 30px;
                                                    /*color: #fff;*/
                                                    background: rgb(105,75,44);
                                                    background: linear-gradient(90deg, 
                                                    rgba(105,75,44,1) 0%, 
                                                    rgba(204,147,95,1) 38%, 
                                                    rgba(227,166,113,1) 68%, 
                                                    rgba(156,109,61,1) 100%);
                                                    -webkit-background-clip: text;
                                                    -webkit-text-fill-color: transparent;
                                                    z-index: 1;
                                                    pointer-events: none;
                                                    position: absolute;
                                                    top: 0;
                                                    left: 0;
                                                    width: 100%;
                                                    height: 100%;
                                                    -webkit-transition: all 0.4s ease-in-out;
                                                    -moz-transition: all 0.4s ease-in-out;
                                                    -o-transition: all 0.4s ease-in-out;
                                                    transition: all 0.4s ease-in-out;
                                                }

                                            .gt-fields.gt-btn:hover .ai-font-paper-airplane-outline {
                                                opacity: .7;
                                            }
                                                            
                                        .gt-form .wpcf7-spinner {
                                            position: absolute;
                                            bottom: 0;
                                            left: 0;
                                            right: 0;
                                            margin: auto;
                                        }

/*radio button*/
.gt-fields.gt-check {
    width: 100%;
    margin-bottom: 30px;
}

    .gt-fields.gt-check > span > span {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        .gt-fields.gt-check > span > span > span {
            padding: 0 40px;
            position: relative;
        }

            .gt-fields.gt-check > span > span > span::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 1px;
                height: 100%;
                background: var(--primary);
            }

                .gt-fields.gt-check > span > span > span:last-child::after {
                    display: none;
                }

            .gt-form .gt-fields.gt-check span.wpcf7-list-item label span {
                position: relative;
                cursor: pointer;
                font-size: 23px;
                font-weight: 700;
                font-family: var(--font-family-title);
                letter-spacing: .7px;
                text-transform: uppercase;
                color: #d2d0d0;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .gt-fields.gt-check span.wpcf7-list-item-label {
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }

                    .gt-form .gt-fields.gt-check span.wpcf7-list-item label input {
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        height: 0;
                        width: 0;
                        background: transparent;
                        padding: 0;
                    }

                        .gt-form .gt-fields.gt-check span.wpcf7-list-item label:hover input ~ span.wpcf7-list-item-label {
                            /*color: var(--primary);*/
                            background: rgb(105,75,44);
                            background: linear-gradient(90deg, 
                            rgba(105,75,44,1) 0%, 
                            rgba(204,147,95,1) 38%, 
                            rgba(227,166,113,1) 68%, 
                            rgba(156,109,61,1) 100%);
                            -webkit-background-clip: text;
                            -webkit-text-fill-color: transparent;
                        }

                                .gt-form .gt-fields.gt-check span.wpcf7-list-item label input:checked ~ span.wpcf7-list-item-label {
                                    /*color: var(--primary);*/
                                    background: rgb(105,75,44);
                                    background: linear-gradient(90deg, 
                                    rgba(105,75,44,1) 0%, 
                                    rgba(204,147,95,1) 38%, 
                                    rgba(227,166,113,1) 68%, 
                                    rgba(156,109,61,1) 100%);
                                    -webkit-background-clip: text;
                                    -webkit-text-fill-color: transparent;
                                }

                                    .gt-check-title {
                                        font-size: 14px;
                                        font-weight: 500;
                                        font-family: var(--font-family-title);
                                        color: var(--primary);
                                        letter-spacing: 6px;
                                        text-transform: uppercase;
                                        text-align: center;
                                        padding: 0 0 15px;
                                    }

/*footer*/
footer.main-footer {
    position: relative;
    padding: 16px 0 36px;
}

    footer.main-footer .container {
        position: relative;
        z-index: 5;
    }

        .ftr-logo a {
            display: block;
            max-width: 350px;
            margin: 0 auto 16px;
        }

            .ftr-broker span {
                display: block;
                font-size: 14px;
                font-weight: 400;
                letter-spacing: 0.6px;
                color: #fff;
                text-transform: uppercase;
                text-align: center;
                margin: 0 0 7px;
            }

                .ftr-broker span:first-child {
                    font-size: 18px;
                    font-weight: 700;
                }

                    .ftr-contact-smi {
                        margin: 56px 0;
                        text-align: center;
                    }

                    .ftr-contact-smi > div {
                        display: inline-block;
                    }

                        .ftr-contact span {
                            display: inline-block;
                            padding: 0 25px;
                            font-size: 15px;
                            font-weight: 400;
                            letter-spacing: 0.2px;
                            color: #fff;
                        }

                            .ftr-contact span em {
                                margin-right: 12px;
                            }

                                .ftr-contact a {
                                    color: #fff;
                                    display: inline-block;
                                    position: relative;
                                    -webkit-transition: all 0.3s ease-in-out;
                                    -moz-transition: all 0.3s ease-in-out;
                                    -o-transition: all 0.3s ease-in-out;
                                    transition: all 0.3s ease-in-out;
                                }

                            .ftr-contact a:hover {
                                opacity: .7;
                            }

                        span.ftr-email em {
                            font-size: 11px;
                        }

                .ftr-smi {
                    font-size: 0;
                    padding-left: 10px;
                }

            .ftr-smi span {
                display: inline-block;
                padding: 0 15px;
            }

        .ftr-smi a {
            font-size: 19px;
            color: #fff;
            display: block;
            position: relative;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

    .ftr-smi a:hover {
        opacity: .7;
    }
                                                        

        ul.footernav {
            font-size: 0;
            text-align: center;
        }

            ul.footernav > li {
                display: inline-block;
                vertical-align: top;
                padding: 0 25px;
            }

                ul.footernav > li > a {
                    font-size: 17px;
                    font-weight: 400;
                    color: #fff;
                    letter-spacing: .7px;
                    text-transform: uppercase;
                    display: inline-block;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                }

                    ul.footernav > li > a:hover {
                        opacity: .7;
                    }

                        .ftr-disclaimer p {
                            font-size: 13px;
                            font-weight: 300;
                            color: #fff;
                            letter-spacing: .1px;
                            line-height: 1.7;
                            margin: 50px 0 10px;
                        }

                            .ftr-disclaimer a {
                                color: #fff;
                                display: inline-block;
                                position: relative;
                                -webkit-transition: all 0.3s ease-in-out;
                                -moz-transition: all 0.3s ease-in-out;
                                -o-transition: all 0.3s ease-in-out;
                                transition: all 0.3s ease-in-out;
                            }

                                .ftr-disclaimer a:hover {
                                    opacity: .7;
                                }

/*copyright & mls*/
.footer-copyright-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright, .footer-copyright a {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    letter-spacing: .2px;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-copyright span {
    text-transform: uppercase
}

    .footer-copyright a:hover{
        opacity: .7;
    }

        .footer-copyright a[href="https://www.agentimage.com"]{
            text-decoration: underline !important;
            color: #fff;
        }   

            .footer-copyright a[href="https://www.agentimage.com"]:hover{
                opacity: .7;
            }

                .mls {
                    font-size: 25px;
                    color: #fff;
                    text-align: center;
                }

                    .mls em {
                        margin: 0 5px;
                    }  

/*footer bg*/
.footer-holder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/2024/05/ftr-bg-new.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    filter: grayscale(1);
}

    .footer-holder::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, 
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,1) 1%,
            rgba(255,255,255,1) 60%,
            rgba(255,255,255,0) 100%);
        z-index: 4;
        pointer-events: none;
    }

        .footer-holder {
            position: relative;
        }

        .ftr-gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            opacity: .8;
            pointer-events: none;
            background: rgb(105, 75, 44);
            background: linear-gradient(0deg, rgba(105, 75, 44, 1) 0%, rgba(204, 147, 95, 1) 38%, rgba(227, 166, 113, 1) 68%, rgba(156, 109, 61, 1) 100%);
        }

            .ftr-gradient-bg::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 60%;
                background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 65%,rgba(0,0,0,0.85) 100%);
            }

/*side navigation*/
div#scroll-down > ul {
    display: none;
}

.nav-active-section-content-qs .fixed-smi a,
.nav-active-section-content-welcome .fixed-smi a,
.nav-active-section-content-testimonials .fixed-smi a,
.nav-active-section-content-footer .fixed-smi a {
    color: var(--primary);
    text-shadow: none;
}

.nav-active-section-content-qs .fsmi-divider,
.nav-active-section-content-welcome .fsmi-divider,
.nav-active-section-content-testimonials .fsmi-divider,
.nav-active-section-content-footer .fsmi-divider {
    background: var(--primary);
}

.nav-active-section-content-qs .fsmi-follow,
.nav-active-section-content-welcome .fsmi-follow,
.nav-active-section-content-testimonials .fsmi-follow,
.nav-active-section-content-footer .fsmi-follow {
    color: var(--primary);
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner{
    position: relative;
    width: 100%;
}
    .ip-banner::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgba(0,0,0,.6);
    }
    .ip-banner canvas{
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: 250px;
        background-color: var(--dark);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

/** Adjust width of content columns **/
#content-sidebar #content{ width: 77.08%; }
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{ width: 20.83%; }

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}
    .page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
        margin-left: -15px;
        margin-right: -15px;
    }

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {

}

.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}

.qs-form ul.dropdown-menu.inner {
    max-height: 250px !important;
}

#listings-results .listings-top {
    padding-right: 30px !important;
}

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100% !important;
    padding: 0 !important;
}
.aios-custom-ihomefinder-details-template nav.header-nav ul#nav > li > a {
    text-shadow: 1px 1px 2px black, 0 0 1em #040404, 0 0 0.2em #000000;
}
.aios-custom-ihomefinder-details-template .show-fixed nav.header-nav ul#nav > li > a {
    text-shadow: none;
}
.listings-printable-header span{
	display:none !important;
}
body #listings-details .listings-link-navigation-main {
    color: #fff !important;
}
.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

.ihf-details-template .side-fixed-contact {
    display: none;
}
body #ai-modern-contact .ai-modern-contact-map:before,
body #ai-modern-contact .ai-modern-contact-photo span:before {
    background: rgb(105,75,44);
    background: linear-gradient(0deg, rgba(105,75,44,1) 0%, rgba(204,147,95,1) 38%, rgba(227,166,113,1) 68%, rgba(156,109,61,1) 100%);
}

body #ai-modern-contact .ai-modern-contact-title strong,
body #ai-modern-contact .ai-modern-contact-form-title strong {
    display: inline-block;
    background: rgb(105, 75, 44);
    background: linear-gradient(90deg, rgba(105, 75, 44, 1) 0%, rgba(204, 147, 95, 1) 38%, rgba(227, 166, 113, 1) 68%, rgba(156, 109, 61, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Optin Language */

.site-optin {
    padding: 15px 0;
}

.site-optin .wpcf7-list-item {
    display: block;
    margin: 0;
    width: 100%;
    position: relative;
    font-size: 13px;
    line-height: 1.8;
    color: #000;
}

.site-optin .wpcf7-list-item label span {
    font-size: inherit;
    line-height: inherit;
}

.site-optin .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-optin .wpcf7-list-item label a{
    -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;
}

.site-optin .wpcf7-list-item label a:hover{
    opacity: 0.7;
    text-decoration: none;
}

.site-optin .wpcf7-list-item label input {
    width: 13px;
    height: 13px;
    margin: 5px 0;
}

    /* Adjustments */

    .gt-form .site-optin{
        padding-left: 8px;
        padding-right: 8px;
    }

    .gt-form .site-optin .wpcf7-list-item{
        font-size: 14px;
        font-weight: 300;
        letter-spacing: .7px;
        color: #fff;
    }

    .gt-form .site-optin .wpcf7-list-item label a:hover{
        color: #fff;
    }

    .page-id-16 #ai-modern-contact .ai-modern-contact-form-field.lg{
        position: relative;
    }

    .ipmk-hv-form.gt-form .site-optin .wpcf7-list-item {
        color: #000;
    }

    .ipmk-hv-form.gt-form .site-optin .wpcf7-list-item label a:hover{
        color: #23527c;
    }

    /* Adjustments */
/* Optin Language */


.grecaptcha-badge {
   z-index: 99999 !important; 
   bottom: 80px !important;
}

.get-in-touch-area .global-title {
	font-size: 20px;
  letter-spacing: 7px;
}

.hdr-logo img.fixed {
	display: none;
}
.show-fixed .hdr-logo img.default {
	display: none;
}
.show-fixed .hdr-logo img.fixed {
	display: block;
}

.page-id-16 #ai-modern-contact .ai-modern-contact-title span {
		font-size: 23px;
	}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */
