/*
Theme Name: Tushar Vakhariya
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.9
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. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css
  
*/


/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/


/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width:100%;
    min-width:170px;
    text-align: center;
    left: -150%;
    right: -150%;
    margin: auto;
    padding-top: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: 0.35s ease-in-out;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
}
.fixed #nav .sub-menu {
    padding-top: 41px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 18px 10px !important;
    font-weight: 400 !important;
}
#nav .sub-menu a:hover {
    background: transparent;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: calc(100% + 1px);
    left: 0;
    top:0;
    padding-top: 0;
}
#nav li:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
#nav .sub-menu li {
    width: 100%;
    margin-top: 1px;
    position: relative;
    background: rgba(0,0,0,0.8);
    transition: 0.35s ease-in-out;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
}
    #nav .sub-menu li:first-child {
        margin-top: 0;
    }
    #nav .sub-menu li:hover {
        background: rgba(0,0,0,1);
    }


/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/

:root{
    --primary-font: 'Gotham';
    --secondary-font: 'Optima';
} 



#main-wrapper {
    overflow: hidden;
    padding: 30px 30px 0;
}


/* Global */

body{
    font-family: var(--primary-font);
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 400;
    background: #FFF;
    color: #383838;
    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; */
}

body.slide-menu-active {
    overflow: hidden;
}

/*SITE BUTTON*/

.site-btn {
    position: relative;
    margin: 22px 0 0;
}
    .site-btn.centered {
        text-align: center;
    }
    .site-btn a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-width: 174px;
        height: 66px;
        background: #000;
        border: 1px solid #000;
        font-size: 13px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        line-height: 1.1;
        padding: 0 25px;
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
    }
        .site-btn a:hover {
            color: #000;
            background: #fff;
        }

/*END OF SITE BUTTON*/

/*SITE TITLE*/

.site-title {
    text-align: center;
}
    .site-title.left-title {
        text-align: left;
    }
    .site-title h1,
    .site-title h2 {
        position: relative;
    }
        .site-title h1 > span,
        .site-title h2 > span {
            display: inline-block;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0.5em;
            line-height: 1;
            color: #777777;
            text-transform: uppercase;
            position: relative;
        }
            .site-title h1 > span:first-child,
            .site-title h2 > span:first-child {
                padding-right: 120px;
            }
                .site-title h1 > span:first-child:before,
                .site-title h2 > span:first-child:before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 0;
                    transform: translateY(-50%);
                    width: 97px;
                    height: 2px;
                    background: #777777;
                }
        .site-title h1 > span:last-child,
        .site-title h2 > span:last-child {
            display: block;
            font-family: var(--secondary-font);
            font-size: 50px;
            letter-spacing: 0.1em;
            line-height: 1;
            color: #000;
            margin: 25px 0 0;
        }
        .site-title h1 > span:last-child {
            font-size: 90px;
        }
        .site-title h1 > span:last-child > span {
            display: block;
            font-size: 50px;
        }


/*END OF SITE TITLE*/

/*HEADER*/

.header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 0 30px;
    font-size: 0;
    letter-spacing: 0;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out; 
}
    .header.fixed {    
        top: 0;
    }
    .header-main {
        position: relative;
        padding: 30px 0;
        transition: 0.5s ease-in-out;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out; 
    }
    .fixed .header-main {
        background: rgba(0,0,0,0.8);
        padding: 21px 0;
    }
    .header-inner {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }
        .header-left {
            width: 420px;
            position: relative;
        }
            .header-logo {
                position: relative;
                display: block;
            }
                .header-logo a {
                    display: inline-block;
                    position: relative;
                }
                .header-logo a img {
                    transition: 0.5s ease-in-out;
                    -webkit-transition: 0.5s ease-in-out;
                    -moz-transition: 0.5s ease-in-out;
                    -o-transition: 0.5s ease-in-out; 
                }
                    .fixed .header-logo a img {
                        max-width: 338px;
                    }
        .header-right {
            width: calc(100% - 420px);
            position: relative;
            text-align: right;
        }
            .header-right .navigation {
                position: relative;
                display: inline-block;
                vertical-align: middle;
                padding-right: 34px;
            }
                .header-right .navigation #nav {
                    position: relative;
                }
                    .header-right .navigation #nav > li {
                        display: inline-block;
                        vertical-align: middle;
                        position: relative;
                        margin-right: 40px;
                    }
                        .header-right .navigation #nav > li:last-child {
                            margin-right: 0;
                        }
                        .header-right .navigation #nav li a {
                            font-size: 14px;
                            letter-spacing: 0.1em;
                            line-height: 1;
                            display: block;
                            position: relative;
                            padding: 0 6px;
                            font-weight: 500;
                            text-transform: uppercase;
                            color: #ffffff;
                            transition: 0.35s ease-in-out;
                            -webkit-transition: 0.35s ease-in-out;
                            -moz-transition: 0.35s ease-in-out;
                            -o-transition: 0.35s ease-in-out;
                        }
                            .header-right .navigation #nav > li > a:before {
                                content: '';
                                position: absolute;
                                bottom: -12px;
                                left: 0;
                                right: 0;
                                margin: auto;
                                width: 0;
                                opacity: 0;
                                height: 2px;
                                background: #fff;
                                transition: 0.35s ease-in-out;
                                -webkit-transition: 0.35s ease-in-out;
                                -moz-transition: 0.35s ease-in-out;
                                -o-transition: 0.35s ease-in-out;
                            }
                                .header-right .navigation #nav > li:hover > a:before {
                                    width: 100%;
                                    opacity: 1;
                                }

            .burger-menu {
                display: inline-block;
                vertical-align: middle;
                padding: 14px;
                border: 1px solid rgba(255,255,255,0.2);
                box-shadow: 0 0 10px 0px rgba(0,0,0,0.3);
                pointer-events: auto;
                cursor: pointer;
                transition: 0.35s ease-in-out;
                -webkit-transition: 0.35s ease-in-out;
                -moz-transition: 0.35s ease-in-out;
                -o-transition: 0.35s ease-in-out;
            }
                .burger-menu > span {
                    display: block;
                    width: 28px;
                    height: 4px;
                    background: #ffffff;
                    transition: 0.35s ease-in-out;
                    -webkit-transition: 0.35s ease-in-out;
                    -moz-transition: 0.35s ease-in-out;
                    -o-transition: 0.35s ease-in-out;
                }
                    .burger-menu > span:nth-child(2) {
                        margin: 5px 0;
                    }
                    .burger-menu:hover {
                        border: 1px solid #ffffff;
                    }

