/*
Theme Name: Tom Tezak
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.0
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --EBGaramond: 'EB Garamond', serif;
    --OpenSans: 'Open Sans', sans-serif;
    
    /** Use for input, button, and any other element */
    --primary-color: #4b3900;
    --secondary-color: #000000;
    --tertiary-color: #535353;
    --accent-color: #13b5ea;
    --accent-color-dark: #003e7b;
    --body-font-color: #8c8c8c;
    --primary-bg-color: #332713;
}

a, a:hover, a:link, a:active, a:focus {
    color: var(--body-font-color);
    outline: none;
    text-decoration: none;
}

.slick-slide, .slick-slide *, .slick-slide a {outline: none;}

.site_easing, #header_wrap a, .main_nav li a, .bm_info a, #footer_wrap a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-wrapper {
    position: relative;
    overflow: hidden;
}

.site_section {
    position: relative;
}

.parallax_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}
    .parallax_bg canvas {
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
        .safari-true .parallax_bg canvas,
        .mobile .parallax_bg canvas {
            background-attachment: scroll;
        }
.page-id-1092 .footer_form_bg.non_parallax_bg {
    z-index: 0 !important;
}
.non_parallax_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    font-size: 0;
}
    .non_parallax_bg canvas {
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

.site_inner_container {
    position: relative;
    z-index: 2;
}
.canvas_img {
    position: relative;
}
    .canvas_img canvas {
        width: 100%;
        height: auto;
        display: block;
    }
    .canvas_img img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }

.filter_white {
    filter: brightness(0) invert(1);
}

/* CUSTOM SITE TITLE */
.custom_site_title {
    display: inline-block;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    position: relative;
}
    .custom_site_title span {
        display: block;
        color: var(--primary-color);
        font-size: 18px;
        letter-spacing: 0.25em;
    }
    .custom_site_title h2 {
        color: var(--primary-color);
        font-size: 78px;
        letter-spacing: 0.02em;
        padding-bottom: 30px;
    }
        .custom_site_title h2::before {
            width: 168px;
            height: 1px;
            content: '';
            position: absolute;
            z-index: 1;
            bottom: 0;
            right: 0;
            background-color: var(--accent-color);
        }
        .custom_site_title h2::after {
            width: 200%;
            height: 1px;
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: #e0e0e0;
            opacity: 0.8;
        }
    .custom_site_title .accent_title {
        position: absolute;
        /*z-index: -1;*/
        top: 0;
        left: 0;
        color: var(--secondary-color);
        font-size: 204px;
        font-size: 12.750vw;
        font-weight: 800;
        letter-spacing: 0.02em;
        opacity: 0.05;
        pointer-events: none;
    }

    /* WHITE TITLE */
    .custom_site_title.white_text span {
        color: #ffffff;
    }
    .custom_site_title.white_text h2 {
        color: #ffffff;
    }
        .custom_site_title.white_text h2::after {
            opacity: 0.3;
        }
    .custom_site_title.white_text .accent_title {
        color: #ffffff;
        opacity: 0.1;
    }


/* CUSTOM SITE BUTTON */
.custom_site_button {

}
    .custom_site_button a,
    .custom_site_button div {
        width: 219px;
        height: 62px;
        max-width: 100%;
        display: inline-block;
        vertical-align: top;
        color: var(--tertiary-color);
        font-size: 15px;
        text-align: center;
        text-transform: uppercase;
        line-height: 62px;
        letter-spacing: 0.15em;
        position: relative;
        transition: all 0.3s ease-in-out;
    }
        .custom_site_button a span,
        .custom_site_button div span {
            display: block;
            position: relative;
            z-index: 2;
        }
        .custom_site_button a::before,
        .custom_site_button div::before {
            width: 100%;
            height: 100%;
            content: '';
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            border: 1px solid #959595;
        }
        .custom_site_button a::after,
        .custom_site_button div::after {
            width: 84px;
            height: 7px;
            content: '';
            position: absolute;
            z-index: 1;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            background-color: var(--accent-color);
            transition: all 0.3s ease-in-out;
        }
            .custom_site_button a:hover {
                color: #ffffff;
            }
            .custom_site_button a:hover::after {
                width: 100%;
                height: 100%;
            }

    /* WHITE BUTTON */
    .custom_site_button.white_btn a {
        color: #ffffff;
    }
    .custom_site_button.white_btn a::before {
        border-color: #ffffff;
    }

/* CUSTOM SITE ARROWS */
.custom_site_arrows {

}
    .custom_site_arrows .slick-arrow {
        width: 63px;
        height: 62px;
        color: #303030;
        border: 1px solid #959595;
        text-align: center;
        cursor: pointer;
    }
        .custom_site_arrows .slick-arrow:hover {
            color: #ffffff;
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        .custom_site_arrows .slick-arrow span {
            font-size: 9px;
            display: block;
            line-height: 60px;
        }
            .custom_site_arrows .slick-arrow.arrow_prev span {
                transform: scaleX(-1);
            }

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

/* Global */

body{
    font-family: var(--OpenSans);
    font-size: 14px;
    background: #ffffff;
    color: var(--body-font-color);
    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; */
}


/* HEADER */
#header_wrap {
    width: 100%;
    position: fixed;
    z-index: 1011;
    top: 0;
    left: 0;
    font-size: 0;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
}
    #header_wrap > .container-fluid {
        max-width: 1310px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
        .header_logo {
            width: 20%;
            font-size: 0;
            position: relative;
        }
            .header_logo img {
                max-width: 100%;
            }
            .header_logo img.default_logo {

            }
            .header_logo img.fixed_logo {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                pointer-events: none;
            }
            .site_logo {
                display: inline-block;
                text-align: center;
            }
                .site_logo span {
                    display: block;
                    margin-top: 6px;
                    color: #ffffff;
                    font-size: 16px;
                    font-family: var(--EBGaramond);
                    letter-spacing: 0.42em;
                    text-transform: uppercase;
                }

