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

/*

TABLE OF CONTENTS

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


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


/* Sub Menu */
#nav li,
#nav2 li{
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu,
#nav2 .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /*display: none;*/
    padding: 0;
    position: absolute;
    width:100%;
    min-width:180px;
    left: 50%;
    margin-left: -90px;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
#nav .sub-menu a,
#nav2 .sub-menu a{
    color: #fff;
    display: block;
    padding: 10px;
    background: #d2232a;
}
#nav .sub-menu a:hover,
#nav2 .sub-menu a:hover {
    background: #3a3a3a;
    color: #fff;
    text-decoration: none;
}
#nav .sub-menu .sub-menu,
#nav2 .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
    left: 1px;
    padding-top: 0 !important;
}
#nav li:hover > .sub-menu,
#nav2 li:hover > .sub-menu{
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
#nav .sub-menu li,
#nav2 .sub-menu li{
    position: relative;
    display: block;
}


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

/* Global */

body{
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	background: #FFF;
	color: #000000;
	margin: 0;

    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
     -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
}

a,a:hover,a:visited,a:focus,input,input:focus,textarea,textarea:focus,select:focus,select{
    outline: none !important;
    text-decoration: none !important;
}

.slick-slide{
    outline: none !important;
}

.label-hide{
    display: none !important;
}

