/*
Theme Name: ig-realty-new.com
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-default: 'Open Sans', sans-serif;
    --font-title: 'Cinzel', serif;
    --font-size-default: 15px;
    --font-size-title: 18px;
    --font-color-default: #333333;
    --font-color-title: #000000;

    /** Use for input, button, and any other element */
    --primary: #b49482;
    --primary-rgb: 184, 151, 132;
    --accent: #6992ae;
    --accent-rgb: 80, 89, 99;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4,0,.2,1);
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/
#navi {
    display: none;
}

.navi li {
    position: relative;
}
    .navi li a {
        font-size: 14px;
        letter-spacing: 0.2em;
        line-height: 1;
        color: #fff;
        text-transform: uppercase;
        display: block;
    }

.navi > li,
.navi > li:before {
    margin: 0 40px;
}
    .navi > li:first-child {
        margin-left: 0!important;
    }
    .navi > li:last-child {
        margin-right: 0!important;
    }
.navi > li:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 1px;
    height: 14px;
    background: #fff;
    margin-top: auto!important;
    margin-bottom: auto!important;
}
    .navi > li:last-child:before {
        display: none;
    }

.navi > li > a {
    display: block;
    padding: 14.5px 0;
}
    .navi > li > a:before {
        content: '';
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 61px;
        border-top: 2px solid var(--accent);
        border-bottom: 2px solid var(--accent);
        transition: all var(--default-transition);
        position: absolute;
        margin: auto;
        transform: scaleX(0);
    }
    .navi > li:hover > a:before,
    .navi > li:focus-within > a:before {
        transform: scaleX(1);
    }

.navi .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:180px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--default-transition);
}
.navi > li > .sub-menu {
    left: calc( 50% - 90px);
}
.navi .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
    transition: all var(--default-transition);
}
.navi .sub-menu li:hover > a,
.navi .sub-menu li:focus-within > a {
    background: var(--primary);
    color: #fff;
}
.navi .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
.navi li:hover > .sub-menu,
.navi li:focus-within > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.navi .sub-menu li {
    position: relative;
}


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

/* Global */

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

#main-wrapper {
    overflow: hidden;
}

a {
    color: inherit;
}
    a:hover {
        color: var(--primary);
    }
    a:hover, a:focus, .slick-slide, .slick-slide a {
        outline: none;
        text-decoration: none;
    }
    input, select, textarea {
        outline: none;
    }

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

.bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    .bg-section:before,
    .bg-section:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
    z-index: -1;
}
    .ios-true .bg-pattern,
    .ipad-true .bg-pattern {
        background-attachment: scroll;
    }

.section-title {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.2em;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
}
    .section-title span {
        display: block;
        font-family: var(--font-title);
        font-size: 80px;
        letter-spacing: 0.025em;
        line-height: 1;
        color: #000;
        font-weight: 400;
        margin-top: 16px;
    }

a.btn-a,
.btn-a {
    width: 202px;
    height: 59px;
    border: 1px solid var(--primary);
    color: #000;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #000;
    background: transparent;
    transition-duration: 0.3s;
    transition-timing-function: var(--default-transition);
    transition-property: background, color, border;
}
    a.btn-a:hover,
    .btn-a:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

/*header*/
header.header.sticking {
    background: #000;
    padding: 8px 0;
}
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    padding: 27px 0 0;
    transition: background var(--default-transition), padding var(--default-transition);
}
    .header-logo {

    }
        .header-logo a {
            display: block;
            width: 97px;
            margin: 0 auto;
        }
            .header-logo a img {
                margin: 0 auto;
            }


    .header-navigation {
        position: relative;
    }
        .header-navigation .header-logo {
            width: 15%;
        }
        .navi {
            width: 42.5%;
            display: flex;
            flex-flow: row wrap;
            align-items: center;
        }
        .navi:first-child {
            justify-content: flex-end;
            padding-right: 54px;
        }
        .navi:last-child {
            justify-content: flex-start;
        }

        .bm-menu-open {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 30px;
            height: 30px;
            padding: 0;
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
            transition: opacity var(--default-transition);
        }
            .bm-menu-open span {
                width: 100%;
                height: 2px;
                background: #fff;
                position: relative;
                display: block;
            }
                .bm-menu-open span:before {
                    content: '';
                    position: absolute;
                    top: -7px;
                    bottom: -7px;
                    left: 0;
                    right: 0;
                    border-top: 2px solid #fff;
                    border-bottom: 2px solid #fff;
                }

        .bm-menu-open:hover {
            opacity: 0.6;
        }