/*END OF HEADER*/

.slide-menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1002;
    font-size: 0;
    letter-spacing: 0;
    overflow-y: scroll;
    opacity: 0;
    transform-origin: center;
    transform: scale(0.9);
    pointer-events: none;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
    .slide-menu-active .slide-menu-wrap {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .slide-menu-main {
        position: relative;
        width: 100%;
        min-height: 100vh;
        padding: 58px 44px 58px;
    }
        .slide-menu-main:before,
        .slide-menu-main:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .slide-menu-main:before {
            background-image: url('images/slide-menu-bg.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            z-index: -2;
        }
        .slide-menu-main:after {
            background: rgba(255,255,255,0.9);
            z-index: -1;
        }
            .slide-menu-inner {
                position: relative;
                padding: 52px 0 0;
            }
                .slide-close {
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 58px;
                    height: 52px;
                    border: 1px solid rgba(0,0,0,0.2);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    pointer-events: none;
                    cursor: pointer;
                    transition: 0.35s ease-in-out;
                    -webkit-transition: 0.35s ease-in-out;
                    -moz-transition: 0.35s ease-in-out;
                    -o-transition: 0.35s ease-in-out;
                }
                    .slide-menu-active .slide-close {
                        pointer-events: auto;
                    }
                    .slide-close:hover {
                        border: 1px solid #000;
                    }
                    .slide-close > div {
                        width: 23px;
                        height: 23px;
                        position: relative;
                        overflow: hidden;
                    }
                        .slide-close > div > span {
                            display: block;
                            width: 26px;
                            height: 5px;
                            background: #000;
                            transform: translateZ(0);
                            transition: 0.35s ease-in-out;
                            -webkit-transition: 0.35s ease-in-out;
                            -moz-transition: 0.35s ease-in-out;
                            -o-transition: 0.35s ease-in-out;
                        }
                            .slide-close > div > span:first-child {
                                transform: rotate(45deg) translate(5px, 7px);
                                opacity: 1;
                            }
                            .slide-close:hover > div > span:first-child {
                                animation: closebtn-r 0.6s linear;
                                animation-fill-mode: forwards;  
                            }
                            .slide-close > div > span:last-child {
                                transform: rotate(-45deg) translate(-4px, 1px);
                            }
                            .slide-close:hover > div > span:last-child {
                                animation: closebtn-l 0.6s linear;
                                animation-fill-mode: forwards;  
                                animation-delay: 0.2s;
                            }
                            @keyframes closebtn-l {
                                0% {
                                    transform: rotate(-45deg) translate(-4px, 1px);
                                }
                                25% {
                                    transform: rotate(-45deg) translate(-33px, 1px);
                                    opacity: 0;
                                }
                                50% {
                                    transform: rotate(45deg) translate(70px, 1px);
                                    opacity: 0;
                                }
                                100% {
                                    transform: rotate(-45deg) translate(-4px, 1px);
                                    opacity: 1;
                                }
                            }
                            @keyframes closebtn-r {
                                0% {
                                    transform: rotate(45deg) translate(5px, 7px);
                                }
                                25% {
                                    transform: rotate(45deg) translate(33px, 7px);
                                    opacity: 0;
                                }
                                50% {
                                    transform: rotate(-45deg) translate(-70px, 7px);
                                    opacity: 0;
                                }
                                100% {
                                    transform: rotate(45deg) translate(5px, 7px);
                                    opacity: 1;
                                }
                            }
    .slide-nav {
        position: relative;
    }
        .slide-nav #nav2 {
            position: relative;
        }
            .slide-nav #nav2 > li {
                display: inline-block;
                vertical-align: top;
                margin: 20px 0;
            }
                .slide-nav #nav2 > li:nth-child(odd) {
                    width: 59%;
                }
                .slide-nav #nav2 > li:nth-child(even) {
                    width: 41%;
                }
                .slide-nav #nav2 > li > a {
                    font-size: 30px;
                    letter-spacing: 0.1em;
                    line-height: 1;
                    color: #000;
                    text-transform: uppercase;
                    display: block;
                    transition: 0.35s ease-in-out;
                    -webkit-transition: 0.35s ease-in-out;
                    -moz-transition: 0.35s ease-in-out;
                    -o-transition: 0.35s ease-in-out;
                }
                    .slide-nav #nav2 > li:hover > a {
                        text-shadow: 0 0 1px #000;
                    }
                    .slide-nav #nav2 .sub-menu {
                        display: block;
                        padding-top: 22px;
                    }
                        .slide-nav #nav2 .sub-menu > li {
                            display: block;
                            position: relative;
                            margin-top: 11px;
                        }
                            .slide-nav #nav2 .sub-menu > li:first-child {
                                margin-top: 0;
                            }
                            .slide-nav #nav2 .sub-menu .sub-menu {
                                padding-left: 20px;
                                padding-top: 15px;
                            }
                            .slide-nav #nav2 .sub-menu > li a {
                                display: block;
                                font-size: 14px;
                                text-transform: uppercase;
                                letter-spacing: 0.1em;
                                line-height: 1;
                                font-weight: 400;
                                color: #383838;
                                transition: 0.35s ease-in-out;
                                -webkit-transition: 0.35s ease-in-out;
                                -moz-transition: 0.35s ease-in-out;
                                -o-transition: 0.35s ease-in-out;
                            }
                                .slide-nav #nav2 .sub-menu > li:hover > a {
                                    text-shadow: 0 0 1px #383838;
                                    padding-left: 15px;
                                }
    .slide-contact-wrap {
        position: relative;
        display: block;
        /*width: 41%;*/
        width: 49%;
        margin-left: 59%;
        /*margin-top: calc(-106px);*/
        margin-top: calc(-83px);
    }
        .slide-contact {
            display: block;
            position: relative;
            margin-top: 12px;
        }
            .slide-contact:first-child {
                margin-top: 0;
            }
            .slide-contact > span,
            .slide-contact a {
                display: inline-block;
                vertical-align: middle;
                font-size: 15px;
                letter-spacing: 0.1em;
                line-height: 1;
                color: #000;
            }
            .slide-contact a {
                font-weight: 400;
                color: #383838;
                transition: 0.35s ease-in-out;
                -webkit-transition: 0.35s ease-in-out;
                -moz-transition: 0.35s ease-in-out;
                -o-transition: 0.35s ease-in-out;
            }
                .slide-contact a:hover {
                    color: #000;
                    text-shadow: 0 0 1px #000;
                }
            .slide-contact-location a {
                margin-top: 10px;
            }