/* FIXED HEADER */
#header_wrap.fixedhead {
    padding: 5px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}
    #header_wrap.fixedhead .header_logo img.fixed_logo {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }
    #header_wrap.fixedhead .header_logo img.default_logo {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    #header_wrap.fixedhead .header_logo .site_logo span {
        color: var(--accent-color-dark);
        font-size: 10px;
    }
    #header_wrap.fixedhead #nav > li > a {
        color: #434343;
    }
    #header_wrap.fixedhead #nav .sub-menu {
        padding-top: 37px;
    }


/* NAVIGATION */
.navigation {
    width: 80%;
    text-align: right;
}
    #nav li {
        position: relative;
        display: inline-block;
        margin: 0 13px;
    }
        #nav li:first-child {
            margin-left: 0;
        }
        #nav li:last-child {
            margin-right: 0;
        }
        #nav li a {
            display: block;
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            line-height: 20px;
            letter-spacing: 0.025em;
            text-transform: uppercase;
        }
            #nav > li:hover > a {
                opacity: 0.6;
            }
        #nav .sub-menu {
            list-style: none outside none;
            margin: 0;
            display: none;
            padding: 20px 0 0;
            position: absolute;
            width: 100%;
            min-width: 220px;
            text-align: center;
        }
            #nav > li > .sub-menu {
                left: -200%;
                right: -200%;
                margin: 0 auto;
            }
            #nav .sub-menu li {
                width: 100%;
                margin: 0;
                position: relative;
            }
                #nav .sub-menu a {
                    color: #ffffff;
                    font-weight: 400;
                    display: block;
                    padding: 10px 5px;
                    letter-spacing: 0.15em;
                    background-color: var(--primary-color);
                }
                    #nav .sub-menu a:hover {
                        color: #ffffff;
                        background-color: var(--accent-color);
                        text-decoration: none;
                    }
                #nav .sub-menu .sub-menu {
                    margin-left: 100%;
                    top: 0;
                    padding: 0;
                }

/* HP SLIDESHOW */
#hp_slideshow_wrap {
    position: relative;
    z-index: 2;
    overflow: unset;
}
    .hp_slideshow {
        position: relative;
        z-index: 1;
    }
        .hp_slideshow::before {
            width: 100%;
            height: 100%;
            content: '';
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            background-color: var(--secondary-color);
            pointer-events: none;
            opacity: 0.3;
        }
        .hp_slideshow .cycloneslider-template-responsive {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }
        .hp_slideshow .cycloneslider-template-responsive .cycloneslider-slide {
            background-color: transparent;
        }
        .hp_slideshow .cycloneslider-template-responsive .cycloneslider-slide::before {
            width: 100%;
            height: 53.625%;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            background: rgb(0,0,0);
            background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
            opacity: 0.78;
        }
        .hp_slideshow .cycloneslider-template-responsive .cycloneslider-slide::after {
            width: 100%;
            height: 53.625%;
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 1;
            background: rgb(0,0,0);
            background: linear-gradient(360deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
            opacity: 0.5;
        }
        .scroll_button {
            position: absolute;
            z-index: 3;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
        }
            .scroll_button a {
                color: #ffffff;
                display: inline-block;
            }
                .scroll_button a i {
                    display: block;
                    font-size: 11px;
                }
                    .scroll_button a i:first-child {
                        position: relative;
                        top: 7px;
                    }
                .scroll_button a span {
                    display: block;
                    margin-top: 5px;
                    opacity: 0.5;
                    font-size: 12px;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    transition: all 0.3s ease-in-out;
                }
                .scroll_button a:hover span {
                    opacity: 1;
                }
    .hp_slide_tagline_wrap {
        width: 100%;
        position: absolute;
        z-index: 2;
        /*top: 370px;*/
        top: 46%;
        left: 0;
    }
        .hp_slide_tagline {
            max-width: 1310px;
        }
            .hp_slide_tagline h2 {
                color: #ffffff;
                font-size: 77px;
                font-size: 4.813vw;
                text-transform: uppercase;
                letter-spacing: 0.025em;
                position: relative;
                padding-left: 40px;
                line-height: 0.8;
                text-align: left;
                text-shadow: 2px 2px 0 rgb(0 0 0 / 30%);
            }

            .hp_slide_tagline h1 {
                color: #ffffff;
                font-size: 77px;
                font-size: 4.813vw;
                text-transform: uppercase;
                letter-spacing: 0.025em;
                position: relative;
                padding-left: 40px;
                line-height: 0.8;
                text-align: left;
                text-shadow: 2px 2px 0 rgb(0 0 0 / 30%);
            }
                .hp_slide_tagline h2 span {
                    display: block;
                    margin-top: 15px;
                }

                .hp_slide_tagline h1 span {
                    display: block;
                    margin-top: 15px;
                }
                .hp_slide_tagline h2::before {
                    width: 1px;
                    height: 54.89%;
                    content: '';
                    position: absolute;
                    z-index: 1;
                    top: 4px;
                    left: 0;
                    background-color: #ffffff;
                }

                .hp_slide_tagline h1::before {
                    width: 1px;
                    height: 54.89%;
                    content: '';
                    position: absolute;
                    z-index: 1;
                    top: 4px;
                    left: 0;
                    background-color: #ffffff;
                }

                .hp_slide_tagline h2::after {
                    width: 1px;
                    height: 45.11%;
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    background-color: var(--accent-color);
                }

                .hp_slide_tagline h1::after {
                    width: 1px;
                    height: 45.11%;
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    background-color: var(--accent-color);
                }
            .hp_slide_button {
                margin-top: 70px;
            }
                .hp_slide_button .custom_site_button a {
                    /*width: ;*/
                }



/* HP ABOUT */
#hp_about_wrap {
    /*padding: 45px 0 155px;*/
    padding: 60px 0 110px;
}
    .hp_about {
        padding-left: 3.75%;
        padding-right: 3.75%;
    }
        .about_content_wrap {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
        }
            .about_left_wrap {
                width: 44.32%;
                font-size: 0;
                position: relative;
                z-index: 2;
            }
                .about_photo {
                    height: 100%;
                }
                /*.about_left_wrap img {
                    width: 100%;
                    height: auto;
                }*/
            .about_right_wrap {
                width: 55.68%;
                padding: 85px 115px 89px 145px;
                background-color: var(--accent-color);
            }
                .about_title {

                }
                    .about_title .accent_title {
                        top: -110px;
                        left: -40%;
                    }
                .about_text {
                    margin-top: 70px;
                    /*color: var(--body-font-color);*/
                    color: #ffffff;
                    font-size: 14px;
                }
                    .about_text strong {
                        display: block;
                        margin-bottom: 20px;
                        /*color: var(--tertiary-color);*/
                        font-size: 28px;
                        font-weight: 700;
                        letter-spacing: 0.02em;
                        line-height: 33px;
                    }
                    .about_text p {
                        margin-bottom: 25px;
                        font-weight: 300;
                        line-height: 24px;
                        letter-spacing: 0.02em;
                    }
                .about_button {
                    width: 100%;
                    display: inline-block;
                    margin-top: 35px;
                }
                    .about_button .custom_site_button.white_btn a:hover {
                        color: var(--accent-color);
                        background-color: #ffffff;
                    }
                    .about_button .custom_site_button a::after {
                        background-color: #ffffff;
                    }