/*burger menu*/
body.menu-is-active {
    overflow: hidden!important;
}
.bm-menu-bg.active {
    display: block;
}
.bm-menu-wrap.active {
    transform: translateX(0);
}
.bm-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1012;
    display: none;
}
.bm-menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 424px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary);
    z-index: 1012;
    transition: all 0.5s ease;
    transform: translateX(100%);
}
    .bm-menu-wrap:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--primary);
        opacity: 0.83;
        z-index: -1;
    }
    .bm-menu-inner {
        max-height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        padding: 65px 0;
    }
    .bm-menu-close {
        position: absolute;
        top: 12px;
        left: 13px;
        color: #fff;
        font-size: 18px;
        background: transparent;
        border: none;
        outline: none;
        padding: 0;
        transition: opacity var(--default-transition);
    }
        .bm-menu-close:hover {
            opacity: 0.6;
        }
    .bm-menu-logo {
        font-size: 0;
        text-align: center;
    }
        .bm-menu-logo a {
            display: inline-block;
        }
    #bm-nav {
        text-align: center;
/*        margin: 127px 0 130px;*/
        margin: 80px 0;
    }
        #bm-nav > li {
            margin-bottom: 20px;
        }
        #bm-nav > li:last-child {
            margin-bottom: 0;
        }
            #bm-nav > li > a {
                font-size: 18px;
                letter-spacing: 0.2em;
                line-height: 1;
                text-transform: uppercase;
                color: #fff;
                transition: opacity var(--default-transition);
            }
                #bm-nav > li > a:hover {
                    opacity: 0.6;
                }
        #bm-nav .sub-menu {

        }
            #bm-nav .sub-menu li {
                
                margin: 5px 0;
            }
                #bm-nav .sub-menu li a {
                    color: #d3d3d3;
                    font-size: 14px;
                    letter-spacing: 0.2em;
                    line-height: 1;
                    text-transform: uppercase;
                    transition: color var(--default-transition);
                }
                    #bm-nav .sub-menu li a:hover {
                        color: #fff;
                    }

    .bm-menu-info {
        color: #fff;
    }
        .bm-menu-contact {
            text-align: center;
            margin-bottom: 15px;
        }
        .bm-menu-contact:last-child {
            margin-bottom: 0;
        }
        .bm-menu-contact small {
            font-size: 11px;
            letter-spacing: 0.025em;
        }
        .bm-menu-contact span {
            font-size: 14px;
            letter-spacing: 0.025em;
        }
            .bm-menu-contact span a {
                transition: opacity var(--default-transition);
            }
            .bm-menu-contact span a:hover {
                color: #fff;
                opacity: 0.6;
            }

/*slideshow*/
#hp-slideshow {
    position: relative;
}
    #hp-slideshow .aios-slider:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background: rgb(0,0,0);
        background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
        opacity: 0.57;
    }
    .slideshow-tagline {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 2.4% 0 0;
    }
        .slideshow-tagline h2 {
            text-align: center;
            font-weight: 400;
            font-family: var(--font-title);
            line-height: 1;
            color: #fff;
            text-transform: uppercase;
            font-size: 70px;
            letter-spacing: 0.1em;
        }
            .slideshow-tagline h2 span {
                letter-spacing: 0.2em;
            }
            .slideshow-tagline h2 strong {
                display: block;
                font-family: var(--font-default);
                font-size: 15px;
                letter-spacing: 0.4em;
                font-weight: 400;
                margin-top: 4px;
            }

/*floating smi*/
#floating-smi {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    width: 32px;
    z-index: 101;
}
    a.floating-smi-btn {
        width: 32px;
        height: 172px;
        border: 1px solid #fff;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 42px;
        color: #fff;
        transition: all var(--default-transition);
    }
        a.floating-smi-btn span {
            position: absolute;
            white-space: nowrap;
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transform: rotate(-90deg);
        }
        a.floating-smi-btn:before {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 0;
            right: 0;
            margin: auto;
            width: 1px;
            height: 37px;
            background: #fff;
        }
        a.floating-smi-btn:hover {
            border-color: var(--primary)!important;
            background: var(--primary)!important;
            color: #fff!important;
        }

    #floating-smi a[class*="ai-font-"] {
        display: block;
        font-size: 24px;
        color: #fff;
        text-align: center;
        margin-bottom: 21px;
        transition: all var(--default-transition);
    }
    #floating-smi a[class*="ai-font-"]:last-child {
        margin-bottom: 0;
    }
        #floating-smi a[class*="ai-font-"]:hover {
            opacity: 0.6;
        }


    #floating-smi.nav-active-section-hp-about a.floating-smi-btn,
    #floating-smi.nav-active-section-hp-qs a.floating-smi-btn,
    #floating-smi.nav-active-section-hp-fp a.floating-smi-btn,
    #floating-smi.nav-active-section-hp-map a.floating-smi-btn,
    #floating-smi.nav-active-section-hp-testimonials a.floating-smi-btn,
    #floating-smi.nav-active-section-hp-press a.floating-smi-btn,
    #floating-smi.nav-active-section-footer-wrap a.floating-smi-btn {
        border-color: var(--primary);
        color: var(--primary);
    }
        #floating-smi.nav-active-section-hp-about a.floating-smi-btn:before,
        #floating-smi.nav-active-section-hp-qs a.floating-smi-btn:before,
        #floating-smi.nav-active-section-hp-fp a.floating-smi-btn:before,
        #floating-smi.nav-active-section-hp-map a.floating-smi-btn:before,
        #floating-smi.nav-active-section-hp-testimonials a.floating-smi-btn:before,
        #floating-smi.nav-active-section-hp-press a.floating-smi-btn:before,
        #floating-smi.nav-active-section-footer-wrap a.floating-smi-btn:before {
            background: var(--primary);
        }
    #floating-smi.nav-active-section-hp-about a[class*="ai-font-"],
    #floating-smi.nav-active-section-hp-qs a[class*="ai-font-"],
    #floating-smi.nav-active-section-hp-fp a[class*="ai-font-"],
    #floating-smi.nav-active-section-hp-map a[class*="ai-font-"],
    #floating-smi.nav-active-section-hp-testimonials a[class*="ai-font-"],
    #floating-smi.nav-active-section-hp-press a[class*="ai-font-"],
    #floating-smi.nav-active-section-footer-wrap a[class*="ai-font-"] {
        color: var(--primary);
    }