/*FLOATING SMI*/

.floating-smi-wrap {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 72px;
    font-size: 0;
    letter-spacing: 0;
    z-index: 99;
    text-align: center;
}
    .floating-smi-text {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.2em;
        color: #fff;
        position: relative;
        text-transform: uppercase;
        writing-mode: tb;
        display: inline-block;
        margin-bottom: 25px;
        transition: 0.35s ease-in-out;
        -webkit-transition: 0.35s ease-in-out;
        -moz-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
    }
        .floating-smi-text:before {
            content: '';
            position: absolute;
            bottom: calc(100% + 15px);
            left: 0;
            right: 0;
            margin: auto;
            height: 35px;
            width: 1px;
            background: #ffffff;
            transition: 0.35s ease-in-out;
            -webkit-transition: 0.35s ease-in-out;
            -moz-transition: 0.35s ease-in-out;
            -o-transition: 0.35s ease-in-out;
        }
        .fixed-smi-active .floating-smi-text {
            text-shadow: 0 0 3px #000, 0 0 3px #000;
        }
        .fixed-smi-active .floating-smi-text:before {
            box-shadow: 0 0 3px 0 #000;
        }
    .floating-smi {
        display: block;
        position: relative;
        text-align: center;
    }
        .floating-smi a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.7);
            border-radius: 50%;
            margin-top: 12px;
            transition: 0.35s ease-in-out;
            -webkit-transition: 0.35s ease-in-out;
            -moz-transition: 0.35s ease-in-out;
            -o-transition: 0.35s ease-in-out;
        }   
            .floating-smi a:first-child {
                margin-top: 0;
            }
            .floating-smi a:hover {
                background: #000;
            }
                .floating-smi a i {
                    color: #ffffff;
                    font-size: 14px;
                }


/*END OF FLOATING SMI*/

/*UPPERFOLD*/

.upperfold-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
}
.safari-true .tagline span {
    margin: 0;
}
    .hp-slideshow {
        position: relative;
        width: 100%;
    }
        .hp-slideshow:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: rgba(0,0,0,0.3);
        } 
        .hp-slideshow .cycloneslider-canvas,
        .hp-slideshow .cycloneslider-template-responsive img.cycloneslider-slide-js[width="1"] + canvas {
            min-height: 640px;
        }

    .upperfold-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 2;
    }
        .tagline {
            position: relative;
            font-size: 24px;
            text-transform: uppercase;
            color: #ffffff;
            letter-spacing: 0.3em;
            line-height: 1.1;
        }
            .tagline span {
                display: block;
                font-family: var(--secondary-font);
                font-weight: 500;
                letter-spacing: 0.1em;
                font-size: 90px;
                margin: 10px 0 0;
            }

/*END OF UPPERFOLD*/

/*WELCOME*/

.welcome-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    padding: 90px 0;
}
    .welcome-sec:before,
    .welcome-sec:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        .welcome-sec:before {
            background-image: url(images/welcome-bg.jpg);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -2;
            filter: grayscale(1);
        }
        .mobile .welcome-sec:before,
        .safari-true .welcome-sec:before {
            background-attachment: scroll;
        }
        .welcome-sec:after {
            background: linear-gradient(to bottom,rgba(255,255,255,1) 10%, rgba(255,255,255,0.8) 40%,rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.8) 80%, rgba(255,255,255,1) 90% ,rgba(255,255,255,1));
            z-index: -1;
        }
    .welcome-right {
        position: relative;
        margin-left: 0;
    }
        .welcome-right canvas {
            width: 100%;
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
        }
    .welcome-left {
        position: relative;
        background: #f1f1f1;
        margin: 44px -60px 0 0;
        padding: 81px 98px 72px 96px;
    }
        .welcome-left:before {
            content: '';
            position: absolute;
            bottom: -54px;
            right: 0;
            width: 100%;
            height: 54px;
            background-image: url(images/shadow.png);
            background-size: contain;
            background-position: right top;
            background-repeat: no-repeat;
            z-index: 1;
            opacity: 0.5;
        }
        .welcome-left-inner {
            position: relative;
        }
        .welcome-text {
            position: relative;
            margin: 38px 0 0;
        }
            .welcome-text p {
                font-size: 14px;
                letter-spacing: 0.05em;
                line-height: 1.7;
                font-weight: 400;
                color: #383838;
                margin-top: 20px;
            }
                .welcome-text p:first-child {
                    margin-top: 0;
                }
                .welcome-text p.larger {
                    font-size: 18px;
                    font-weight: 400;
                }
        .welcome-left .site-btn {
            margin: 62px 0 0;
        }