/* HP TEAM */
#hp_team_wrap {
    text-align: center;
}
    .hp_team {

    }
        .team_title .accent_title {
            top: -55px;
            left: 77%;
        }
        .team_slider_wrap {
            font-size: 0;
            margin-top: 65px;
            position: relative;
        }
            #team_slider {
                margin-left: -15px;
                margin-right: -15px;
                display: block;
                position: relative;
            }

#team_slider:not(.slick-initialized) .team_item:nth-child(n+4) ~ div {
    display: none;
}

                .team_item {
                    padding: 0 15px;
                    display: inline-block;
                    vertical-align: middle;
                    width: calc(100% / 4);
                    position: relative;
                }
                    .team_item a {
                        width: 100%;
                        height: 100%;
                        display: block;
                        position: relative;
                    }
                        .team_photo {

                        }
                            .team_photo img {
                                filter: none;
                                transition: all 0.3s ease-in-out;
                            }
                            .team_item a:hover .team_photo img {
                                filter: grayscale(1);
                            }
                        .team_info {
                            padding-top: 30px;
                            text-transform: uppercase;
                        }
                            .team_name {
                                color: var(--primary-color);
                                font-size: 32px;
                            }
                                .team_name span {
                                    display: block;
                                    margin-top: 5px;
                                }
                            .team_position {
                                margin-top: 15px;
                                color: var(--tertiary-color);
                                font-size: 13px;
                                font-weight: 300;
                                letter-spacing: 0.1em;
                            }
            .team_arrows {
                width: 100%;
                height: 62px;
                position: absolute;
                z-index: 2;
                /*top: 143px;*/
                top: calc(50% - 95px);
                left: 0;
                pointer-events: none;
            }
                .team_arrows.custom_site_arrows .slick-arrow {
                    position: absolute;
                    top: 0;
                    pointer-events: auto;
                }
                    .team_arrows.custom_site_arrows .team_prev {
                        left: -130px;
                    }
                    .team_arrows.custom_site_arrows .team_next {
                        right: -130px;
                    }
        .team_more_btn {
            margin-top: 40px;
        }