/*about*/
#hp-about {
    position: relative;
    z-index: 1;
    padding: 99px 0 92px;
}
    .bg-section.bg-about {
        left: 30.813%;
    }
        .bg-section.bg-about:before {
            content: '';
            background: rgba(255,255,255,0.85);
        }

    .about-img {
        width: 476px;
        width: 35.79%;
        padding-top: 20px;
        padding-left: 20px;
        position: relative;
        align-self: flex-start;
    }
        .about-img:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 17.85%;
            height: 100%;
            background: #fff;
            z-index: -1;
        }
        .about-img img {
            width: 100%;
            margin: 0 auto;
        }

    .about-text {
        width: 64.21%;
        /* padding-left: 80px;*/
        padding-left: 6%;
        padding-top: 17px;
        align-self: center;
    }
        .about-text .section-title {
            margin-bottom: 34px;
        }

        .about-text-row {
            margin: 0 -15px;
        }
            .about-text-col {
                width: 50%;
                padding: 0 15px;
            }
                .about-text p {
                    line-height: 2;
                    letter-spacing: 0.025em;
                }
                .about-text a.btn-a {
                    margin-top: 34px;
                }


/*qs*/
#hp-qs {
    padding: 47px 0 53px;
}
    .qs-title {
        /*width: 290px;*/
        width: 21.88%;
    }
        .qs-title .section-title {
            font-size: 12px;
            letter-spacing: 0.2em;
        }
            .qs-title .section-title span {
                font-size: 30px;
                letter-spacing: 0.2em;
                margin-top: 5px;
            }

    .qs-form {
        font-size: 0;
        width: 78.12%;
    }
        .qs-field.qs-lg {
            /*width: 162px;*/
            width: 15.5925%;
        }
        .qs-field.qs-sm {
            /*width: 90px;*/
            width: 8.6625%;
        }
        .qs-field {
            display: inline-block;
            vertical-align: middle;
            padding-right: 14px;
        }
            .qs-field select {
                width: 100%;
                height: 28px;
                font-size: 11px;
                letter-spacing: 0.05em;
                line-height: 1;
                color: #000;
                text-transform: uppercase;
                -webkit-appearance: none;
                appearance: none;
                background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMC1jMDAwIDc5LmRhNGE3ZTVlZiwgMjAyMi8xMS8yMi0xMzo1MDowNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjEgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTVCMjAyNUQ5NjYxMTFFREIyMjg4RDRCNUE5NjREOTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTVCMjAyNUU5NjYxMTFFREIyMjg4RDRCNUE5NjREOTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFNUIyMDI1Qjk2NjExMUVEQjIyODhENEI1QTk2NEQ5OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFNUIyMDI1Qzk2NjExMUVEQjIyODhENEI1QTk2NEQ5OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsoJrZQAAAA5SURBVHjaYmBgYIgC4v9oeA4QMzAC8VEkwY9ALMEABSZA/BcqUcKABuYB8S0gZkeXAGl3gXEAAgwAQGkNPxgwfEgAAAAASUVORK5CYII=');
                background-position: right 3px center;
                background-repeat: no-repeat;
                border: none;
                border-bottom: 1px solid #2e2e2e;
                padding-right: 10px;
                text-overflow: ellipsis;
            }

        .qs-btn {
            display: inline-flex;
            flex-flow: row wrap;
            justify-content: space-between;
            vertical-align: middle;
            width: 34.165%;
            padding-left: 27px;
        }
            .qs-btn .btn-a {
                width: calc(50% - 7px);
                height: 62px;
            }


    .qs-disclaimer {
        width: 100%;
        text-align: center;
        font-size: 10px;
        letter-spacing: 0.05em;
        color: #000;
        text-transform: uppercase;
        margin: 30px 0 0;
    }