/*END OF WELCOME*/

/*FEATURED LISTINGS*/

.fl-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
}
    .fl-wrap {
        position: relative;
    }
        .fl-img-slide-wrap {
            position: relative;
        }
            .fl-img-slide {
                position: relative;
            }
                .fl-img.slick-slider * {
                    outline: 0;
                }
                .fl-img {
                    position: relative;
                }
                    .fl-img:before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 2;
                        background: rgba(0,0,0,0.5);
                    }
                    .fl-img canvas {
                        width: 100%;
                        min-height: 420px;
                        background-size: cover;
                        background-position: center center;
                        background-repeat: no-repeat;
                    }

.fl-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
}
        .fl-main {
            position: absolute;
            bottom: 65px;
            left: 0;
            width: 100%;
        } 
            .fl-title h2 > span,
            .fl-title h2 > span:last-child {
                color: #ffffff;
            }
                .fl-title h2 > span:first-child:before {
                    background: #ffffff;
                }
            .fl-details-wrap {
                position: relative;
            }
                .fl-details-inner {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: flex-end;
                    margin: 67px 0 0;
                }
                    .fl-details-left {
                        width: calc(100% - 178px);
                    }
                        .fl-details-slide {
                            position: relative;
                        }
                            .fl-details.slick-slider * {
                                outline: 0;
                            }
                            .fl-details-item {
                                position: relative;
                                display: flex !important;
                                align-items: flex-end;
                            }
                                .fl-details-item > div:first-child {
                                    position: relative;
                                    width: calc(100% - 174px);
                                }
                                    .fl-price {
                                        position: relative;
                                        font-family: var(--secondary-font);
                                        letter-spacing: 0.05em;
                                        line-height: 1;
                                        color: #ffffff;
                                        font-style: italic;
                                        font-size: 36px;
                                    }
                                    .fl-address {
                                        position: relative;
                                        font-size: 14px;
                                        line-height: 1.7;
                                        letter-spacing: 0.05em;
                                        color: #ffffff;
                                        margin: 17px 0 0;
                                    }
                                    .fl-info {
                                        position: relative;
                                        margin: 7px 0 0;
                                    }
                                        .fl-info span {
                                            display: inline-block;
                                            vertical-align: middle;
                                            position: relative;
                                            font-size: 14px;
                                            line-height: 1;
                                            letter-spacing: 0.05em;
                                            color: #ffffff;
                                            padding: 0 15px;
                                        }
                                            .fl-info span:first-child {
                                                padding-left: 0;
                                            }
                                            .fl-info span:last-child {
                                                padding-right: 0;
                                            }
                                            .fl-info span:before {
                                                content: '';
                                                position: absolute;
                                                top: 50%;
                                                right: 0;
                                                transform: translateY(-50%);
                                                width: 1px;
                                                height: 13px;
                                                background: #ffffff;
                                            }
                                                .fl-info span:last-child:before {
                                                    display: none;
                                                }
                                .fl-details-item > div:last-child {
                                    position: relative;
                                    width: 174px;
                                }
                    .fl-details-right {
                        width: 178px;
                        text-align: right;
                    }
                        .fl-slide-btn {
                            display: block;
                        }
                            .fl-slide-btn span {
                                display: inline-flex;
                                align-items: center;
                                justify-content: center;
                                width: 66px;
                                height: 66px;
                                background: #000000;
                                font-size: 16px;
                                color: #ffffff;
                                cursor: pointer;
                                pointer-events: auto;
                                border: 1px solid transparent;
                                transition: 0.35s ease-in-out;
                                -webkit-transition: 0.35s ease-in-out;
                                -moz-transition: 0.35s ease-in-out;
                                -o-transition: 0.35s ease-in-out;
                            }
                                .fl-slide-btn span:first-child {
                                    background: rgba(0,0,0,0.5);
                                    margin-right: 7px;
                                }
                                .fl-slide-btn span:hover {
                                    background: #ffffff;
                                    color: #000;
                                    border: 1px solid #000;
                                }

/*END OF FEATURED LISTINGS*/

/*FEATURED COMMUNITIES*/