/* HP FEATURED COMMUNITIES */
#hp_featcomm_wrap {
    padding-top: 120px;
}
    .hp_featcomm {
        padding-left: 3.75%;
        padding-right: 3.75%;
    }
        .fc_top_wrap {
            padding-left: 95px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
            .fc_title_wrap {

            }
                .fc_title_wrap .custom_site_title h2 {
                    font-size: 72px;
                    padding-bottom: 25px;
                }
                .fc_title_wrap .accent_title {
                    top: -20px;
                    left: -165px;
                }
            .fc_btns_wrap {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
                .fc_more_btn {
                    margin: 0 15px;
                }
        .fc_slider_wrap {
            font-size: 0;
            margin-top: 60px;
        }
            #fc_slider {
                margin-left: -11px;
                margin-right: -11px;
            }
                .fc_item {
                    display: none;
                    padding: 0 11px;
                }
                    .fc_item a {
                        width: 100%;
                        height: 100%;
                        display: block;
                        margin-top: 70px;
                        transition: all 0.3s ease-in-out;
                        position: relative;
                    }
                        .fc_item a:hover {
                            margin-top: 0;
                        }
                        .fc_item_photo {

                        }
                        .fc_item_text {
                            padding-top: 20px;
                            padding-left: 45px;
                            position: relative;
                            z-index: 2;
                        }
                            .fc_item_text::before {
                                width: 1px;
                                height: 118px;
                                content: '';
                                position: absolute;
                                z-index: 1;
                                left: 10px;
                                bottom: 81px;
                                background-color: var(--accent-color);
                            }
                                .fc_item a:hover .fc_item_text::before {
                                    height: 202px;
                                    bottom: 0;
                                }
                            .fc_item_text::after {
                                width: 22px;
                                height: 128px;
                                content: '';
                                position: absolute;
                                left: 0;
                                bottom: 81px;
                                background-color: #ffffff;
                            }
                                .fc_item a:hover .fc_item_text::after {
                                    height: 212px;
                                    bottom: 0;
                                }
                            .fc_item_title {
                                padding-bottom: 30px;
                                color: var(--tertiary-color);
                                font-size: 22px;
                                font-weight: 800;
                                letter-spacing: 0.1em;
                                text-transform: uppercase;
                            }
                            .fc_item_btn {
                                opacity: 0;
                                visibility: hidden;
                                pointer-events: none;
                                transition: all 0.3s ease-in-out;
                            }
                                .fc_item a:hover .fc_item_btn {
                                    opacity: 1;
                                    visibility: visible;
                                    pointer-events: auto;
                                }


/* HP CTA */
#hp_cta_wrap {
    padding: 30px 0 90px;
    font-size: 0;
    text-align: center;
}
    .hp_cta {

    }
        .cta_list_wrap {

        }
            .cta_item {
                width: calc(100% / 3);
                display: inline-block;
                vertical-align: top;
                padding: 0 1px;
            }
                .cta_item a {
                    width: 100%;
                    height: 100%;
                    display: block;
                    position: relative;
                    transition: all 0.3s ease-in-out;
                }
                    .cta_item a:hover {
                        z-index: 2;
                        transform: scale(1.1);
                    }
                    .cta_item:first-child a {
                        transform-origin: center left;
                    }
                    .cta_item:last-child a {
                        transform-origin: center right;
                    }
                    .cta_item a::before {
                        width: 100%;
                        height: 100%;
                        content: '';
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        background-color: #000000;
                        opacity: 0.5;
                    }
                    .cta_item a::after {
                        width: 100%;
                        height: 100%;
                        content: '';
                        position: absolute;
                        z-index: 2;
                        top: 0;
                        left: 0;
                        border: 10px solid var(--accent-color);
                        opacity: 0;
                    }
                        .cta_item a:hover::after {
                            opacity: 1;
                        }
                    .cta_photo {

                    }
                        .cta_photo canvas {
                            min-height: 550px;
                        }
                    .cta_text_wrap {
                        width: 100%;
                        position: absolute;
                        z-index: 3;
                        top: 50%;
                        left: 0;
                        color: #ffffff;
                        padding: 0 75px;
                        text-align: right;
                        transform: translate(0,-50%);
                    }
                        .cta_item_title {
                            min-height: 106px;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            flex-flow: column;
                            justify-content: flex-end;
                            font-size: 66px;
                            text-align: left;
                            text-transform: uppercase;
                            letter-spacing: 0.02em;
                        }
                            .cta_item_title span {
                                display: block;
                                margin-bottom: 15px;
                                font-size: 25px;
                            }
                        .cta_description {
                            width: 90%;
                            max-width: 245px;
                            margin-top: 55px;
                            display: inline-block;
                            vertical-align: top;
                            font-size: 14px;
                            line-height: 29px;
                            letter-spacing: 0.02em;
                            text-align: left;
                        }
                            .cta_link {
                                margin-top: 60px;
                                padding-left: 23px;
                                line-height: 41px;
                                letter-spacing: 0.15em;
                                text-transform: uppercase;
                                border-left: 2px solid #ffffff;
                            }



/* HP FEATURED LISTINGS */
#hp_featlist_wrap {
    padding-bottom: 120px;
    text-align: center;
}
    .hp_featlist {

    }
        .featlist_title {

        }
        .fl_slider_wrap {
            margin-top: 20px;
        }
            #fl_slider {
                margin-left: -2px;
                margin-right: -2px;
            }
                .fl_item {
                    padding: 0 2px;
                }
                    .fl_item a {
                        width: 100%;
                        height: 100%;
                        display: block;
                        position: relative;
                    }
                        .fl_item a::before {
                            width: 100%;
                            height: 50%;
                            max-height: 174px;
                            content: '';
                            position: absolute;
                            z-index: 1;
                            bottom: 0;
                            left: 0;
                            background: rgb(0,0,0);
                            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                        }
                        .fl_item a::after {
                            width: 100%;
                            height: 100%;
                            content: '';
                            position: absolute;
                            z-index: 2;
                            top: 0;
                            left: 0;
                            background-color: var(--accent-color);
                            opacity: 0;
                            transition: all 0.3s ease-in-out;
                        }
                            .fl_item a:hover::after {
                                opacity: 0.5;
                            }
                    .fl_text_wrap {
                        width: 100%;
                        position: absolute;
                        z-index: 3;
                        bottom: 40px;
                        left: 0;
                        color: #ffffff;
                        text-align: center;
                        text-transform: uppercase;
                    }
                        .fl_address {
                            font-size: 20px;
                            font-weight: 600;
                            line-height: 1.2;
                        }
                        .fl_other_info {
                            margin-top: 15px;
                        }
                            .fl_other_info span {
                                font-size: 18px;
                                display: inline-block;
                                vertical-align: middle;
                                padding-left: 20px;
                                letter-spacing: 0.05em;
                            }
                                .fl_other_info span:first-child {
                                    padding-left: 0;
                                }
            .fl_btns_wrap {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                align-items: center;
                justify-content: center;
                max-width: 376px;
                margin: 50px auto 0;
            }
                .fl_more_btn {
                    margin: 0 15px;
                }