/*fp*/
#hp-fp {
    position: relative;
    padding: 64px 0 98px;
    overflow: hidden;
}
    .bg-pattern.pattern-fp {
        /*width: 787px;
        height: 384px;*/
        width: 49.19%;
        bottom: 91px;
        right: 0;
        top: 0;
        left: initial;
    }
    .bg-section.bg-fp {
        height: 838px;
    }
        .bg-section.bg-fp:before {
            content: '';
            background: rgb(255,255,255);
            background: -moz-linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
            background: -webkit-linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
            background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
        }
        .bg-section.bg-fp:after {
            content: '';
            background: #fff;
            opacity: 0.86;
        }
        .bg-fp .accent-logo {
            position: absolute;
            top: 0;
            left: 30px;
            width: 408px;
            height: 395px;
            background: url(images/accent-logo.png) center/contain no-repeat;
            z-index: 1;
            opacity: 0.05;
        }

    #hp-fp .section-title {
        text-align: center;
        margin-bottom: 29px;
    }
    .fp-list {
        font-size: 0;
        margin: 0 -16px;
    }
        .fp-list .slick-list {
            overflow: visible;
        }
            .fp-list.slick-initialized .fp-item {
                width: 50%!important;
            }
            .fp-list:not(.slick-initialized) .fp-item:nth-child(4) ~ .fp-item {
                display: none;
            }
        .fp-item {
            display: inline-block;
            vertical-align: top;
            width: 50%;
            padding: 15px 15px 18px;
        }
            .fp-item a {
                display: block;
                position: relative;
            }
                .fp-img {
                    position: relative;
                }
                    .fp-list canvas {
                        display: block;
                        width: 100%;
                        min-height: 270px;
                    }
                    .fp-img-bg {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background-position: center;
                        background-size: cover;
                        transition: all var(--default-transition);
                    }
                        .fp-img-bg:before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: rgba(var(--primary-rgb), 0.77);
                            opacity: 0;
                            z-index: 2;
                            transition: all var(--default-transition);
                        }
                        .fp-img-bg img {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            z-index: 1;
                            transition: all var(--default-transition);
                        }
                        .fp-accent-logo {
                            position: absolute;
                            bottom: 23px;
                            right: 23px;
                            width: 87px;
                            height: 85px;
                            background: url(images/accent-logo.png) center/contain no-repeat;
                            -webkit-filter: brightness(0) invert(1);
                            filter: brightness(0) invert(1);
                            z-index: 2;
                            transition: all var(--default-transition);
                            opacity: 0;
                        }
                    .fp-item a:hover .fp-img-bg {
                        top: -20px;
                        left: -31px;
                        right: -34px;
                        bottom: -21px;
                    }
                    .fp-item a:hover .fp-img-bg:before {
                        opacity: 1;
                    }
                    .fp-item a:hover .fp-accent-logo {
                        opacity: 0.5;
                    }
                    .fp-item a:hover .fp-img-bg img {
                        -webkit-filter: grayscale(1);
                        filter: grayscale(1);
                    }
                .fp-details-default {
                    position: absolute;
                    bottom: 16px;
                    left: 0;
                    right: 0;
                    width: 330px;
                    max-width: 90%;
                    margin: auto;
                    background: rgba(var(--primary-rgb), 0.96);
                    border: 1px solid #fff;
                    text-align: center;
                    color: #fff;
                    padding: 15px 15px 13px;
                    z-index: 3;
                    transition: opacity var(--default-transition), transform var(--default-transition);
                }
                    .fp-address {
                        font-size: 20px;
                        letter-spacing: 0.05em;
                        line-height: 23px;
                    }
                        .fp-address span {
                            display: block;
                            font-size: 13px;
                            letter-spacing: 0.05em;
                        }

                    .fp-item a:hover .fp-details-default {
                        opacity: 0;
                        transform: translateY(-20px);
                    }

                .fp-details-hover {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 3;
                    color: #fff;
                    text-align: center;
                    opacity: 0;
                    transition: opacity var(--default-transition);
                }
                    .fp-amenities {
                        display: flex;
                        flex-flow: row wrap;
                        align-items: center;
                        justify-content: center;
                        margin: 25px 0 0;
                    }
                        .fp-amenities span {
                            font-weight: 300;
                            font-size: 13px;
                            letter-spacing: 0.05em;
                            line-height: 1;
                            border-right: 1px solid #fff;
                            padding: 0 15px;
                        }
                        .fp-amenities span:last-child {
                            border-right: 0;
                        }

                    .fp-price {
                        font-size: 21.5px;
                        font-weight: 500;
                        letter-spacing: 0.1em;
                        margin: 59px 0 0;
                    }
                    .fp-more {
                        font-weight: 700;
                        font-size: 14px;
                        letter-spacing: 0.2em;
                        text-transform: uppercase;
                        margin: 87px 0 0;
                    }

                .fp-item a:hover .fp-details-hover {
                    opacity: 1;
                }

    .fp-controls {
        width: 48.5%;
        margin-top: 22px;
    }
        .fp-controls a.btn-a {
            width: 222px;
            margin: 0 54px;
        }
        .custom-slick-arrow {
            background: transparent;
            border: none;
            padding: 0;
            font-size: 14px;
            letter-spacing: 0.2em;
            color: #000;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: color var(--default-transition);
        }
            .custom-slick-arrow i {
                font-size: 16px;
            }
            .custom-slick-arrow i.ai-font-arrow-i-p {
                margin-right: 10px;
            }
            .custom-slick-arrow i.ai-font-arrow-i-n {
                margin-left: 10px;
            }

        .custom-slick-arrow:hover {
            color: var(--primary);
        }