.fc-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    padding: 80px 0 115px;
}
    .fc-wrap {
        position: relative;
    }
        .fc-inner {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            margin: 72px 0 0;
        }
            .fc-list {
                position: relative;
                width: calc(100% / 3);
            }
                .fc-list a {
                    position: relative;
                    display: block;
                }
                    .fc-item {
                        position: relative;
                    }
                        .fc-img {
                            position: relative;
                        }
                            .fc-img:before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                z-index: 1;
                                background: rgba(0,0,0,0.4);
                                transition: 0.35s ease-in-out;
                                -webkit-transition: 0.35s ease-in-out;
                                -moz-transition: 0.35s ease-in-out;
                                -o-transition: 0.35s ease-in-out;
                            }
                                .fc-list a:hover .fc-img:before {
                                    background: rgba(0,0,0,0.75);
                                }
                            .fc-img canvas {
                                width: 100%;
                                min-height: 370px;
                                background-size: cover;
                                background-position: center center;
                                background-repeat: no-repeat;
                                transition: 0.35s ease-in-out;
                                -webkit-transition: 0.35s ease-in-out;
                                -moz-transition: 0.35s ease-in-out;
                                -o-transition: 0.35s ease-in-out;
                            }
                                .fc-list a:hover .fc-img canvas {
                                    filter: grayscale(1);
                                }
                        .fc-details {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            z-index: 2;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            overflow: hidden;
                            padding: 10px;
                        }
                            .fc-details > div {
                                position: relative;
                                text-align: center;
                                transition: 0.35s ease-in-out;
                                -webkit-transition: 0.35s ease-in-out;
                                -moz-transition: 0.35s ease-in-out;
                                -o-transition: 0.35s ease-in-out;
                                width: 100%;
                            }
                                .fc-name {
                                    font-family: var(--secondary-font);
                                    text-transform: uppercase;
                                    color: #ffffff;
                                    letter-spacing: 0.1em;
                                    line-height: 1;
                                    font-size: 33px;
                                    font-weight: 500;
                                    /*position: absolute;
                                    top: 50%;
                                    transform: translateY(-50%);
                                    left: 0;
                                    right: 0;*/
                                    margin: auto;
                                    transition: 0.35s ease-in-out;
                                    -webkit-transition: 0.35s ease-in-out;
                                    -moz-transition: 0.35s ease-in-out;
                                    -o-transition: 0.35s ease-in-out;
                                }
                                    .fc-list a:hover .fc-name {
                                        /*top: 0;
                                        transform: translateY(-100%);*/
                                    }
                                .fc-text {
                                    position: relative;
                                    width: 100%;
                                    max-width: 375px;
                                    margin: 0 auto;
                                    height: 0;
                                    opacity: 0;
                                    transition: 0.35s ease-in-out;
                                    -webkit-transition: 0.35s ease-in-out;
                                    -moz-transition: 0.35s ease-in-out;
                                    -o-transition: 0.35s ease-in-out;
                                }
                                    .fc-text p {
                                        font-size: 14px;
                                        letter-spacing: 0.04em;
                                        font-weight: 400;
                                        color: #ffffff;
                                        line-height: 1.7;
                                    }
                                .fc-hover-btn {
                                    /*margin: 35px auto 0;*/
                                    display: flex;
                                    width: 174px;
                                    align-items: center;
                                    justify-content: center;
                                    text-align: center;
                                    height: 0;
                                    background: #ffffff;
                                    border: 1px solid #000;
                                    font-size: 13px;
                                    color: #000;
                                    text-transform: uppercase;
                                    letter-spacing: 0.1em;
                                    /*position: absolute;
                                    bottom: 0;
                                    left: 0;
                                    right: 0;*/
                                    margin: auto;
                                    opacity: 0;
                                    transition: 0.35s ease-in-out;
                                    -webkit-transition: 0.35s ease-in-out;
                                    -moz-transition: 0.35s ease-in-out;
                                    -o-transition: 0.35s ease-in-out;
                                }
                                .fc-list a:hover .fc-hover-btn {
                                    /*transform: translateY(calc(100% + 35px));*/
                                    height: 66px;
                                }
                                .fc-list a:hover .fc-text,
                                .fc-list a:hover .fc-hover-btn {
                                    opacity: 1;
                                }
                .fc-wrap .site-btn {
                    margin: 56px 0 0;
                }

            .fc-list a:hover .fc-text {
                margin: 22px auto;
                height: 72px;
            }

/*END OF FEATURED COMMUNITIES*/

/*VIDEO SEC*/

.vid-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    padding: 115px 0;
}
    .vid-sec:before,
    .vid-sec:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        .vid-sec:before {
            background-image: url(images/vid-bg.jpg);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            z-index: -2;
            filter: grayscale(1);
        }
        .vid-sec:after {
            background: rgba(241,241,241,0.9);
            z-index: -1;
        }
    .vid-left {
        position: relative;
        margin: 82px -30px 0 0;
        z-index: 2;
    }
        .vid-wrap {
            position: relative;
        }
            .vid-wrap:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                background: rgba(0,0,0,0.2);
            }
            .vid-wrap:after {
                content: '';
                position: absolute;
                bottom: -54px;
                right: 0;
                width: 100%;
                height: 54px;
                background-image: url(images/shadow.png);
                background-size: contain;
                background-position: right top;
                background-repeat: no-repeat;
                z-index: 1;
                opacity: 0.5;
            }
            .vid-wrap canvas {
                width: 100%;
                background-size: cover;
                background-position: center center;
                background-repeat: no-repeat;
            }
            .vid-wrap .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                width: 79px;
                height: 79px;
                border-radius: 50%;
                background-image: url(images/play-btn.png);
                background-size: contain;
                background-position: center center;
                background-repeat: no-repeat;
                z-index: 2;
                transition: 0.35s ease-in-out;
                -webkit-transition: 0.35s ease-in-out;
                -moz-transition: 0.35s ease-in-out;
                -o-transition: 0.35s ease-in-out;
            }
                .vid-wrap .play-btn:hover {
                    opacity: 0.5;
                }
    .vid-right {
        position: relative;
        background: #000;
        margin: 0 -70px 0 -98px;
        padding: 83px 75px 92px 152px;
        z-index: 1;
    }
        .vid-right-inner {
            position: relative;
        }
            .vid-title h2 > span:last-child {
                color: #ffffff;
            }
            .vid-text {
                position: relative;
                margin: 34px 0 0;
            }
                .vid-text p {
                    font-size: 14px;
                    letter-spacing: 0.05em;
                    line-height: 1.7;
                    color: #ffffff;
                    margin-top: 20px;
                    font-weight: 400;
                }
                    .vid-text p:first-child {
                        margin-top: 0;
                    }
            .vid-smi-wrap {
                position: relative;
                padding: 26px 0 0;
                margin: 28px 0 0;
                border-top: 1px solid #353535;
            }
                .vid-smi-text {
                    position: relative;
                }
                    .vid-smi-text p {
                        font-size: 14px;
                        letter-spacing: 0.05em;
                        line-height: 1.7;
                        color: #ffffff;
                        margin-top: 20px;
                        font-style: italic;
                        font-weight: 400;
                    }
                        .vid-smi-text p:first-child {
                            margin-top: 0;
                        }
                .vid-smi {
                    position: relative;
                    margin: 25px 0 0;
                }
                    .vid-smi a {
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        width: 48px;
                        height: 48px;
                        border-radius: 50%;
                        background: #2e2e2e;
                        margin-left: 12px;
                        transition: 0.35s ease-in-out;
                        -webkit-transition: 0.35s ease-in-out;
                        -moz-transition: 0.35s ease-in-out;
                        -o-transition: 0.35s ease-in-out;
                    }
                        .vid-smi a:first-child {
                            margin-left: 0;
                        }
                        .vid-smi a:hover {
                            background: #ffffff;
                        }
                        .vid-smi a i {
                            font-size: 15px;
                            color: #ffffff;
                            transition: 0.35s ease-in-out;
                            -webkit-transition: 0.35s ease-in-out;
                            -moz-transition: 0.35s ease-in-out;
                            -o-transition: 0.35s ease-in-out;
                        }
                            .vid-smi a:hover i {
                                color: #2e2e2e;
                            }