/* HP AWARDS */
#hp_awards_wrap {
    padding: 110px 0;
    text-align: center;
}
    .hp_awards_bg {
        background-color: #2c2c2c;
    }
        .hp_awards_bg canvas {
            opacity: 0.5;
        }
    .hp_awards {
        color: #ffffff;
    }
        .awards_title .accent_title {
            top: -60px;
            /*left: -30%;*/
            left: 50%;
            transform: translate(-50%,0);
        }
        .awards_list_wrap {
            font-size: 0;
            margin-top: 118px;
            padding: 0 15px;
        }
            .awards_list_wrap li {
                display: inline-block;
                vertical-align: middle;
                padding: 23px 30px;
                position: relative;
                text-align: left;
                text-transform: uppercase;
                border-left: 2px solid rgba(255,255,255,0.3);
            }
                .awards_list_wrap li:first-child {
                    border-left: none;
                    padding-left: 0;
                }
                .awards_list_wrap li:last-child {
                    padding-right: 0;
                }
                .awards_list_wrap li strong {
                    display: block;
                    font-size: 48px;
                }
                .awards_list_wrap li span {
                    display: block;
                    margin-top: 12px;
                    font-size: 18px;
                    line-height: 20px;
                    letter-spacing: 0.05em;
                }

/* HP FEATURED VIDEOS */
#hp_featvideo_wrap {
    padding: 125px 0 120px;
}
    .hp_featvideo {
        padding-left: 3.75%;
        padding-right: 3.75%;
    }
        .fv_top_wrap {
            padding-left: 95px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
        }
            .fv_title_wrap {

            }
                .fv_title_wrap .accent_title {
                    top: -55px;
                    left: 70px;
                }
            .fv_btns_wrap {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
                .fv_more_btn {
                    margin: 0 15px;
                }
        .fv_slider_wrap {
            font-size: 0;
            margin-top: 85px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
            .fv_left_wrap {
                width: 62.16%;
            }
                #fv_main_slider {

                }
                    .fv_main_item a {
                        width: 100%;
                        height: 100%;
                        display: block;
                        position: relative;
                    }
                        .fv_main_item a::before {
                            width: 100%;
                            height: 50%;
                            max-height: 291px;
                            content: '';
                            position: absolute;
                            z-index: 1;
                            bottom: 0;
                            left: 0;
                            background: rgb(0,0,0);
                            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                        }
                        .fv_main_item .fv_item_photo canvas {
                            min-height: 583px;
                        }
                        .fv_main_item .icon_play {
                            width: 137px;
                            height: 137px;
                            position: absolute;
                            z-index: 4;
                            top: 50%;
                            left: 0;
                            right: 0;
                            margin: 0 auto;
                            text-align: center;
                            transform: translate(0,-50%);
                            border-radius: 50%;
                            overflow: hidden;
                            opacity: 0;
                            transition: all 0.3s ease-in-out;
                        }
                            .fv_main_item .icon_play::after {
                                width: 100%;
                                height: 100%;
                                content: '';
                                position: absolute;
                                z-index: -1;
                                top: 0;
                                left: 0;
                                background-color: var(--accent-color);
                                border-radius: 50%;
                                opacity: 0.9;
                                transition: all 0.3s ease-in-out;
                            }
                                .fv_main_item a:hover .icon_play {
                                    opacity: 1;
                                }
                            .fv_main_item .icon_play span {
                                color: #ffffff;
                                font-size: 52px;
                                display: block;
                                line-height: 137px;
                            }
                    .fv_text_wrap {
                        width: 100%;
                        position: absolute;
                        z-index: 3;
                        left: 0;
                        bottom: 0;
                        color: #ffffff;
                        padding: 0 30px 30px;
                        text-transform: uppercase;
                    }
                        #fv_small_slider .fv_text_wrap {
                            padding: 0 20px 20px;
                        }
                        .fv_item_title {
                            font-size: 28px;
                            font-weight: 700;
                            line-height: 1.2;
                        }
                        .fv_date {
                            margin-top: 15px;
                            font-size: 18px;
                            letter-spacing: 0.05em;
                        }
            .fv_right_wrap {
                width: 37.84%;
                padding-left: 29px;
            }
                #fv_small_slider {
                    margin-top: -12px;
                    margin-bottom: -12px;
                }
                    .fv_small_item {
                        /*padding: 3px 0;*/
                        padding: 12px 0;
                    }
                        .fv_small_item a {
                            width: 100%;
                            height: 100%;
                            display: block;
                            position: relative;
                        }
                            .fv_small_item a::before {
                                width: 100%;
                                height: 50%;
                                max-height: 134px;
                                content: '';
                                position: absolute;
                                z-index: 1;
                                bottom: 0;
                                left: 0;
                                background: rgb(0,0,0);
                                background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
                            }
                            .fv_small_item .fv_item_photo canvas {
                                /*min-height: 189px;*/
                                min-height: 280px;
                            }
                            .fv_small_item .icon_play {
                                width: 64px;
                                height: 64px;
                                position: absolute;
                                z-index: 4;
                                top: 50%;
                                left: 0;
                                right: 0;
                                margin: 0 auto;
                                text-align: center;
                                transform: translate(0,-50%);
                                border-radius: 50%;
                                overflow: hidden;
                                opacity: 0;
                                transition: all 0.3s ease-in-out;
                            }
                                .fv_small_item .icon_play::after {
                                    width: 100%;
                                    height: 100%;
                                    content: '';
                                    position: absolute;
                                    z-index: -1;
                                    top: 0;
                                    left: 0;
                                    background-color: var(--accent-color);
                                    border-radius: 50%;
                                    opacity: 0.9;
                                    transition: all 0.3s ease-in-out;
                                }
                                    .fv_small_item a:hover .icon_play {
                                        opacity: 1;
                                    }
                                .fv_small_item .icon_play span {
                                    color: #ffffff;
                                    font-size: 24px;
                                    display: block;
                                    line-height: 64px;
                                }