/*fc*/
#hp-fc {
    position: relative;
    padding: 94px 0 105px;
    overflow: hidden;
}
    .bg-pattern.pattern-fc {

    }
    #hp-fc .section-title {
        text-align: center;
        margin-bottom: 37px;
    }

#hp-fc .ip-btn .btn-a {
    background: var(--primary); 
    color: #fff;
}

#hp-fc .ip-btn .btn-a:hover {
    background: transparent; 
    color: #000;
}

    .fc-list {
        font-size: 0;
        padding: 0 5px;
    }
        .fc-item {
            display: inline-block;
            vertical-align: top;
            width: 20%;
            padding: 4px;
        }
            .fc-item a {
                display: block;
                position: relative;
                z-index: 1;
                transition: z-index var(--default-transition);
            }
                .fc-img {
                    position: relative;
                }
                    .fc-img canvas {
                        display: block;
                        width: 100%;
                    }
                    .fc-img-bg {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        transition: all var(--default-transition);
                    }
                        .fc-img-bg:before {
                            content: '';
                            position: absolute;
                            z-index: 2;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: rgba(var(--accent-rgb), 0.38);
                            transition: all var(--default-transition);
                        }
                        .fc-img-bg img {
                            display: block;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            z-index: 1;
                            transition: all var(--default-transition);
                        }

                    .fc-item a:hover {
                        z-index: 3;
                    }
                        .fc-item a:hover .fc-img-bg img {
                            -webkit-filter: grayscale(1);
                            filter: grayscale(1);
                        }
                        .fc-item a:hover .fc-img-bg:before {
                            background: rgba(var(--primary-rgb), 0.76);
                        }
                    .fc-item a:hover .fc-img-bg {
                        top: -30px;
                        left: -30px;
                        right: -30px;
                        bottom: -30px;
                    }

                .fc-details {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 3;
                }
                    .fc-details-inner {
                        width: 100%;
                        text-align: center;
                        padding: 0 15px;
                    }
                        .fc-title {
                            font-size: 20px;
                            font-weight: 400;
                            letter-spacing: 0.05em;
                            color: #fff;
                            text-transform: uppercase;
                            position: relative;
                            line-height: 1.25;
                            /*font-family: var(--font-title);*/
                        }
                            .fc-title span {
                                position: relative;
                                display: block;
                                top: 100%;
                                left: 0;
                                right: 0;
                                font-size: 12px;
                                letter-spacing: 0.05em;
                                line-height: 16px;
                                margin-top: 4px;
                            }