.no-padding {
    padding: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-margin {
    margin: 0;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

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

body.body-overflow{
    overflow: hidden;
}

/*header*/
header.main-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
}

    .hdr-inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

/*fixed header*/
.fixed-header {
    position: fixed;
    margin-top: -100px;
    opacity: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(54, 58, 61, 0.9);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .fixed-header .hdr-burger-menu-holder {
        width: 9.5625%;
    }

        .fixed-header .header-burger-menu {
            height: 100px;
        }

            .fixed-header.show-fixed{
                margin-top: 0;
                opacity: 1;
            }

/*site off*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}

    .site-offcanvas .offcanvas-backdrop.active {
        visibility: visible;
    }

        .site-offcanvas .offcanvas-backdrop {
            position: fixed;
            z-index: 1002;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            visibility: hidden;
        }

            .slide-menu-content {
                position: fixed;
                top: 0;
                right: -50%;
                width: 90%;
                max-width: 1250px;
                height: 100%;
                opacity: 0;
                background: #383c3f;
                z-index: 1002;
                visibility: hidden;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .slide-menu-content.active {
                    right: 0;
                    opacity: 1;
                    visibility: visible;
                }

                    .slide-menu-inner-content {
                        position: relative;
                        height: 100%;
                        overflow-y: auto;
                        padding: 35px 94px;
                        background: #383c3f url(images/slide-menu-bg2.png) no-repeat;
                        background-size: cover;
                        background-position: center;
                        z-index: 2;
                    }

                        .close-b-menu {
                            width: 107px;
                            height: 113px;
                            position: absolute;
                            top: 0;
                            right: 0;
                            text-align: center;
                            color: #fff;
                            background: #d2232a;
                            z-index: 5;
                            font-size: 29px;
                            -webkit-transition: all 0.4s ease-in-out;
                            -moz-transition: all 0.4s ease-in-out;
                            -o-transition: all 0.4s ease-in-out;
                            transition: all 0.4s ease-in-out;
                            display: -webkit-box;
                            display: -webkit-flex;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-pack: center;
                            -webkit-justify-content: center;
                            -ms-flex-pack: center;
                            justify-content: center;
                            -webkit-box-align: center;
                            -webkit-align-items: center;
                            -ms-flex-align: center;
                            align-items: center;
                            cursor: pointer;
                        }

                            .close-b-menu em{
                                font-weight: 700;
                            }

                                .close-b-menu:hover{
                                    background: #bc161d;
                                }

ul#slidenav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

ul#slidenav > li > a {
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
}

    ul#slidenav > li:hover > a{
        color: #d2232a;
    }

        ul#slidenav > li {
            margin-bottom: 70px;
        }

            ul#slidenav > li:last-child{
                border-bottom: none;
            }

            nav.b-nav {
                height: 100%;
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -webkit-justify-content: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -webkit-align-items: center;
                -ms-flex-align: center;
                align-items: center;
            }

                nav.b-nav .menu-main-nav-container {
                    width: 100%;
                }

                    ul#slidenav > li > ul.sub-menu {
                        margin-top: 17px;
                    }

                        ul#slidenav ul.sub-menu a {
                            font-size: 14px;
                            padding: 5px;
                            font-weight: 300;
                            display: block;
                            color: #c0bbbb;
                            letter-spacing: 2.5px;
                            text-transform: uppercase;
                            -webkit-transition: all 0.4s ease-in-out;
                            -moz-transition: all 0.4s ease-in-out;
                            -o-transition: all 0.4s ease-in-out;
                            transition: all 0.4s ease-in-out;
                            font-family: 'Poppins', sans-serif;
                        }

                            ul#slidenav ul.sub-menu a:hover{
                                color: #fff !important;
                            }

                            ul#slidenav ul.sub-menu {
                                display: block;
                            }

                                ul#slidenav ul.sub-menu li {
                                    margin-bottom: 1px;
                                    padding-left: 1px;
                                }

                                    ul#slidenav > li > ul.sub-menu > li > ul.sub-menu {
                                        margin-top: 5px;
                                    }

                                ul#slidenav > li > ul.sub-menu > li > ul.sub-menu > li {
                                    padding-left: 11px;
                                    position: relative;
                                }

                            ul#slidenav > li:nth-child(1),
                            ul#slidenav > li:nth-child(4) {
                                width: 28.5%;
                            }

                        ul#slidenav > li:nth-child(2), 
                        ul#slidenav > li:nth-child(5) {
                            width: 30.7%;
                        }

                    ul#slidenav > li:nth-child(3), 
                    ul#slidenav > li:nth-child(6) {
                        width: 40%;
                    }

                .b-menu-emrgncy-list {
                    font-size: 16px;
                    color: #fff;
                    font-weight: 300;
                    font-family: 'Poppins', sans-serif;
                    letter-spacing: 3.4px;
                    margin-bottom: 20px;
                    line-height: 1.3;
                }

            .b-menu-emrgncy-list a {
                color: #fff;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

        .b-menu-emrgncy-list a:hover {
            color: #d2232a;
        }

    .b-menu-title {
        font-size: 18px;
        font-weight: 300;
        text-transform: uppercase;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 3.2px;
        line-height: 1.1;
        margin-bottom: 25px;
    }

        .b-menu-emrgncy-contact {
            margin-top: 9px;
        }

            .slide-contact span a {
                font-size: 16px;
                font-weight: 300;
                color: #fff;
                font-family: 'Poppins', sans-serif;
                padding: 5px 0;
                display: inline-block;
                letter-spacing: 2.7px;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

                .slide-contact span a:hover{
                    color: #d2232a;
                }

                    .slide-contact em.ai-font-phone {
                        font-size: 16px;
                        margin-right: 1px;
                        color: #d2232a;
                    }

                        .slide-contact em.ai-font-envelope-f {
                            font-size: 12px;
                            color: #d2232a;
                        }

                            .slide-contact span {
                               display: inline-block;
                               vertical-align: middle;
                            }

                                .slide-smi{
                                    margin: 0 -15px;
                                }

                                    .slide-smi a {
                                        display: inline-block;
                                        vertical-align: middle;
                                        font-size: 20px;
                                        color: #fff;
                                        padding: 5px;
                                        margin: 0 14px;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                        .slide-smi a:hover{
                                            color: #d2232a;
                                        }

                                    .slide-contact-info {
                                        -webkit-box-align: center;
                                        -webkit-align-items: center;
                                        -ms-flex-align: center;
                                        align-items: center;
                                        display: -webkit-box;
                                        display: -webkit-flex;
                                        display: -ms-flexbox;
                                        display: flex;
                                        border-top: solid 1px #53575a;
                                        margin-top: -32px;
                                        padding: 25px 0 0;
                                        max-width: 1002px;
                                    }

                                span.slide-c-border {
                                    width: 1px;
                                    height: 15px;
                                    background: #fff;
                                    margin: 0 27px;
                                }

                            .slide-menu-logo a {
                                display: block;
                                max-width: 201px;
                            }

                        .b-menu {
                            margin-top: 71px;
                            left: 80px;
                            opacity: 0;
                            position: relative;
                            -webkit-transition: all 1.3s ease-in-out;
                            -moz-transition: all 1.3s ease-in-out;
                            -o-transition: all 1.3s ease-in-out;
                            transition: all 1.3s ease-in-out;
                        }

                    .b-menu.show{
                        left: 0;
                        opacity: 1;
                    }

/*logo*/
.header-logo{
    width: 17.5625%;
    padding: 0 15px;
}

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

/*nav*/
nav.header-nav {
    width: 64.875%;
    position: relative;
    text-align: center;
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    nav.header-nav ul#nav,
    nav.header-nav ul#nav2{
        font-size: 0;
        position: relative;
        z-index: 5;
    }

        nav.header-nav ul#nav > li,
        nav.header-nav ul#nav2 > li{
            margin: 0 18px;
            position: relative;
            display: inline-block;
            vertical-align: top;
        }

            nav.header-nav ul#nav > li > a,
            nav.header-nav ul#nav2 > li > a{
                font-size: 14px;
                text-align: center;
                color: #fff;
                font-weight: 400;
                text-transform: uppercase;
                font-family: 'Poppins', sans-serif;
                padding: 5px;
                letter-spacing: 4px;
                display: block;
                position: relative;
                z-index: 5;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                nav.header-nav ul#nav > li:first-child,
                nav.header-nav ul#nav2 > li:first-child{
                    margin-left: 0 !important;
                }

                    nav.header-nav ul#nav > li:last-child,
                    nav.header-nav ul#nav2 > li:last-child{
                        margin-right: 0;
                    }

                        nav.header-nav ul#nav .sub-menu a,
                        nav.header-nav ul#nav2 .sub-menu a {
                            color: #fff;
                            padding: 12px 10px;
                            font-size: 14px;
                            font-weight: 400;
                            font-family: 'Poppins', sans-serif;
                            text-align: center;
                            letter-spacing: 1.4px;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }

                            nav.header-nav ul#nav .sub-menu li:hover > a,
                            nav.header-nav2 ul#nav .sub-menu li:hover > a{
                                color: #fff;
                            }

                                nav.header-nav ul#nav > li:hover > a,
                                nav.header-nav ul#nav2 > li:hover > a{
                                    color: #bdc0c1 !important;
                                }

                                    nav.header-nav ul#nav .sub-menu li,
                                    nav.header-nav ul#nav2 .sub-menu li{
                                        margin-bottom: 1px;
                                    }