/*END OF VIDEO SEC*/

/*TESTIMONIALS*/

.testi-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    padding: 112px 0 122px;
}
    .testi-wrap {
        position: relative;
        margin: 70px 0 0;
    }
        .testi-slide {
            position: relative;
            margin: 0 -30px;
        }
            .testi-slide.slick-slider * {
                outline: 0;
            }
            .testi-item {
                text-align: center;
                position: relative;
                padding: 104px 30px 0;
            }
                .testi-item:before {
                    content: '“';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    margin: auto;
                    width: 58px;
                    height: 58px;
                    background: #f1f1f1;
                    border-radius: 50%;
                    font-size: 67px;
                    letter-spacing: 0.05em;
                    color: #000;
                    /* display: flex; */
                    /* align-items: center; */
                    /* justify-content: center; */
                    line-height: 1.3;
                    text-align: center;
                }
                .testi-item p {
                    font-size: 15px;
                    letter-spacing: 0.05em;
                    line-height: 1.6;
                    color: #000000;
                    font-weight: 400;
                    min-height: 264px;
                }
                .testi-item a {
                    margin: 28px 0 0;
                    display: inline-block;
                    font-size: 15px;
                    letter-spacing: 0.05em;
                    line-height: 1;
                    color: #000000;
                    font-weight: 500;
                    transition: 0.35s ease-in-out;
                    -webkit-transition: 0.35s ease-in-out;
                    -moz-transition: 0.35s ease-in-out;
                    -o-transition: 0.35s ease-in-out;
                }
                    .testi-item a:hover {
                        color: #2e2e2e;
                    }
        .testi-btn-wrap {
            margin: 90px 0 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
            .testi-btn-wrap > span {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 66px;
                height: 66px;
                background: #000000;
                font-size: 16px;
                color: #ffffff;
                cursor: pointer;
                pointer-events: auto;
                border: 1px solid transparent;
                transition: 0.35s ease-in-out;
                -webkit-transition: 0.35s ease-in-out;
                -moz-transition: 0.35s ease-in-out;
                -o-transition: 0.35s ease-in-out;
            }
                .testi-btn-wrap > span:first-child {
                    background: rgba(0,0,0,0.5);
                }
                .testi-btn-wrap > span:hover {
                    background: #ffffff;
                    color: #000;
                    border: 1px solid #000;
                }
            .testi-btn-wrap > .site-btn {
                margin: 0 13px 0;
            }

/*END OF TESTIMONIALS*/

/*WORK WITH TUSHAR*/

.wwt-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    padding: 146px 0;
}
    .wwt-sec:before,
    .wwt-sec:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        .wwt-sec:before {
            background-image: url(images/wwt-bg.jpg);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -2;
        }
        .mobile .wwt-sec:before,
        .safari-true .wwt-sec:before {
            background-attachment: scroll;
        }
        .wwt-sec:after {
            background: rgba(0,0,0,0.2);
            z-index: -1;
        }
    .wwt-main {
        position: relative;
        width: 100%;
        max-width: 584px;
        margin: auto;
        background: rgba(0,0,0,0.9);
        padding: 90px 10px 80px
    }
        .wwt-inner {
            position: relative;
        }
            .wwt-title h2 > span:last-child {
                color: #ffffff;
            }
            .wwt-inner .site-title span img {
                margin: 0 auto;
            }
            .wwt-text {
                position: relative;
                margin: 41px auto 0;
                text-align: center;
                width: 100%;
                max-width: 425px;
            }
                .wwt-text p {
                    font-size: 14px;
                    letter-spacing: 0.05em;
                    line-height: 1.7;
                    color: #ffffff;
                    font-weight: 400;
                    margin-top: 20px;
                }
                    .wwt-text p:first-child {
                        margin-top: 0;
                    }
        .wwt-inner .site-btn {
            margin: 45px 0 0;
        }
            .wwt-inner .site-btn a {
                background: #5e5e5e;
                border: 1px solid #5e5e5e;
            }
                .wwt-inner .site-btn a:hover {
                    color: #5e5e5e;
                    background: #ffffff;
                }