/*map*/
#hp-map {
    position: relative;
    background: #e5e5e5;
    overflow: hidden;
}
    #hp-map:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: min(33.500vw, 536px);
        height: min(36.750vw, 588px);
        background: url(images/map/map-accent.png) center/contain no-repeat;
        z-index: 1;
        pointer-events: none;
    }
    .map-container {
        max-width: 1600px;
        margin: 0 auto;
        background-position: center;
        background-size: cover;
        /*min-height: 801px;*/
        padding: 76px 0 84px;
    }

    .map-row {

    }
        .map-title {
            flex-grow: 1;
            padding: 90px 0 0 40px;
        }
            .map-title .section-title {
                margin-bottom: 25px;
            }
            ul.map-list {

            }
                ul.map-list li {
                    margin-bottom: 16px;
                }
                    ul.map-list li a {
                        font-size: 14px;
                        letter-spacing: 0.1em;
                        line-height: 1.4286;
                        color: #000;
                        text-transform: uppercase;
                        transition: color var(--default-transition);
                    }
                    ul.map-list li a:hover,
                    ul.map-list li a.active {
                        color: var(--primary);
                    }
                ul.map-list li:last-child {
                    margin-bottom: 0;
                }
        .map-holder {
            width: 471px;
            position: relative;
            margin-right: -3px;
        }
            .map-holder canvas {
                display: block;
                width: 100%;
            }
            .map-responsive {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
                .map-responsive img {
                    display: block;
                    max-width: initial;
                }
                .map-responsive img[usemap] {
                    position: absolute;
                    top: 0;
                    left: 0;
                }

            .map-hovers {
                position: absolute;
                top: 0;
                left: 0;
                pointer-events: none;
            }
                .map-hover {
                    position: absolute;
                    transition: transform var(--default-transition);
                }
                    .map-hover img {
                        opacity: 0;
                        transition: all var(--default-transition);
                    }
                    .map-hover span {
                        position: absolute;
                        font-weight: 700;
                        font-size: 10.56px;
                        letter-spacing: 0.05em;
                        color: #fff;
                        line-height: 1;
                        text-transform: uppercase;
                        white-space: nowrap;
                        text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9);
                    }
                    .map-hover span i.icon-pin {
                        position: absolute;
                        width: 24px;
                        height: 30px;
                        background: url(images/map/icon-pin.png) center/contain no-repeat;
                    }

                .map-hover.active {
                    transform: scale(1.15);
                }    
                    .map-hover.active img {
                        opacity: 1;
                    }

    .map-hover[data-area="area-pacific"] {
        top: 216px;
    }
        .map-hover[data-area="area-pacific"] span {
            top: 244px;
            left: 99px;
        }
            .map-hover[data-area="area-pacific"] span i.icon-pin {
                top: -30px;
                left: 10px;
            }
            .map-hover[data-area="area-pacific"] span.sub-area-1 {
                top: 70px;
                left: -74px;
            }
            .map-hover[data-area="area-pacific"] span.sub-area-2 {
                top: 102px;
                left: -22px;
            }
            .map-hover[data-area="area-pacific"] span.sub-area-3 {
                top: 134px;
                left: -12px;
            }

    .map-hover[data-area="area-cabo-pacific"] {
        top: 575px;
        left: 136px;
    }
        .map-hover[data-area="area-cabo-pacific"] span {
            top: 51px;
            left: -60px;
        }
            .map-hover[data-area="area-cabo-pacific"] span i.icon-pin {
                top: -30px;
                left: 69px;
            }


    .map-hover[data-area="area-cabo-san-lucas"] {
        top: 604px;
        left: 165px;
    }
        .map-hover[data-area="area-cabo-san-lucas"] span {
            top: 39px;
            left: 9px;
        }
        .map-hover[data-area="area-cabo-san-lucas"] span i.icon-pin {
            top: -35px;
            left: 10px;
        }

    .map-hover[data-area="area-cabo-corridor"] {
        top: 545px;
        left: 196px;
    }
        .map-hover[data-area="area-cabo-corridor"] span {
            top: 47px;
            left: 53px;
        }
        .map-hover[data-area="area-cabo-corridor"] span i.icon-pin {
            top: -5px;
            left: -25px;
        }

    .map-hover[data-area="area-san-jose-corridor"] {
        top: 507px;
        left: 252px;
    }
        .map-hover[data-area="area-san-jose-corridor"] span {
            top: 26px;
            left: 57px;
        }
        .map-hover[data-area="area-san-jose-corridor"] span i.icon-pin {
            top: -4px;
            left: -24px;
        }

    .map-hover[data-area="area-san-jose-del-cabo"] {
        top: 451px;
        left: 288px;
    }
        .map-hover[data-area="area-san-jose-del-cabo"] span {
            top: 43px;
            left: 73px;
        }
        .map-hover[data-area="area-san-jose-del-cabo"] span i.icon-pin {
            top: -9px;
            left: -23px;
        }

    .map-hover[data-area="area-puerto-los-cabos"] {
        top: 425px;
        left: 382px;
    }
        .map-hover[data-area="area-puerto-los-cabos"] span {
            top: 29px;
            left: 42px;
        }
        .map-hover[data-area="area-puerto-los-cabos"] span i.icon-pin {
            top: -4px;
            left: -24px;
        }

    .map-hover[data-area="area-east-cape"] {
        top: 0px;
        left: 23px;
    }
        .map-hover[data-area="area-east-cape"] span {
            top: 266px;
            left: 255px;
        }
        .map-hover[data-area="area-east-cape"] span i.icon-pin {
            top: -31px;
            left: 16px;
        }


/*testimonials*/
#hp-testimonials {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    padding: 54px 0 102px;
}
    .bg-section.bg-testi {
        width: 70.5%;
    }
        .bg-section.bg-testi:before {
            content: '';
            background: #fff;
            opacity: 0.85;
        }
    .testi-text {
        width: 57.96%;
        padding-top: 42px; 
        padding-right: 45px;
        align-self: center;
    }
        .testi-text .section-title {
            margin-bottom: 30px;
        }
        .testi-list {
            margin-bottom: 42px;
        }
            .testi-item {

            }
            .testi-item ~ .testi-item {
                display: none;
            }
                .testi-item p {
                    font-size: 15px;
                    letter-spacing: 0.025em;
                    line-height: 2;
                }
                .testi-item span {
                    display: block;
                    text-transform: uppercase;
                    margin-top: 30px;
                    font-size: 15px;
                    letter-spacing: 0.025em;
                    line-height: 2;
                }
                .testi-controls {

                }
                    .testi-controls a.btn-a {
                        margin-right: auto;
                        width: 222px;
                    }
                    .testi-controls .slick-next {
                        margin-left: 30px;
                        margin-right: 10px;
                    }

    .testi-img {
        width: 559px;
        width: 42.04%;
        padding-top: 20px;
        padding-right: 20px;
        position: relative;
		height: 563px;
    }
        .testi-img:before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            right: 0;
            height: 100%;
            background: #fff;
            z-index: -1;
        }
        .testi-img img {
            display: block;
            width: 100%;
            height: auto;
        }