/*burger menu*/
.hdr-burger-menu-holder{
    width: 17.5625%
}

    .header-burger-menu {
        width: 107px;
        height: 113px;
        background: #d2232a;
        margin: 0 0 0 auto;
        padding: 0 34px;
        cursor: pointer;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .header-burger-menu:hover{
            background: #bc161d;
        }

            .header-burger-menu span {
                display: block;
                height: 3px;
                background: #fff;
                width: 100%;
                margin: 3px 0px 3px auto;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .header-burger-menu span:first-child{
                    width: calc(100% - 19px);
                }

                    .header-burger-menu span:last-child{
                        width: calc(100% - 8px);
                    }

                        .header-burger-menu:hover span{
                            width: 100% !important;
                        }

/*slideshow*/
.slideshow-area,
.slider-holder {
    position: relative;
}

    .slider-holder .cycle-slide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #1d1d1d;
        opacity: 0;
    }

        .slider-overlay {
     
    position: absolute;
    /* bottom: 20%; */
    left: 0;
    width: 100%;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* margin-top: 100px; */
    bottom: calc(0% - -99px);
        }

            .tagline-text {
                font-size: 90px;
                font-weight: 500;
                color: #fff;
                text-transform: uppercase;
                text-align: center;
                font-family: 'Poppins', sans-serif;
                line-height: 1;
                margin-bottom: 76px;
                visibility: hidden;
            }

                .tagline-text em{
                    display: block;
                    font-size: 35px;
                    font-style: normal;
                    letter-spacing: 5px;
                    margin-bottom: 2px;
                }

                    .tagline-text span{
                        display: block;
                        font-size: 24.5px;
                        text-transform: none;
                        letter-spacing: .4px;
                        margin-top: 5px;
                    }


/*slider cta*/
.slider-cta-list{
    visibility: hidden;
}

.slider-cta-list a {
    display: block;
    max-width: 360px;
    margin: 0 auto;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    border: solid 1px rgba(255,255,255,.6);
    height: 96px;
    line-height: 96px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .slider-cta-list a:hover{
        background: #d2232a;
        border: solid 1px #d2232a;
    }

/*welcome*/
section.welcome-area {
    padding: 80px 0 48px;
    background: #f5f5f5;
    padding-top: 100px;
}

    h1.wc-title {
        font-size: 60px;
        color: #d2232a;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
        letter-spacing: 3px;
        line-height: .84;
        margin-bottom: 36px;
    }

        h1.wc-title span{
            display: block;
            color: #414446;
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 8px;
            margin-bottom: 13px;
        }

            .wc-text p {
                font-size: 16px;
                font-weight: 300;
                color: #5c5c5c;
                font-family: 'Poppins', sans-serif;
                letter-spacing: .3px;
                line-height: 1.9;
            }

                .wc-text {
                    /*max-width: 615px;*/
                }

                    .wc-photo {
                        max-width: 458px;
                        margin: 0 auto;
                    }

                        .wc-content {
                            text-align: center;
                            padding-bottom: 55px;
 
                        }

/*team*/
.team-list{
    text-align: center;
    padding: 10px;
}

.team-photo {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

    .team-list a {
        display: block;
        position: relative;
    }

        .team-photo canvas {
            display: block;
            width: 100%;
            background: #000;
            opacity: 0;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

             .team-list a:hover canvas {
                opacity: .2;
            }

/*cta */
section.cta2-area {
    padding: 80px 0 80px;
}

    .cta2-holder {
        padding: 0 15px;
    }

        .cta2-inner {
            max-width: 1568px;
            margin: 0 auto;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .cta2-list {
                width: calc(100% / 3);
                padding: 9.5px;
            }

                .cta2-list a{
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -webkit-justify-content: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    -ms-flex-align: center;
                    align-items: center;
                    position: relative;
                    text-align: center;
                    background: #3a3a3a;
                    height: 267px;
                    height: 16.688vw;
                    overflow: hidden;
                }

                    .cta2-list:nth-child(even) a{
                        background: #d2232a;
                    }

                        .cta2-label {
                            font-size: 40px;
                            color: #fff;
                            text-transform: uppercase;
                            font-weight: 600;
                            font-family: 'Cormorant Garamond', serif;
                            margin-bottom: 36px;
                            letter-spacing: 2px;
                            line-height: 1.2;
                        }

                            .cta2-btn {
                                font-size: 12px;
                                text-transform: uppercase;
                                color: #fff;
                                font-weight: 600;
                                font-family: 'Poppins', sans-serif;
                                border: solid 1px #c9c9c9;
                                max-width: 166px;
                                height: 61px;
                                margin: 0 auto 5px;
                                line-height: 61px;
                                letter-spacing: 2px;
                                opacity: 0;
                                -webkit-transition: all 0.3s ease-in-out;
                                -moz-transition: all 0.3s ease-in-out;
                                -o-transition: all 0.3s ease-in-out;
                                transition: all 0.3s ease-in-out;
                            }

                                .cta2-content {
                                    margin-top: 7.313vw;
                                    -webkit-transition: all 0.3s ease-in-out;
                                    -moz-transition: all 0.3s ease-in-out;
                                    -o-transition: all 0.3s ease-in-out;
                                    transition: all 0.3s ease-in-out;
                                    width: 100%;
                                }

                                    .cta2-list a:hover .cta2-btn{
                                        opacity: 1;
                                    }

                                .cta2-list a:hover .cta2-content{
                                    margin-top: 0;
                                }

/*testimonials*/
section.testimonials-area {
    background: #f5f5f5;
    padding: 80px 0 80px;
}

    .testi-title {
        font-size: 60px;
        color: #d2232a;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
        letter-spacing: 3px;
        line-height: .84;
        margin-bottom: 32px;
        text-align: center;
        position: relative;
        padding-bottom: 42px;
    }

        .testi-title span{
            display: block;
            color: #414446;
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 8px;
            margin-bottom: 13px;
        }

            .testi-title::after{
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                width: 41px;
                height: 3px;
                background: #838383;
            }

                .testi-text {
                    font-size: 16px;
                    color: #5c5c5c;
                    text-align: center;
                    font-weight: 300;
                    font-family: 'Poppins', sans-serif;
                    line-height: 2.25;
                    letter-spacing: .3px;
                    margin-bottom: 46px;
                }

                    .testi-author {
                        font-size: 16px;
                        color: #5c5c5c;
                        text-align: center;
                        font-weight: 700;
                        font-family: 'Poppins', sans-serif;
                        letter-spacing: .2px;
                    }

/*blog*/
section.blog-area {
    padding: 80px 0 101px;
    display: none;
}

    .blog-title {
        font-size: 45px;
        color: #d2232a;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
        letter-spacing: 3px;
        line-height: .84;
        margin-bottom: 5px;
        text-align: center;
        position: relative;
        padding-bottom: 42px;
    }

        .blog-title span{
            display: block;
            color: #414446;
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 8px;
            margin-bottom: 13px;
        }

            .blog-list a {
                display: block;
                max-width: 360px;
                margin: 0 auto;
                overflow: hidden;
                position: relative;
                background: transparent;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .blog-content h2 {
                    font-size: 24px;
                    font-weight: 600;
                    text-align: center;
                    color: #414446;
                    text-transform: uppercase;
                    font-family: 'Cormorant Garamond', serif;
                    line-height: 1.25;
                    letter-spacing: 1.2px;
                    position: relative;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3s ease-in-out;
                    top: 0;
                }

                    .blog-content span {
                        font-size: 14px;
                        font-weight: 600;
                        color: #797f82;
                        display: block;
                        text-align: center;
                        font-family: 'Poppins', sans-serif;
                        margin-bottom: 44px;
                        letter-spacing: 4px;
                    }

                        .blog-photo canvas {
                            display: block;
                            width: 100%;
                            -webkit-filter: grayscale(0);
                            filter: grayscale(0);
                            background-size: cover;
                            background-position: center;
                            background-repeat: no-repeat;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }

                            .blog-photo {
                                position: relative;
                                background: #363a3d;
                            }

                                .blog-photo::after {
                                    content: '';
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 46px;
                                    background: #fff;
                                    -webkit-transition: all 0.3s ease-in-out;
                                    -moz-transition: all 0.3s ease-in-out;
                                    -o-transition: all 0.3s ease-in-out;
                                    transition: all 0.3s ease-in-out;
                                }

                                    .blog-info {
                                        position: absolute;
                                        top: 20px;
                                        left: 0;
                                        width: 100%;
                                        text-align: center;
                                        z-index: 5;
                                        padding: 0 33px;
                                        opacity: 0;
                                        -webkit-transition: all 0.3s ease-in-out;
                                        -moz-transition: all 0.3s ease-in-out;
                                        -o-transition: all 0.3s ease-in-out;
                                        transition: all 0.3s ease-in-out;
                                    }

                                        .blog-info p{
                                            font-size: 14px;
                                            font-weight: 300;
                                            font-family: 'Poppins', sans-serif;
                                            color: #c8c8c8;
                                            line-height: 1.75;
                                            letter-spacing: .2px;
                                        }

                                            .blog-info span {
                                                display: block;
                                                font-size: 12px;
                                                text-transform: uppercase;
                                                color: #fff;
                                                font-weight: 600;
                                                font-family: 'Poppins', sans-serif;
                                                border: solid 1px #c9c9c9;
                                                max-width: 166px;
                                                height: 61px;
                                                margin: 34px auto 0;
                                                line-height: 61px;
                                                letter-spacing: 2px;
                                            }

                                        .blog-list a:hover .blog-info{
                                            top: 13px;
                                            opacity: 1;
                                        }

                                    .blog-list a:hover .blog-content h2{
                                        top: -10px;
                                        color: #fff;
                                    }

                                .blog-list a:hover{
                                    background: #363a3d;
                                }

                            .blog-list a:hover .blog-photo::after{
                                opacity: 0;
                            }

                        .blog-content {
                            padding: 35px 51px 0;
                        }

                    .blog-photo::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 5;
                        opacity: 0;
                        background: linear-gradient(to bottom, rgba(59,59,59,1) 0%,rgba(59,59,59,0.98) 23%,rgba(59,59,59,0.9) 36%,rgba(59,59,59,0.8) 45%,rgba(59,59,59,0.64) 55%,rgba(59,59,59,0.14) 80%,rgba(59,59,59,0.07) 88%,rgba(59,59,59,0) 100%);
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                .blog-list a:hover .blog-photo::before{
                    opacity: 1;
                }

            .blog-list a:hover .blog-photo canvas {
                -webkit-filter: grayscale(1);
                filter: grayscale(1);
                opacity: .1;
            }

/*get in touch*/
section.get-in-touch-area {
    position: relative;
    padding: 79px 0 67px;
    background: #4c5053;
}

    .gt-title {
        font-size: 45px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        font-family: 'Cormorant Garamond', serif;
        letter-spacing: 3px;
        line-height: .84;
        margin-bottom: 2px;
        text-align: center;
        position: relative;
        padding-bottom: 42px;
    }

        .gt-title span{
            display: block;
            color: #fff;
            font-size: 18px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 8px;
            margin-bottom: 13px;
        }

            .gt-holder {
                font-size: 0;
                position: relative;
                z-index: 5;
            }

                .gt-form input,
                .gt-form textarea {
                    font-size: 12px;
                    width: 100%;
                    font-weight: 300;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    height: 52px;
                    color: #fff;
                    background: transparent;
                    font-family: 'Poppins', sans-serif;
                    padding: 0 20px;
                    letter-spacing: .5px;
                    border-radius: 0;
                    resize: none;
                    border: solid 1px #b8b8b8;
                }

                    .gt-form textarea {
                        padding-top: 19px;
                    }

                .gt-fields {
                    margin-bottom: 5px;
                    position: relative;
                    padding: 0 1.5px;
                    display: inline-block;
                    vertical-align: top;
                    width: 20.648%;
                }

                    .gt-form div.wpcf7 .ajax-loader {
                        margin: 0 auto !important;
                        display: block;
                    }

                        .gt-form span.wpcf7-not-valid-tip {
                            font-size: 10px;
                        }

                                .gt-form span.wpcf7-form-control-wrap {
                                    display: block;
                                }

                                    .gt-form div.wpcf7-response-output {
                                        margin: auto;
                                        position: absolute;
                                        width: calc(100% - 3px);
                                        font-size: 12px;
                                        color: #fff;
                                        text-align: center;
                                        left: 0;
                                        right: 0;
                                    }

                                        .gt-form form {
                                            position: relative;
                                        }

                                            .gt-fields.gt-btn input{
                                                background: #d2232a;
                                                color: #fff;
                                                padding: 0;
                                                font-size: 14px;
                                                font-family: 'Poppins', sans-serif;
                                                font-weight: 600;
                                                text-transform: uppercase;
                                                text-align: center;
                                                border: none;
                                                -webkit-transition: all 0.4s ease-in-out;
                                                -moz-transition: all 0.4s ease-in-out;
                                                -o-transition: all 0.4s ease-in-out;
                                                transition: all 0.4s ease-in-out;
                                            }

                                        .gt-fields.gt-btn input:hover{
                                            background: #bc161d;
                                        }

                                    .gt-fields.gt-textarea{
                                        width: 26.597%;
                                    }

                                .gt-fields.gt-btn{
                                    width: 11.199%;
                                    padding: 0;
                                }

                            .gt-form {
                                margin: 0 -1.5px;
                            }

/*footer*/
footer.main-footer {
    background: #363a3d;
    padding: 57px 0 30px;
}

    .ftr-top-row::before{
        display: none;
    }

        .ftr-top-row{
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .ftr-title {
                font-size: 17px;
                font-weight: 600;
                text-transform: uppercase;
                color: #fff;
                font-family: 'Poppins', sans-serif;
                letter-spacing: 3.2px;
                line-height: 1.1;
            }

                .ftr-border {
                    position: relative;
                }

                    .ftr-border::after{
                        content: '';
                        position: absolute;
                        top: -50px;
                        left: 0;
                        width: 100%;
                        height: 299px;
                        border-left: solid 1px #45494d;
                        border-right: solid 1px #45494d;
                    }

/*footer logo*/
.ftr-logo {
    padding: 0 15px;
}

    .ftr-logo a {
        display: block;
        max-width: 284px;
        margin: 0 auto;
    }

/*footer nav*/
.ftr-nav {
    position: relative;
    width: 100%;
    max-width: 215px;
    margin: 0 auto;
    z-index: 5;
}

    ul.footernav {
        font-size: 0;
        margin-top: 16px;
    }

        ul.footernav li {
            position: relative;
            margin-bottom: 12px;
        }

            ul.footernav li a {
                display: inline-block;
                padding: 5px 0;
                color: #80868b;
                font-size: 14px;
                font-weight: 300;
                letter-spacing: 2.5px;
                font-family: 'Poppins', sans-serif;
                text-transform: uppercase;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                ul.footernav li a:hover{
                    color: #fff;
                }

.ftr-contact-info {
    max-width: 290px;
    margin: 0 auto;
}

.ftr-contact {
    margin-top: 8px;
}

    .ftr-contact span a {
        font-size: 14px;
        font-weight: 300;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        padding: 5px 0;
        display: inline-block;
        letter-spacing: 2.7px;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .ftr-contact span a:hover{
            color: #d2232a;
        }

            .ftr-contact em.ai-font-phone {
                font-size: 14px;
                margin-right: 2px;
                color: #d2232a;
            }

                .ftr-contact em.ai-font-envelope-f {
                    font-size: 11px;
                    color: #d2232a;
                }

                    .ftr-contact span {
                        display: block;
                        margin-bottom: 3px;
                    }
/*footer smi*/
.ftr-smi{
    padding: 3px 8px;
}

    .ftr-smi a {
        display: inline-block;
        vertical-align: middle;
        font-size: 18px;
        color: #fff;
        padding: 5px;
        margin: 0 12px;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

        .ftr-smi a:hover,
        .ftr-emrgncy-list a:hover{
            color: #d2232a;
        }

.ftr-emrgncy-contact {
    max-width: 290px;
    margin: 28px auto 0;
}

    .ftr-emrgncy-list {
        font-size: 14px;
        color: #fff;
        font-weight: 300;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 2.7px;
        margin-bottom: 18px;
        line-height: 1.3;
    }

        .ftr-emrgncy-list a{
            color: #fff;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
        }

        .ftr-emrgncy-contact .ftr-title {
            margin-bottom: 13px;
        }

.footer-bot {
    margin-top: 40px;
    border-top: solid 1px #45494d;
}

.footer-copyright {
    text-align: center;
    padding: 36px 0 0;
    line-height: 1.5;
}

.footer-copyright,
.footer-copyright a{
    font-size: 11px;
    color: #80868b;
    letter-spacing: .9px;
    font-family: 'Poppins', sans-serif;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .footer-copyright a:hover,
    .footer-copyright a[href="https://www.agentimage.com"]:hover{
        color: #fff !important;
    }

        .footer-copyright a[href="https://www.agentimage.com"]{
            text-decoration: underline !important;
            color: #80868b;
        }   

            .mls {
                font-size: 21px;
                color: #80868b;
                margin-top: 18px;
                text-align: center;
            }

         

/*******************************************************
 *
 * 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: 113px;
		height: 113px;
        background-color: #f9f7f7;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .ip-banner .container{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }
        .ip-banner h1 {
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color: #FFF;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.7;
        }
            .ip-banner h1 span{
                display: block;
                font-size: 24px;
                font-weight: 400;
                text-transform: none;
                letter-spacing: 0.01em;
            }
/* Adjust minimum height of page area */ 
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px;}

/** Adjust width of content columns **/
#content-sidebar #content{ width: 74%; }
#content-full #content { width: 100%; }

/* Adjust width of sidebar */
.sidebar{ width: 24%; }

.sidebar .ftr-contact span a,
.sidebar .ftr-smi a,
.sidebar .ftr-emrgncy-list,
.sidebar .ftr-emrgncy-list a {
    color: #d2232a;
    font-weight: 400;
}

.sidebar .ftr-title {
    color: #323539;
    text-align: center;
}

.sidebar .ftr-contact-info {
    margin-top: 40px;
}

.sidebar .ftr-contact-info,
.sidebar .ftr-emrgncy-contact {
    text-align: center;
}

.sidebar .ftr-contact span a:hover, 
.sidebar .ftr-smi a:hover, 
.sidebar .ftr-emrgncy-list a:hover{
    color: #323539 !important;
}

.sidebar .slider-cta-list{
    visibility: visible;
}

.sidebar .slider-cta-list a {
    margin: 0 auto 15px;
    color: #4c5053;
    border: solid 1px #4c5053;
    font-size: 25px;
}

.sidebar .slider-cta-list a:hover {
    background: #d2232a;
    border: solid 1px #d2232a;
    color: #fff;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}
    .page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
        margin-left: -15px;
        margin-right: -15px;
    }

/* Adjust line height of page elements */
#content h4, aside h4,
#content p, aside p,
#content blockquote, aside blockquote,
#content ul, aside ul,
#content fieldset, aside fieldset,
#content form, aside form,
#content ol, aside ol,
#content dl, aside dl,
#content dir, aside dir,
#content menu, aside menu { line-height:1.7 }

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title { 
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    line-height: .84;
    color: #d2232a;
    font-size: 30px;
}

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

}

#content .entry {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.aios-mobile-header-wrapper {
    z-index: 1001 !important;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li:hover > a, 
.aios-mobile-header-wrapper .amh-navigation .amh-menu li.open > a {
    background: #d2232a;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li ul {
    background: #3a3a3a;
}

.aios-mobile-header-wrapper .amh-navigation .amh-menu li ul a {
    color: #fff;
}

.ip-team-holder {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
}

.ip-team-list {
    width: 25%;
    text-align: center;
    padding: 10px;
}

.team-list{
    text-align: center;
    padding: 10px;
}

.ip-team-list .team-photo{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.ip-team-list .team-photo canvas {
    display: block;
    width: 100%;
    background: #000;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ip-team-list a {
    display: block;
    position: relative;
}

.ip-team-list a:hover .team-photo canvas{
    opacity: .2;
}

.team-name {
    font-size: 15px;
    padding: 10px 0;
}
     

.page-id-67 #gallery-2 .gallery-item{

    margin-bottom: -12px;
}

.grecaptcha-badge {
    z-index: 99;
}

.error404 div.wpcf7-response-output,
.page-id-30 div.wpcf7-response-output {
    text-align: center;
}

/*IHF FIXES*/

#ihf-main-container .pull-right.btn-group {
   text-align: right;
}

#ihf-main-container .btn-group>.btn-group {
  float: none;
  display: inline-block;
}

.ihf-advanced-search-launch {
    white-space: normal;
}

#ihf-main-container ul {
    padding-left: 0;
    margin-left: 0;
}

#ihf-main-container .mc-total-payment-subline {
    color: #666 !important;
}

#ihf-main-container #ihf-map-canvas {
    z-index: 1;
}

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