/*END OF WORK WITH TUSHAR*/

/*SIGN UP*/

.su-sec {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    padding: 100px 0 112px;
}
    .su-title h2 > span:first-child {
        padding: 0;
    }
        .su-title h2 > span:first-child:before {
            display: none;
        }
    .su-text {
        position: relative;
        margin: 18px auto 0;
        text-align: center;
        width: 100%;
        max-width: 500px;
    }
        .su-text p {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.05em;
            line-height: 1.7;
            color: #383838;
            margin-top: 20px;
        }
            .su-text p:first-child {
                margin-top: 0;
            }
    .su-form {
        position: relative;
        width: 100%;
        max-width: 750px;
        margin: 42px auto 0;
    }
        .su-field {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: 100%;
        }
            .su-field input[type="text"],
            .su-field input[type="email"] {
                width: 100%;
                height: 50px;
                outline: 0;
                border: 0;
                border-bottom: 1px solid rgba(105,105,105,0.9);
                background: transparent;
                font-size: 14px;
                letter-spacing: 0.05em;
                font-weight: 400;
                color: #383838;
                padding: 0 60px 0 0;
                appearance: none;
                -webkit-appearance: none;
                -moz-appearance: none;
                -o-appearance: none;
            }
            .su-submit {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 20px;
                width: 29px;
                height: 29px;
            }
                .su-submit input[type="submit"] {
                    width: 100%;
                    height: 100%;
                    outline: 0;
                    border: 0;
                    background: transparent;
                    font-size: 0;
                }
                    .su-submit input[type="submit"] ~ i {
                        position: absolute;
                        top: 0;
                        right: 0;
                        pointer-events: none;
                        font-size: 29px;
                        color: #000;
                        transition: 0.35s ease-in-out;
                        -webkit-transition: 0.35s ease-in-out;
                        -moz-transition: 0.35s ease-in-out;
                        -o-transition: 0.35s ease-in-out;
                    }
                        .su-submit input[type="submit"]:hover ~ i {
                            color: #5e5e5e;
                        }
        .su-form .wpcf7-form-control-wrap {
            display: block;
        } 
        .su-form span.wpcf7-not-valid-tip {
            font-size: 12px;
        }
        .su-form div.wpcf7 .ajax-loader {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }
        .su-form div.wpcf7-response-output {
            position: absolute;
            bottom: -65px;
            left: 0;
            text-align: center;
            font-size: 12px;
            width: 100%;
            margin: 0;
        }
        .su-form .use-floating-validation-tip .wpcf7-not-valid-tip {
            position: absolute;
            top: 20%;
            width: auto;
        }

/*END OF SIGN UP*/

/*FOOTER*/

.footer {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
    background: #f1f1f1;
    padding: 116px 0 90px;
    margin-bottom: 30px;
}
    .footer-logo {
        position: relative;
        text-align: center;
    }
        .footer-logo a {
            display: inline-block;
        }
            .footer-logo img {

            }
    .footer-contact-details {
        position: relative;
        margin: 94px 0 0;
    }
        .footer-contact-details-inner {
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }
            .footer-contact-item {
                position: relative;
                width: calc(100% / 3);
                text-align: center;
            }
            .footer-contact-item:first-child {
                margin-top: 40px;
            }
                .footer-heading {
                    font-family: var(--secondary-font);
                    font-size: 24px;
                    line-height: 1;
                    letter-spacing: 0.1em;
                    color: #000000;
                    text-transform: uppercase;
                }
                    .footer-contact-info {
                        position: relative;
                        margin: 20px 0 0;
                    }
                        .footer-contact-info span,
                        .footer-contact-info .footer-contact span,
                        .footer-contact-info .footer-contact a {
                            font-size: 14px;
                            letter-spacing: 0.1em;
                            line-height: 1.7;
                            color: #383838;
                            font-weight: 400;
                            transition: 0.35s ease-in-out;
                            -webkit-transition: 0.35s ease-in-out;
                            -moz-transition: 0.35s ease-in-out;
                            -o-transition: 0.35s ease-in-out;
                        }
                            .footer-contact-info span, {
                                display: block;
                            }
                            .footer-contact-info .footer-contact a:hover {
                                text-shadow: 0 0 1px #000;
                                color: #000;
                            }

                        .footer-contact-location .footer-contact:first-child {
                            margin-bottom: 10px;
                        }

                    .footer-contact-location .footer-contact {
                        max-width: 300px;
                        margin: 0 auto;
                    }
    .footer-smi {
        position: relative;
        text-align: center;
        margin: 98px 0 0;
    }
        .footer-smi a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            border: 1px solid #000;
            background: #000;
            margin-left: 24px;
            transition: 0.35s ease-in-out;
            -webkit-transition: 0.35s ease-in-out;
            -moz-transition: 0.35s ease-in-out;
            -o-transition: 0.35s ease-in-out;
        }
            .footer-smi a:first-child {
                margin-left: 0;
            }
            .footer-smi a:hover {
                background: #2a2a2a;
            }
            .footer-smi a i {
                font-size: 17px;
                color: #ffffff;
                transition: 0.35s ease-in-out;
                -webkit-transition: 0.35s ease-in-out;
                -moz-transition: 0.35s ease-in-out;
                -o-transition: 0.35s ease-in-out;
            }
    .footernav {
        text-align: center;
        position: relative;
        margin: 92px 0 0;
    }
        .footernav li {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            margin-left: 34px;
        }
            .footernav li:first-child {
                margin-left: 0;
            }
                .footernav li a {
                    font-size: 14px;
                    text-transform: uppercase;
                    color: #000;
                    letter-spacing: 0.1em;
                    line-height: 1;
                    display: block;
                    transition: 0.35s ease-in-out;
                    -webkit-transition: 0.35s ease-in-out;
                    -moz-transition: 0.35s ease-in-out;
                    -o-transition: 0.35s ease-in-out;
                }
                    .footernav li a:hover {
                        color: #5e5e5e;
                        text-shadow: 0 0 1px #5e5e5e;
                    }
    .copyright {
        text-align: center;
        font-size: 14px;
        color: #000;
        letter-spacing: 0.1em;
        line-height: 1.3;
        margin: 16px 0 0;
    }
        .copyright a {
            transition: 0.35s ease-in-out;
            -webkit-transition: 0.35s ease-in-out;
            -moz-transition: 0.35s ease-in-out;
            -o-transition: 0.35s ease-in-out;
        }
            .copyright a:hover {
                color: #5e5e5e;
                text-shadow: 0 0 1px #5e5e5e;
            }
    .footer-icons {
        text-align: center;
        margin: 26px 0 0;
    }
        .footer-icons i {
            display: inline-block;
            vertical-align: middle;
            font-size: 26px;
            margin: 0 3px;
            color: #000;
        }