/*press*/
#hp-press {
    position: relative;
    padding: 132px 20px 92px;
}
    #hp-press .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    .press-list {

    }
        .press-item {
            width: 25%;
            padding: 0 15px;
            margin-bottom: 30px;
        }
            a.press-img,
            .press-img {
                display: block;
                position: relative;
                margin-bottom: 21px;
            }
                .press-img canvas {
                    display: block;
                    width: 100%;
                    background: #000;
                }
                .press-img img {
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: opacity var(--default-transition);
                }
                .press-img:hover img {
                    opacity: 0.7;
                }
            .press-item p {
                font-size: 15px;
                line-height: 2;
                letter-spacing: 0.025em;
                margin-bottom: 31px;
            }
            a.press-btn,
            .press-btn {
                display: inline-block;
                font-size: 14px;
                letter-spacing: 0.2em;
                color: #000;
                text-transform: uppercase;
                transition: color var(--default-transition);
            }
                a.press-btn:hover,
                .press-btn:hover {
                    color: var(--primary);
                }
            .press-item:after {
                content: '';
                display: block;
                height: 1px;
                background: #c8c8c8;
                margin: 29px 0 0;
            }


    .press-more {
        margin-top: 37px;
    }
        .press-more a.btn-a {
            width: 222px;
        }


/*git*/
#hp-git {
    position: relative;
    padding: 84px 0 96px;
}
    .bg-section.bg-git {

    }
        .bg-section.bg-git:before {
            content: '';
            background: #000;
            opacity: 0.59;
            z-index: -1;
        }

    #hp-git .section-title {
        text-align: center;
        color: #fff;
        margin-bottom: 79px;
    }
        #hp-git .section-title span {
            color: inherit;
        }

    .git-form {
        font-size: 0;
        max-width: 804px;
        margin: 0 auto;
    }
        .git-form form {
            margin: 0 -13px;
            position: relative;
        }
            .git-radio {
                padding: 0 9px;
                margin-bottom: 26px;
            }
                .git-radio .wpcf7-form-control.wpcf7-radio {
                    display: flex;
                    flex-flow: row wrap;
                }
                    .git-radio .wpcf7-form-control.wpcf7-radio > span {
                        width: 33.33%;
                        padding: 0 4.5px;
                    }
                        .git-radio .wpcf7-form-control.wpcf7-radio > span label {
                            display: block;
                            position: relative;
                        }
                            .git-radio .wpcf7-form-control.wpcf7-radio > span label input {
                                position: absolute;
                                top: 0;
                                left: 0;
                                opacity: 0;
                            }
                            .git-radio .wpcf7-form-control.wpcf7-radio > span label span {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 100%;
                                height: 52px;
                                border: 1px solid #fff;
                                font-size: 16px;
                                letter-spacing: 0.2em;
                                color: #fff;
                                text-transform: uppercase;
                                text-align: center;
                            }
                            .git-radio .wpcf7-form-control.wpcf7-radio > span label input:checked ~ span {
                                background: var(--primary);
                                border-color: var(--primary);
                            }
            .git-field {
                display: inline-block;
                vertical-align: top;
                padding: 0 13px;
                position: relative;
            }
            .git-field.field-6 {
                width: 50%;
                margin-bottom: 14px;
            }
            .git-field.field-12 {
                width: 100%;
            }
            .git-field-wrap {
                position: relative;
            }
                .git-field input:not(.wpcf7-submit),
                .git-field textarea {
                    width: 100%;
                    height: 57px;
                    background: transparent;
                    border: none;
                    border-bottom: 1px solid #fff;
                    font-size: 12px;
                    line-height: 20px;
                    letter-spacing: 0.2em;
                    color: #fff;
                    text-transform: uppercase;
                }
                .git-field textarea {
                    padding-top: 17px;
                    resize: none;
                    height: 107px;
                    padding-right: 40px;
                }
            .git-btn {
                position: absolute;
                bottom: 14px;
                right: 15px;
                font-size: 30px;
                color: #fff;
            }
                .git-btn input {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    font-size: 0;
                    opacity: 0;
                    left: 0;
                    top: 0;
                }
                .git-btn .wpcf7-spinner,
                .git-btn .ajax-loader {
                    position: absolute;
                    bottom: -50px;
                    right: 0;
                    margin: 0;
                }
    .git-form .wpcf7 form .wpcf7-response-output {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        font-size: 12px;
        text-align: center;
        margin: 10px 13px 0;
        color: #fff;
    }
        .use-floating-validation-tip .wpcf7-not-valid-tip {
            font-size: 12px;
            position: absolute;
            width: auto;
            top: 50%;
            transform: translateY(-50%);
        }