/* HP REVIEWS */
#hp_reviews_wrap {
    text-align: center;
    padding: 130px 0 85px;
    /*padding-bottom: 105px;*/
}
    .hp_reviews_bg {
        background-color: var(--accent-color);
    }
        .hp_reviews_bg canvas {
            opacity: 0.2;
            filter: grayscale(1);
        }
    .hp_reviews {
        width: 82.125%;
    }
        .reviews_title .custom_site_title.white_text .accent_title {
            top: -100%;
            left: 145px;
            opacity: 0.05;
        }
        .reviews_slider_wrap {
            margin-top: 65px;
            padding: 95px 0 85px;
            background-color: #ffffff;
            position: relative;
        }
            #reviews_slider {
                width: 85%;
                max-width: 915px;
                margin: 0 auto;
                /*margin-left: -30px;
                margin-right: -30px;*/
            }
                .reviews_item {
                    display: none;
                    /*padding: 0 30px;*/
                }
                    .reviews_text {
                        color: var(--body-font-color);
                        font-size: 18px;
                        font-style: italic;
                        line-height: 32px;
                        letter-spacing: 0.02em;
                    }
                    .reviews_author {
                        margin-top: 30px;
                        color: var(--tertiary-color);
                        font-size: 24px;
                        font-weight: 700;
                        letter-spacing: 0.02em;
                    }
            .reviews_arrows {
                width: 100%;
                height: 62px;
                position: absolute;
                z-index: 2;
                top: calc(50% - 51px);
                left: 0;
                pointer-events: none;
            }
                .reviews_arrows .slick-arrow {
                    position: absolute;
                    pointer-events: auto;
                }
                    .reviews_prev {
                        /*left: 70px;*/
                        left: 5.45%;
                    }
                    .reviews_next {
                        /*right: 70px;*/
                        right: 5.45%;
                    }
            .reviews_more_btn {
                margin-top: 65px;
            }