/*END OF FOOTER*/
 
/*******************************************************
 *
 * 3. 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: #f9f7f7;
        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: #FFF;
            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 { 
    text-transform: uppercase;
    font-family: var(--secondary-font);
    font-size: 50px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #000;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle { 
    text-transform: uppercase;
    font-family: var(--secondary-font);
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #000;
}
     
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

.ip-banner-wrap {
    position: relative;
}

.ip-banner-wrap .ip-banner-breadcrumbs {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.023em;
    text-transform: uppercase;
    color: #fff;
}

.aios_agent .entry-title {
    display: block;
}

.single-communities .community-featured-image {
    display: none;
}

.single-communities h2.entry-title + p {
    display: none;
}

.single-communities #content .listings-wrap {
    margin-top: 40px;
}


ul.gal {
    text-align: center;    margin: 0px !important;
}
ul.gal li {
    display: inline-block;
    margin: 0px 6px;
}
ul.gal li img {
    max-width: 350px;
}

.page-id-44 #content .cu-map {
    display: flex;
}

.testi-item a,
#content .aios-testimonials-lists h3,
.aiosp-content.aios-popup-body.aix-testimonial-wrap h2 {
    display: none !important;
}

#ip-communities .fc-details {
    text-shadow: 1px 2px 2px #000;
}

#listings-results .listings-table .listings-table-body .listings-table-label {
    color: #fff !important;
}

#content .cu-contact span a:hover,
#content .cu-smi a:hover {
    opacity: .7;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    left: auto !important;
    font-size: 12px !important;
    top: 20% !important;
}

body.aios-custom-ihomefinder-details-template #listings-details .listings-link-navigation-main:focus, 
body.aios-custom-ihomefinder-details-template #listings-details .listings-link-navigation-main:hover {
    background: #fff !important;
}

.welcome-title h1 > span:last-child > span {
    font-size: clamp(25px,2.500vw,40px);
}

body.page-id-44 #content .cu-title {
    font-size: 20px;
}

body.page-id-44 #content .cu-title img {
    max-width: 25px;
    height: auto;
    margin: 0 5px;
}


.audio-play {
    position: absolute;
    bottom: 16px;
    right: 17px;
    z-index: 101;
/*    pointer-events: none;*/
    cursor: pointer;
}

.audio-play i {
    font-size: 20px;
    color: #fff;
}

.hp-slideshow audio {
    position: absolute;
    bottom: 0;
    right: -240px;
    z-index: 100;
    opacity: 0;
}

body.aios-custom-ihomefinder-printable-template {
    overflow-x: hidden;
    overflow-y: auto;
}

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

body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

body.pojo-a11y-readable-font em[class^=ai-font],
body.pojo-a11y-readable-font a[class^=ai-font] {
    font-family: 'agentimage' !important;
}

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

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

.aios-custom-ihomefinder-shortcode .ip-banner-wrap .ip-banner-breadcrumbs .container,
.aios-custom-ihomefinder-results-template .ip-banner-wrap .ip-banner-breadcrumbs .container {
    width: 100%;
}

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

.aios-custom-ihomefinder-shortcode #inner-page-wrapper > .container,
.aios-custom-ihomefinder-results-template #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

.aios-custom-ihomefinder-shortcode #content,
.aios-custom-ihomefinder-results-template #content {
    padding-left: 15px;
    padding-right: 15px;
}

.post-page-map-search.ip-container #main-wrapper {
    z-index: unset;
}

.post-page-map-search #ihf-main-container .mt-25 {
    margin-top: 22px;
}

.post-page-map-search #ihf-main-container #ihf-refine-search-close {
    position: absolute;
    bottom: -27px;
    right: 0;
}

#ihf-main-container span.glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

.single-aios_agent .aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body {
    width: 555px !important;
    max-width: calc(100% - 30px);
    min-height: auto !important;
    padding: 30px !important;
}

.single-aios_agent .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: auto;
}

.single-aios_agent .wpcf7 form .wpcf7-response-output {
    margin: 0;
    position: absolute;
    bottom: 0;
}

.single-aios_agent .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: #888888;
}

.ihf-details-template #listings-details .listings-link-navigation>li a {
    font-family: var(--secondary-font);
}

p#breadcrumbs a {
    color: #fff;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;   
}

p#breadcrumbs a:hover {
    opacity: .7;
}

.single-aios_agent .aiosp-wrap .aiosp-ref-\#agents-popup-form form {
    position: relative;
}

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

#ihf-main-container.ihf-modal-container .nav-tabs>li:not(.active)>a:hover {
    color: #ffffff !important;
}