/*footer*/
footer.footer {
    position: relative;
    padding: 95px 0 48px;
    background: #e5e5e5;
    z-index: 1;
}
    .footer .bg-pattern {
        height: 58px;
        bottom: initial;
    }
    .footer-logo {
        text-align: center;
        font-size: 0;
    }
        .footer-logo div {
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
        }
        .footer-logo div:last-child > * {
            margin: 15px 30px 0;
        }

    .footer-contact-info {
        margin: 25px 0 0;
    }
        .footer-contact {
            border-right: 1px solid #c7c7c7;
            padding: 0 9px;
        }
            .footer-contact small {
                font-size: 11px;
                letter-spacing: 0.025em;
            }
            .footer-contact span {
                font-size: 14px;
                letter-spacing: 0.025em;
            }
                .footer-contact span a {
                    transition: color var(--default-transition);
                }
                .footer-contact span a:hover {
                    color: var(--primary);
                }
        .footer-contact:last-child {
            border-right: 0;
        }
    .footer-nav {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        margin: 29px 0 0;
    }
        .footer-nav > li {
            border-right: 1px solid #a9b1ba;
            padding: 0 15px;
            margin: 0 0 15px;
        }
        .footer-nav > li:last-child {
            border-right: 0;
        }
            .footer-nav > li > a {
                font-size: 14px;
                letter-spacing: 0.2em;
                line-height: 16px;
                text-transform: uppercase;
                transition: color var(--default-transition);
            }
            .footer-nav > li > a:hover {
                color: var(--primary);
            }

    .footer-disclaimer {
        font-size: 12px;
        letter-spacing: 0.05em;
        line-height: 19px;
        color: #5e5e5e;
        text-align: center;
        margin: 13px 0 0;
    }

    .footer-copyright {
        font-size: 14px;
        letter-spacing: 0.05em;
        line-height: 20px;
        color: #111111;
        text-align: center;
        margin: 33px 0 0;
    }

    .footer-icons {
        color: #a9b1ba;
        margin: 17px 0 0;
    }

        .footer-icons i.ai-font-eho {
            font-size: 28px;
        }
        
        .footer-icons i.ai-font-realtor-mls {
            font-size: 37px;
            margin: 0 7px 0 13px;
        }
        .footer-icons span.line {
            width: 1px;
            height: 35px;
            background: #a9b1ba;
            margin-right: 8px;
        }

    .footer-disclaimer a, 
    .footer-copyright a {
        transition: color var(--default-transition);
    }

/*******************************************************
 *
 * 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-family: var(--font-title);
    font-size: 80px;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #000;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 30px;
}

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

}



body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
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 > img, body > iframe[name="__bkframe"] {
    display: none;
}
#ihf-main-container .mc-total-payment-subline {
    color: #666;
}
#ihf-main-container .nav-tabs {
    margin-left: 0;
}
#ihf-main-container .chosen-drop ul.chosen-results {
    padding-left: 0;
    margin: 0;
}
.ihf-grid-result-address {
    display: block;
}
#ihf-main-container #ihf-refine-map-search-form .checkbox, #ihf-main-container #ihf-refine-map-search-form .col-xs-8 {
    padding: 0;
}
#ihf-agent-sellers-rep > div[style] {
    max-width: 100%;
}
#ihf-map-canvas .leaflet-top.leaflet-right {
    z-index: 999;
}
#ihf-main-container .glyphicon.glyphicon-remove-circle {
    color: #fff!important;
}

#hp-qs button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 28px;
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAFCAYAAABmWJ3mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMC1jMDAwIDc5LmRhNGE3ZTVlZiwgMjAyMi8xMS8yMi0xMzo1MDowNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI0LjEgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTVCMjAyNUQ5NjYxMTFFREIyMjg4RDRCNUE5NjREOTgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTVCMjAyNUU5NjYxMTFFREIyMjg4RDRCNUE5NjREOTgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFNUIyMDI1Qjk2NjExMUVEQjIyODhENEI1QTk2NEQ5OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFNUIyMDI1Qzk2NjExMUVEQjIyODhENEI1QTk2NEQ5OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsoJrZQAAAA5SURBVHjaYmBgYIgC4v9oeA4QMzAC8VEkwY9ALMEABSZA/BcqUcKABuYB8S0gZkeXAGl3gXEAAgwAQGkNPxgwfEgAAAAASUVORK5CYII=);
    background-position: right 3px center;
    background-repeat: no-repeat;
    border: none;
    border-bottom: 1px solid #2e2e2e;
    padding-right: 10px;
    border-radius: unset;
}

form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    width: 100%;
    text-overflow: ellipsis;
}

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

.aios-communities-legacy .aioscomu-label {
    line-height: 1;
    text-shadow: 0 0 10px #000;
}

.listings-slideshow-splide.splide-default .splide__list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
/*    opacity: 0.57;*/
    opacity: 0.3;
    z-index: 2;
}

body #listings-details .listings-form textarea {
    padding-right: 30px;
}

.aios-custom-ihomefinder-printable-template #breadcrumbs {
    display: none !important;
}

.thank-you{
    text-align: center;
    display: block;
    font-size: 30px;
    margin-top: 140px;
}

.page-id-644 h1.entry-title,
.page-id-644 p#breadcrumbs, .page-id-648 h1.entry-title,
.page-id-648 p#breadcrumbs{
    display: none;
}

.thank-you a {
    color: var(--primary);
}

.ip-btn {
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}

.ip-btn a.btn-a, .ip-btn .btn-a {
   width: 300px;
}

/*.aios-communities-legacy .aioscomu-label {
   font-family: var(--font-title) !important;
}*/

.area-title-flex {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
     flex-direction: column;
    align-items: center;
}

 #hp-fc .section-title {
/*    text-align: left;*/
}


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