/* FOOTER  */
#footer_wrap {

}
    /* FOOTER CONTACT FORM */
    #footer_form_wrap {
        padding: 83px 0;
        text-align: center;
    }
        .footer_form_bg {
            background-color: #1a1a1a;
        }
            .footer_form_bg canvas {
                opacity: 0.2;
            }
        .footer_form_title {

        }
            .footer_form_title.custom_site_title h2::before,
            .footer_form_title.custom_site_title h2::after {
                right: auto;
                left: 0;
            }
            .footer_form_title.custom_site_title h2::after {
                width: 300%;
            }
            .footer_form_title .accent_title {
                top: -56px;
                /*left: -81%;*/
                left: 50%;
                transform: translate(-50%,0);
            }
        .footer_contact_form {
            width: 90%;
            max-width: 1285px;
            margin: 0 auto;
            padding: 110px 0 85px;
            font-size: 0;
            background-color: rgba(255,255,255,0.1);
        }
            .footer_form {
                width: 90%;
                max-width: 845px;
                margin: 90px auto 0;
                position: relative;
            }
                .form_field_wrap {
                    width: 100%;
                    display: inline-block;
                    vertical-align: top;
                    position: relative;
                }
                    .form_field_short {
                        width: 32.19%;
                        display: inline-block;
                        vertical-align: top;
                        margin-left: 1.715%;
                    }
                    .form_field_long {
                        margin-top: 75px;
                    }
                    .form_field_short:first-child {
                        margin-left: 0;
                    }
                        .form_field_short input, .form_field_wrap textarea {
                            width: 100%;
                            height: 40px;
                            padding: 0 8px;
                            color: #ffffff;
                            font-size: 14px;
                            letter-spacing: 0.02em;
                            border: none;
                            border-bottom: 1px solid #ffffff;
                            background-color: transparent;
                            outline: none;
                            -webkit-appearance: none;
                            -moz-appearance:    none;
                            appearance:         none;
                        }
                        .form_field_wrap textarea {
                            height: 53px;
                            resize: none;
                        }

                .form_submit {
                    width: 219px;
                    height: 62px;
                    margin: 60px auto 0;
                    position: relative;
                }
                    .form_submit::before {
                        width: 100%;
                        height: 100%;
                        content: '';
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        border: 1px solid #ffffff;
                    }
                    .form_submit::after {
                        width: 84px;
                        height: 7px;
                        content: '';
                        position: absolute;
                        z-index: 1;
                        bottom: 0;
                        left: 0;
                        right: 0;
                        margin: 0 auto;
                        background-color: var(--accent-color);
                        transition: all 0.3s ease-in-out;
                    }
                        .form_submit:hover::after {
                            width: 100%;
                            height: 100%;
                        }
                    .form_submit input[type="submit"] {
                        width: 100%;
                        height: 100%;
                        display: inline-block;
                        vertical-align: top;
                        position: relative;
                        z-index: 2;
                        color: #ffffff;
                        font-size: 15px;
                        text-align: center;
                        text-transform: uppercase;
                        line-height: 62px;
                        letter-spacing: 0.15em;
                        text-transform: uppercase;
                        border: none;
                        background: transparent;
                        outline: none;
                        -webkit-appearance: none;
                        -moz-appearance:    none;
                        appearance:         none;
                        transition: all 0.3s ease-in-out;
                    }

                    .footer_form .ajax-loader, .footer_form .wpcf7-spinner {
                        position: absolute;
                        left: 0;
                        right: 0;
                        margin: 0 auto !important;
                        bottom: -25px;
                    }
                    .footer_form .wpcf7-form-control-wrap {
                        display: block;
                    }
                    .footer_form .use-floating-validation-tip span.wpcf7-not-valid-tip {
                        width: auto;
                        max-width: 100%;
                        font-size: 11px;
                        position: absolute;
                        top: 10px;
                    }
                    .footer_form div.wpcf7-response-output,
                    .footer_form .wpcf7 form .wpcf7-response-output {
                        position: absolute;
                        left: 0;
                        right: 0;
                        margin: 10px auto 0;
                        color: #ffffff !important;
                        font-size: 12px;
                        text-align: center;
                    }
    /* FOOTER BOTTOM */
    .footer_bottom_wrap {
        padding: 90px 0;
        color: #ffffff;
        text-align: center;
        background-color: var(--primary-bg-color);
    }
        .footer_bottom_wrap a {
            color: inherit;
        }
            .footer_bottom_wrap a:hover {
                color: var(--accent-color);
            }
        .footer_contact_info {

        }
            .foot_logos_wrap {
                font-size: 0;
            }
                .foot_logo {
                    display: inline-block;
                    vertical-align: middle;
                    margin-left: 63px;
                }
                    .foot_logo:first-child {
                        margin-left: 0;
                    }
                    .foot_logo.site_logo span {
                        font-size: 18px;
                    }
                    .foot_logo img {
                        max-width: 100%;
                    }
            .footer_info {
                font-size: 0;
                margin-top: 85px;
            }
                .foot_info {
                    display: inline-block;
                    vertical-align: middle;
                }
                    .foot_info_short {
                        margin-left: 30px;
                    }
                        .foot_info_short:first-child {
                            margin-left: 0;
                        }
                    .foot_info_long {
                        width: 100%;
                        margin-top: 20px;
                    }
                    .foot_info i {
                        display: inline-block;
                        vertical-align: middle;
                        font-size: 9px;
                        margin-right: 8px;
                    }
                        .foot_info i.ai-font-phone {
                            font-size: 13px;
                        }
                        .foot_info i.ai-font-location-c {
                            font-size: 21px;
                            margin-right: 2px;
                        }
                    .foot_info span {
                        display: inline-block;
                        vertical-align: middle;
                        font-size: 16px;
                        letter-spacing: 0.05em;
                    }
            .footer_smi {
                margin-top: 55px;
                font-size: 0;
            }
                .footer_smi a {
                    font-size: 24px;
                    display: inline-block;
                    vertical-align: middle;
                    margin-left: 38px;
                }
                    .footer_smi a:first-child {
                        margin-left: 0;
                    }
        .footer_disclaimer {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid #bbbbbb;
            font-size: 13px;
            line-height: 22px;
        }
        .footer_copyright {
            margin-top: 30px;
            font-size: 13px;
            line-height: 1.5;
        }
            .footer_copyright span {
                text-transform: uppercase;
            }
            .footer_copyright strong {
                text-decoration: underline;
            }
        .footer_mls {
            margin-top: 20px;
            font-size: 27px;
        }
            .footer_mls .ai-font-eho {
                font-size: 22px;
                top: -2px;
            }



/*******************************************************
 *
 * 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: 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,
.post-page-meet-the-team h1.entry-title
.single-aios-agents h1.agent-entry-title {
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin: 0.67em 0;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}
.post-page-meet-the-team #breadcrumbs,
.single-aios-agents #breadcrumbs {
    margin: 1.12em 0;
    line-height: 1.7;
}

/* POJO */
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;
}

/* VIDEOS */
.post-page-testimonials .aiosp-iframe-holder .aiosp-content {
    max-width: 75%;
}
.rvws_video_slider_wrap {
    font-size: 0;
    text-align: center;
}
.post-page-testimonials #aios-testimonials.aios-testimonials-page .aios-testimonials-content .rvws_video_item_photo img {
    width: 100%;
    padding: 0;
}
.rvws_video_small_slider_wrap {
    position: relative;
    margin-top: 35px;
}
.rvws_video_btns_wrap {
    width: 100%;
    height: 62px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 70px);
    left: 0;
    pointer-events: none;
}
    .rvws_video_btns_wrap .slick-arrow {
        pointer-events: auto;
        position: absolute;
        top: 0;
    }
        .rvws_video_btns_wrap .slick-arrow.rvws_video_prev {
            left: -70px;
        }
        .rvws_video_btns_wrap .slick-arrow.rvws_video_next {
            right: -70px;
        }

.rvws_video_small_item {
    padding: 0 10px;
}
.rvws_video_item_photo {
    position: relative;
}
.rvws_video_item_title {
    margin-top: 15px;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
}
.rvws_video_small_item .rvws_video_item_title {
    font-size: 18px;
}
.rvws_video_slider_wrap .icon_play {
    width: 64px;
    height: 64px;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translate(0,-50%);
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}
    .rvws_video_slider_wrap .rvws_video_main_item .icon_play {
        width: 100px;
        height: 100px;
    }
    .rvws_video_slider_wrap .rvws_video_main_item:hover .icon_play,
    .rvws_video_slider_wrap .rvws_video_small_item:hover .icon_play {
        opacity: 1;
    }
    .rvws_video_slider_wrap .icon_play::after {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        background-color: var(--accent-color);
        border-radius: 50%;
        opacity: 0.9;
        transition: all 0.3s ease-in-out;
    }
    .rvws_video_slider_wrap .icon_play span {
        color: #ffffff;
        font-size: 24px;
        display: block;
        line-height: 64px;
    }
        .rvws_video_slider_wrap .rvws_video_main_item .icon_play span {
            font-size: 40px;
            line-height: 100px;
        }

.post-page-meet-the-team #agents-results .agent-top {
    margin: 0 auto;
}
.post-page-meet-the-team #agents-results .agents-name a:hover,
.post-page-meet-the-team #agents-results .agents-contact li a:hover,
.single-aios-agents #agents-single .agents-contact li a:hover {
    color: var(--accent-color);
}
.post-page-meet-the-team #agents-results .agents-smi li a,
.single-aios-agents #agents-single .agents-smi li a {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    line-height: 27px;
}
.single-aios-agents #agents-single .agents-smi li a {
    line-height: 31px;
}
.single-aios-agents #agents-single .agents-smi li a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.post-page-meet-the-team #agents-results .agents-smi li a:hover {
    color: #ffffff;
    opacity: 0.7;
}
.single-aios-agents #agents-single .agents-contact li.agent-email-address {
    margin: 0 0 20px;
}
.post-page-meet-the-team #agents-results .agents-button,
.single-aios-agents #agents-single .agents-button {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.post-page-meet-the-team #agents-results .agents-button:hover,
.single-aios-agents #agents-single .agents-button:hover {
    color: #ffffff;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--primary-color);
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
}
.wpcf7 form .wpcf7-response-output {
    text-align: center;
    line-height: 1.2;
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=date], input[type=month], input[type=week], input[type=time], input[type=number], input[type=search], input[type=url], textarea {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #000;
    vertical-align: middle;
    background-color: #fcfcfc;
    background-image: none;
    border: 1px solid #e6e6e6;
    -moz-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.post-page-request-cma .gform_button.button {
    background-color: #428bca;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 6px 12px;
    font-weight: normal;
    text-shadow: none;
    border: 1px solid #2d6ca2;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.post-page-mortgage-calculator .srp_MortgageCalcwidget tr {
    margin-bottom: 10px;
}
.post-page-mortgage-calculator .srp_MortgageCalcwidget input[type=text] {
    width: 92%;
    margin-right: 3%;
    margin-bottom: 5px;
    display: inline-block;
}

.ip-banner p#breadcrumbs{
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
    /*left: 9%;*/
    width: 100%;
    max-width: 1170px;
    padding: 15px;
    bottom: 0;
    /*top: -9%;*/
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.050em;
    line-height: 1;
    text-transform: uppercase;
}
/*#content p#breadcrumbs {
    opacity: 0;
}
.ip-banner p#breadcrumbs.show {
    opacity: 1;
}*/

.ip-banner p#breadcrumbs span.breadcrumb_last {
    font-weight: 700;
}

.ip-banner p#breadcrumbs a{
    color: #fff !important;
}

.post-page-featured-properties #content p#breadcrumbs{
    top: -2.5%;
}

.post-page-testimonials #content p#breadcrumbs,
.post-page-meet-the-team #content p#breadcrumbs{
    top: -1.5%;
}

.single-aios-agents #content p#breadcrumbs{
    top: -5.5%;
}

#hp_cta_wrap, #hp_awards_wrap,  #footer_wrap{
    display: none;
}

#hp_about_wrap,#hp_team_wrap, #hp_featcomm_wrap, #hp_featlist_wrap, #hp_featvideo_wrap, #hp_reviews_wrap{
    opacity: 0;
}

.grecaptcha-badge {
    z-index: 999;
}
.captcha-image{
    color: #000;
    margin:16px auto;
}
.footer_form .captcha-image {
    color: #fff;
    margin-top: 16px;
}
.cf7ic_instructions{
    font-size: 16px;
}

.postid-4465 #content h2::before,
.postid-4465 #content h3::before {
    display: block;
    content: ' ';
    height: 8em;
    margin-top: -8em;
    width: 100%;
    visibility: hidden;
}

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