/*
Theme Name: Aaron Ouweleen
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:206px;
    left: 50%;
    margin-left: -103px;
    padding-top: 18px;
    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;
}
#nav2 .sub-menu {
    padding-top: 38px;
}
#nav .sub-menu a,
#nav2 .sub-menu a{
    color: #fff;
    display: block;
    padding: 10px;
    background: #fff;
}
#nav .sub-menu a:hover,
#nav2 .sub-menu a:hover{
    background: #1c2348;
    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;
}

div#main-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 296px;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0.99) 14%,rgba(0,0,0,0.92) 26%,rgba(0,0,0,0.88) 28%,rgba(0,0,0,0.89) 29%,rgba(0,0,0,0.87) 30%,rgba(0,0,0,0.87) 31%,rgba(0,0,0,0.83) 33%,rgba(0,0,0,0.8) 34%,rgba(0,0,0,0.77) 37%,rgba(0,0,0,0.73) 38%,rgba(0,0,0,0.73) 40%,rgba(0,0,0,0.7) 41%,rgba(0,0,0,0.57) 46%,rgba(0,0,0,0.56) 47%,rgba(0,0,0,0.57) 48%,rgba(0,0,0,0.52) 49%,rgba(0,0,0,0.51) 50%,rgba(0,0,0,0.46) 52%,rgba(0,0,0,0.46) 53%,rgba(0,0,0,0.41) 55%,rgba(0,0,0,0.36) 57%,rgba(0,0,0,0.36) 58%,rgba(0,0,0,0.3) 61%,rgba(0,0,0,0.31) 62%,rgba(0,0,0,0.27) 63%,rgba(0,0,0,0.27) 64%,rgba(0,0,0,0.24) 65%,rgba(0,0,0,0.19) 68%,rgba(0,0,0,0.17) 69%,rgba(0,0,0,0.16) 71%,rgba(0,0,0,0.14) 72%,rgba(0,0,0,0.16) 73%,rgba(0,0,0,0.12) 74%,rgba(0,0,0,0.13) 75%,rgba(0,0,0,0.13) 76%,rgba(0,0,0,0.1) 77%,rgba(0,0,0,0.11) 78%,rgba(0,0,0,0.07) 80%,rgba(0,0,0,0.06) 82%,rgba(0,0,0,0.06) 86%,rgba(0,0,0,0.03) 87%,rgba(0,0,0,0.03) 92%,rgba(0,0,0,0.01) 94%,rgba(0,0,0,0) 100%);
    opacity: .25;
}

/*header*/
header.main-header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 27px 0;
}

/*fixed header*/
.fixed-header{
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: #fff;
    margin-top: -100px;
    padding: 12.5px 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px #000;
}

    .fixed-header-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;
    }

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

/*logo*/
.header-logo a {
    display: block;
    position: relative;
    max-width: 312px;
    margin-left: -92px;
}

    .fixed-logo a {
        display: block;
        position: relative;
        max-width: 143px;
        margin-left: -15px;
    }

/*contact*/
.hdr-top {
    text-align: right;
    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;
    margin-bottom: 31px;
    margin-top: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-contact{
    font-size: 0;
    margin-right: -5px;
    position: relative;
}

    .hdr-contact span a {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
        padding: 5px;
        font-family: 'Montserrat', 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;
    }

        .hdr-contact em.ai-font-phone {
            font-size: 13px;
            top: 0px;
            margin-right: 7px;
            color: #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;
        }

            .hdr-contact span a:hover,
            .hdr-contact span a:hover em{
                color: #c5cdf6;
            }

                .hdr-contact span {
                    margin-left: 7px;
                }

                    .hdr-contact em.ai-font-envelope-f {
                        font-size: 12px;
                        top: 0px;
                        color: #fff;
                        margin-right: 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;
                    }

                        .hdr-sub-text {
                            position: relative;
                            font-size: 16px;
                            color: #fff;
                            text-transform: uppercase;
                            font-family: 'Montserrat', sans-serif;
                            padding-left: 10px;
                        }

                            .hdr-sub-text::after {
                                content: '';
                                position: absolute;
                                top: 0;
                                bottom: 0;
                                left: calc(100% + 12px);
                                margin: auto;
                                width: 5.625vw;
                                height: 1px;
                                background: #fff;
                                opacity: .37;
                            }

/*nav*/
nav.header-nav {
    position: relative;
    text-align: right;
    font-size: 0;
}

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

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

            nav.header-nav ul#nav > li > a,
            nav.header-nav ul#nav2 > li > a{
                font-size: 16px;
                text-align: center;
                color: #fff;
                font-weight: 400;
                font-family: 'Montserrat', sans-serif;
                text-transform: uppercase;
                padding: 5px;
                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#nav2 > li > a{
                    color: #555555;
                }

                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#nav > li:last-child{
                        margin-right: 0;
                    }

                        nav.header-nav ul#nav .sub-menu a,
                        nav.header-nav ul#nav2 .sub-menu a {
                            color: #373737;
                            padding: 10px 5px;
                            font-size: 16px;
                            font-weight: 400;
                            text-transform: uppercase;
                            font-family: 'Montserrat', sans-serif;
                            text-align: 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;
                        }

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

                                nav.header-nav ul#nav > li.menu-item-has-children > a,
                                nav.header-nav ul#nav2 > li.menu-item-has-children > a{
                                    background: transparent url(images/nav-dd.png) no-repeat scroll right 0 center;
                                    padding-right: 16px;
                                }

                            nav.header-nav ul#nav2 > li.menu-item-has-children > a{
                                background: transparent url(images/nav-dd2.png) no-repeat scroll right 0 center;
                            }

/*slideshow*/
.slideshow-area,
.slider-holder {
    position: relative;
}
.slider-holder .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-custom-video::after,
.slider-holder .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img::after,
    .slider-holder .cycle-slide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .17;
        z-index: 5;
        pointer-events: none;
    }

/*cta*/
div.cta-area{
    position: absolute;
    bottom: 51px;
    left: 0;
    width: 100%;
}

    .cta-holder{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -21px;
    }

        .cta-list {
            width: calc(100% / 3);
            padding: 0 6.5px;
            visibility: hidden;
        }

            .cta-list a {
                display: block;
                position: relative;
                border: solid 1px rgba(255, 255, 255, 0.79);
                height: 76px;
                line-height: 76px;
                text-align: center;
                font-size: 21px;
                text-transform: uppercase;
                color: #fff;
                font-family: 'Montserrat', sans-serif;
                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;
                letter-spacing: 1.5px;
            }

                .cta-list a:hover{
                    border: solid 1px rgba(255, 255, 255, 1);
                    background: rgba(28,35,72,.79);
                }

/*welcome*/
section.welcome-area{
    position: relative;
    padding: 79px 0 0;
}

    section.welcome-area .container{
        position: relative;
        z-index: 5;
    }

        section.welcome-area::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: calc(100% - 11.938vw);
            background: url(images/wc-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            opacity: .11;
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
        }

            .wc-agent {
                max-width: 451px;
                width: 100%;
                margin-left: -15px;
            }

                .wc-content {
                    background: #fff;
                    position: relative;
                    padding: 62px 0;
                    height: 100%;
                }

                    .wc-title {
                        font-size: 70px;
                        text-transform: uppercase;
                        font-family: 'Prata', serif;
                        color: #af9553;
                        white-space: nowrap;
                        line-height: 1;
                        margin-bottom: 11px;
                    }

                        .wc-title span{
                            color: #555555;
                        }

                            .wc-title > em {
                                display: block;
                                font-size: 17px;
                                color: #7c7c7c;
                                font-style: normal;
                                font-family: 'Montserrat', sans-serif;
                                letter-spacing: 1px;
                                position: relative;
                                margin-bottom: 6px;
                            }

                                .wc-title > em::before {
                                    content: '';
                                    width: 24px;
                                    height: 4px;
                                    background: #af9553;
                                    display: inline-block;
                                    margin-right: 10px;
                                }

                                    .wc-title > i {
                                        display: block;
                                        font-style: normal;
                                        font-weight: 500;
                                        text-transform: uppercase;
                                        font-size: 25px;
                                        color: #8e8e8e;
                                        font-family: 'Montserrat', sans-serif;
                                        letter-spacing: 5px;
                                        margin-bottom: 8px;
                                    }

                                        .wc-text p {
                                            font-size: 15px;
                                            color: #252525;
                                            font-family: 'Poppins', sans-serif;
                                            font-weight: 300;
                                            line-height: 1.7;
                                            padding-bottom: 26px;
                                            letter-spacing: .29px;
                                        }

                                    .wc-link a {
                                        display: block;
                                        font-size: 15px;
                                        color: #252525;
                                        font-weight: 300;
                                        border: solid 1px #878787;
                                        max-width: 218px;
                                        position: relative;
                                        height: 57px;
                                        line-height: 57px;
                                        text-align: center;
                                        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;
                                    }

                                .wc-link {
                                    margin-top: 2px;
                                }

                            .wc-inner {
                                position: relative;
                                z-index: 5;
                                padding-left: 30px;
                            }

                        .wc-row::before{
                            display: none;
                        }

                    .wc-row{
                        display: -webkit-box;
                        display: -webkit-flex;
                        display: -ms-flexbox;
                        display: flex;
                    }

                .wc-content-bg {
                    position: absolute;
                    top: 0;
                    left: -52px;
                    width: calc((100vw - 1035px) / 2 + 100%);
                    height: 100%;
                    background: #fff;
                }

                .wc-content-bg::after{
                    content: '';
                    position: absolute;
                    top: 27px;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: url(images/wc-logo-overlay.png) no-repeat;
                    background-position: left 70px center;
                    background-size: 49.875vw;
                    opacity: .04;
                }

            .wc-link a::after {
                content: '';
                position: absolute;
                left: 100%;
                top: 0;
                bottom: 0;
                margin: auto;
                width: 2000px;
                height: 1px;
                background: #878787;
            }

        .wc-link a:hover{
            border: solid 1px #1c2348;
            background: #1c2348;
            color: #fff;
        }

/*featured properties*/
section.featured-properties-area{
    position: relative;
    padding: 69px 0 86px;
}

    section.featured-properties-area .fp-holder{
        position: relative;
        z-index: 5;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 12px;
    }

        section.featured-properties-area::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/fp-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            opacity: .05;
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
        }

            .fp-head{
                text-align: right;
            }

                .fp-title {
                    font-size: 70px;
                    text-transform: uppercase;
                    font-family: 'Prata', serif;
                    color: #af9553;
                    line-height: 1;
                    margin-bottom: 28px;
                    display: inline-block;
                    text-align: left;
                    right: -60px;
                    position: relative;
                }

                    .fp-title > em {
                        display: block;
                        font-size: 17px;
                        color: #7c7c7c;
                        font-style: normal;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 1px;
                        position: relative;
                        margin-bottom: 6px;
                    }

                        .fp-title > em::before {
                            content: '';
                            width: 24px;
                            height: 4px;
                            background: #af9553;
                            display: inline-block;
                            margin-right: 10px;
                        }

                            .fp-title > i {
                                display: block;
                                font-style: normal;
                                font-weight: 500;
                                text-transform: uppercase;
                                font-size: 25px;
                                color: #8e8e8e;
                                font-family: 'Montserrat', sans-serif;
                                letter-spacing: 5px;
                                margin-bottom: 8px;
                            }

                                .fp-list {
                                    /*max-width: 525px;*/
                                    margin: 0 auto;
                                }

                                    .fp-list a {
                                        display: block;
                                        position: relative;
                                        overflow: hidden;
                                    }

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

                                    .fp-photo canvas{
                                        display: block;
                                        width: 100%;
                                        background: #1c2348;
                                        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;
                                    }

                                .fp-price {
                                    font-size: 25px;
                                    text-align: center;
                                    font-weight: 500;
                                    color: #8e8e8e;
                                    font-family: 'Montserrat', sans-serif;
                                    margin-bottom: 12px;
                                    letter-spacing: 5px;
                                }

                                .fp-hover .fp-price,
                                .fp-hover .fp-address,
                                .fp-hover .fp-view,
                                .fp-hover .fp-specs{
                                    color: #fff;
                                }

                                .fp-hover .fp-address{
                                    margin-bottom: 38px;
                                }

                                .fp-hover .fp-specs{
                                    margin-bottom: 50px;
                                }

                            .fp-address,
                            .fp-specs {
                                font-size: 14px;
                                text-align: center;
                                font-weight: 500;
                                color: #8e8e8e;
                                font-family: 'Montserrat', sans-serif;
                                line-height: 1.25;
                                margin-bottom: 20px;
                                letter-spacing: 1.5px;
                            }

                        .fp-view {
                            font-size: 14px;
                            text-align: center;
                            font-weight: 300;
                            color: #8e8e8e;
                            text-transform: uppercase;
                            font-family: 'Poppins', sans-serif;
                        }

                    .fp-content {
                        top: 0;
                        opacity: 1;
                        position: relative;
                        padding: 22px 15px;
                        -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;
                    }

                .fp-list a:hover .fp-photo canvas{
                    opacity: .86;
                }

            .fp-list a:hover .fp-content{
                top: -50px;
                opacity: 0;
            }

        .fp-hover{
            position: absolute;
            top: 100px;
            opacity: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            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;
            -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;
        }

    .fp-list a:hover .fp-hover{
        top: 0;
        opacity: 1;
    }

        .fp-slick-slider .slick-slide > div > div{
            display: block !important;
        }

/*featured communities*/
section.featured-communities-area{
    position: relative;
    padding: 90px 0 86px;
}

    section.featured-communities-area .fc-holder{
        position: relative;
        z-index: 5;
        margin: 0 -100px;
    }

        .fc-title {
            font-size: 70px;
            text-transform: uppercase;
            font-family: 'Prata', serif;
            color: #af9553;
            line-height: 1;
            margin-bottom: 131px;
        }

            .fc-title > em {
                display: block;
                font-size: 17px;
                color: #7c7c7c;
                font-style: normal;
                font-family: 'Montserrat', sans-serif;
                letter-spacing: 1px;
                position: relative;
                margin-bottom: 6px;
            }

                .fc-title > em::before {
                    content: '';
                    width: 24px;
                    height: 4px;
                    background: #af9553;
                    display: inline-block;
                    margin-right: 10px;
                }

                    .fc-title > i {
                        display: block;
                        font-style: normal;
                        font-weight: 500;
                        text-transform: uppercase;
                        font-size: 25px;
                        color: #8e8e8e;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 5px;
                        margin-bottom: 8px;
                    }

                        section.featured-communities-area .fc-list {
                            padding: 4px;
                            /*max-width: 447px;*/
                            width: calc(100% / 3);
                            margin: 0 auto;
                        }

                            section.featured-communities-area .fc-list a{
                                display: block;
                                position: relative;
                            }

                                section.featured-communities-area .fc-photo{
                                    background-size: cover;
                                    background-position: center;
                                    background-repeat: no-repeat;
                                    height: 100%;
                                }

                                    section.featured-communities-area .fc-photo canvas{
                                        display: block;
                                        width: 100%;
                                        background: #000;
                                        opacity: .09;
                                    }

                                        section.featured-communities-area .fc-label {
                                            text-align: center;
                                            position: absolute;
                                            bottom: 16px;
                                            left: 0;
                                            width: 100%;
                                            color: #fff;
                                            font-weight: 500;
                                            font-size: 17px;
                                            text-transform: uppercase;
                                            font-family: 'Montserrat', sans-serif;
                                            letter-spacing: 1px;
                                        }
                                        section.featured-communities-area .fc-label div:first-child {
                                            padding-bottom: 10px;
                                            margin-bottom: 10px;
                                            position: relative;
                                        }
                                        section.featured-communities-area.fc-label div:first-child:after {
                                            content: "";
                                            position: absolute;
                                            bottom: 0;
                                            left: 50%;
                                            transform: translateX(-50%);
                                            width: 50%;
                                            height: 1px;
                                            background: #fff;
                                        }

                                    section.featured-communities-area .fc-hover{
                                        position: absolute;
                                        top: -48px ;
                                        left: -10%;
                                        width: 121%;
                                        height: 121%;
                                        z-index: 5;
                                        opacity: 0;
                                        pointer-events: none;
                                        -webkit-transition: all 0.4s ease-in-out;
                                        -moz-transition: all 0.4s ease-in-out;
                                        -o-transition: all 0.4s ease-in-out;
                                        transition: all 0.4s ease-in-out;
                                    }

                                section.featured-communities-area .fc-list a:hover .fc-hover{
                                    opacity: 1;
                                    pointer-events: auto;
                                }

                            .fc-hover-inner::after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                width: calc(100% - 30px);
                                height: calc(100% - 30px);
                                border: solid 1px #fff;
                                margin: auto;
                            }

                        .fc-hover-inner::before {
                            content: '';
                            position: absolute;
                            top: -48px;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            width: 29.188vw;
                            height: 15.125vw;
                            background: url(images/fc-logo-overlay.png) no-repeat;
                            background-position: center;
                            background-size: contain;
                            margin: auto;
                            opacity: .25;
                        }

                    .fc-hover .fc-label {
                        font-size: 19px;
                        color: #4d4d4d;
                        letter-spacing: 1.5px;
                        height: 51px;
                        line-height: 51px;
                        bottom: 30px;
                        width: calc(100% - 66px);
                        margin: auto;
                        right: 0;
                        background: linear-gradient(to right, rgba(174,149,83,1) 0%,rgba(174,149,83,1) 17%,rgba(176,151,85,1) 19%,rgba(184,159,93,1) 23%,rgba(225,203,146,1) 38%,rgba(236,215,160,1) 44%,rgba(239,218,163,1) 48%,rgba(239,218,163,1) 50%,rgba(233,210,156,1) 55%,rgba(231,209,152,1) 56%,rgba(225,203,146,1) 58%,rgba(213,191,133,1) 62%,rgba(215,190,133,1) 62%,rgba(209,187,127,1) 63%,rgba(207,183,123,1) 64%,rgba(191,167,103,1) 69%,rgba(183,158,94,1) 73%,rgba(181,156,90,1) 73%,rgba(174,149,83,1) 77%,rgba(174,149,83,1) 100%);
                    }

                .fc-hover-inner {
                    position: relative;
                    height: 100%;
                }

            .fc-list-holder {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-flex-wrap: wrap;
                -ms-flex-wrap: wrap;
                flex-wrap: wrap;
                margin: 0 -4px;
            }

        section.featured-communities-area .fc-list:nth-child(3n+2) {
            margin-top: -94px;
        }

    section.featured-communities-area .fc-list:nth-child(3n+3) {
        margin-top: -158px;
    }

        section.featured-communities-area .fc-list:nth-child(3n+1) .fc-hover{
            left: 0;
        }

            section.featured-communities-area .fc-list:nth-child(3n+3) .fc-hover{
                left: -20%;
            }

/*why choose us*/
section.why-choose-us-area{
    position: relative;
    padding: 80px 0 76px;
}

    section.why-choose-us-area .container{
        position: relative;
        z-index: 5;
    }

        section.why-choose-us-area::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/wcu-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            opacity: .07;
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
        }

            .wcu-agent {
                max-width: 482px;
                margin-left: -13px;
                margin-right: -11px;
                position: relative;
                z-index: 5;
            }

                .wcu-content {
                    background: #fff;
                    position: relative;
                    padding: 62px 0 75px;
                    height: 100%;
                }

                    .wcu-title {
                        font-size: 70px;
                        text-transform: uppercase;
                        font-family: 'Prata', serif;
                        color: #af9553;
                        white-space: nowrap;
                        line-height: 1;
                        margin-bottom: 21px;
                    }

                        .wcu-title span{
                            color: #555555;
                        }

                            .wcu-title > em {
                                display: block;
                                font-size: 17px;
                                color: #7c7c7c;
                                font-style: normal;
                                font-family: 'Montserrat', sans-serif;
                                letter-spacing: 1px;
                                position: relative;
                                margin-bottom: 6px;
                            }

                                .wcu-title > em::before {
                                    content: '';
                                    width: 24px;
                                    height: 4px;
                                    background: #af9553;
                                    display: inline-block;
                                    margin-right: 10px;
                                }

                                    .wcu-title > i {
                                        display: block;
                                        font-style: normal;
                                        font-weight: 500;
                                        text-transform: uppercase;
                                        font-size: 25px;
                                        color: #8e8e8e;
                                        font-family: 'Montserrat', sans-serif;
                                        letter-spacing: 5px;
                                        margin-bottom: 8px;
                                    }

                                        .wcu-text p {
                                            font-size: 15px;
                                            color: #252525;
                                            font-family: 'Poppins', sans-serif;
                                            font-weight: 300;
                                            line-height: 1.7;
                                            padding-bottom: 23px;
                                            letter-spacing: .29px;
                                        }

                                    .wcu-inner {
                                        position: relative;
                                        z-index: 5;
                                        padding-left: 30px;
                                    }

                                .wcu-row::before{
                                    display: none;
                                }

                            .wcu-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;
                            }

                        .wcu-content-bg {
                            position: absolute;
                            top: 0;
                            left: -69px;
                            width: calc(100% + 100px);
                            height: 100%;
                            background: #fff;
                        }

                    .wcu-accent{
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 8.25%;
                        height: 100%;
                        background: #fff;
                        z-index: 1;
                    }

/*testimonials*/
section.testimonials-area{
    position: relative;
    padding: 51px 0 92px;
    margin-top: 173px;
}

    section.testimonials-area .container{
        position: relative;
        z-index: 5;
    }

        section.testimonials-area::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/testi-bg.jpg) no-repeat;
            background-size: cover;
            background-position: center;
            opacity: .06;
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
        }

            .testi-title {
                font-size: 70px;
                text-transform: uppercase;
                font-family: 'Prata', serif;
                color: #555555;
                white-space: nowrap;
                line-height: 1;
                margin-bottom: 39px;
                display: inline-block;
            }

                .testi-title > em {
                    display: block;
                    font-size: 17px;
                    color: #7c7c7c;
                    font-style: normal;
                    font-family: 'Montserrat', sans-serif;
                    letter-spacing: 1px;
                    position: relative;
                    margin-bottom: 6px;
                }

                    .testi-title > em::before {
                        content: '';
                        width: 24px;
                        height: 4px;
                        background: #af9553;
                        display: inline-block;
                        margin-right: 10px;
                    }

                        .testi-title > i {
                            display: block;
                            font-style: normal;
                            font-weight: 400;
                            text-transform: none;
                            font-size: 27px;
                            color: #848484;
                            font-family: 'Prata', serif;
                            letter-spacing: 0;
                            margin-bottom: 8px;
                            text-align: right;
                            right: -34px;
                            position: relative;
                        }

                            .testi-photo {
                                margin-right: -32px;
                                padding-left: 7px;
                                position: relative;
                                margin-top: -146px;
                            }

                                .testi-slider {
                                    background: #af9553;
                                    padding: 51px 30px 57px;
                                    position: relative;
                                    margin-right: -87px;
                                    z-index: 5;
                                }

                                .testi-photo::after {
                                    content: '';
                                    position: absolute;
                                    top: 104px;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background: url(images/wc-logo-overlay.png) no-repeat;
                                    background-position: top center;
                                    background-size: 90%;
                                    opacity: .04;
                                }

                            .testi-list p {
                                font-size: 17px;
                                font-weight: 300;
                                color: #fff;
                                font-style: italic;
                                font-family: 'Poppins', sans-serif;
                                line-height: 1.55;
                                padding-bottom: 26px;
                                letter-spacing: .4px;
                            }

                        .testi-list span {
                            font-size: 17px;
                            font-weight: 500;
                            color: #fff;
                            font-family: 'Poppins', sans-serif;
                            display: block;
                        }

                    .testi-list a {
                        display: block;
                        border: solid 1px #fff;
                        color: #fff;
                        text-align: center;
                        max-width: 173px;
                        height: 42px;
                        line-height: 42px;
                        font-size: 15px;
                        font-weight: 300;
                        font-family: 'Poppins', sans-serif;
                        margin-top: 41px;
                        -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;
                    }

                    .testi-list a:hover{
                        background: #1c2348;
                        border: solid 1px #1c2348;
                    }

                .testi-arrow-holder {
                    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;
                    position: absolute;
                    top: -80px;
                    left: 0;
                    bottom: 0;
                    margin: auto;
                    width: 100%;
                    height: 17px;
                    pointer-events: none;
                    padding: 0 25px;
                }

                    .testi-arrow-holder span{
                        padding: 5px;
                        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;
                        font-size: 17px;
                        color: #fff;
                        pointer-events: auto;
                        cursor: pointer;
                        -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;
                        position: relative;
                    }

                .testi-arrow-holder span:hover{
                    color: #1c2348 !important;
                }

            .testi-slick-slider .slick-slide > div > div{
                display: block !important;
            }

        .testi-content {
            position: relative;
            margin-left: -15px;
        }

    .testi-list {
        padding: 0 25px;
        max-width: 652px;
        margin: 0 auto;
    }

        .testi-slider::after {
            content: '';
            position: absolute;
            bottom: 76px;
            left: 249px;
            width: calc(100% + 12vw);
            height: 1px;
            background: #fff;
            z-index: 5;
        }

/*blog*/
section.blog-area{
    position: relative;
}

    .blog-holder {
        /*max-width: 1600px;*/
        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;
    }

        .blog-content {
            width: 49%;
            background: #111111;
            position: relative;
        }

            .blog-content::after{
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(images/blog-bg.jpg) no-repeat;
                background-size: cover;
                background-position: center;
                opacity: .11;
            }

            .blog-list-holder{
                width: 51%;
            }

                .blog-title {
                    font-size: 70px;
                    text-transform: uppercase;
                    font-family: 'Prata', serif;
                    color: #fff;
                    line-height: 1;
                    margin-bottom: 29px;
                }

                    .blog-title > em {
                        display: block;
                        font-size: 17px;
                        color: #fff;
                        font-style: normal;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 1px;
                        position: relative;
                        margin-bottom: 6px;
                    }

                        .blog-title > em::before {
                            content: '';
                            width: 24px;
                            height: 4px;
                            background: #fff;
                            display: inline-block;
                            margin-right: 10px;
                        }

                            .blog-text {
                                font-size: 15px;
                                color: #fff;
                                font-weight: 300;
                                font-family: 'Poppins', sans-serif;
                                line-height: 1.7;
                                letter-spacing: .4px;
                                margin-bottom: 76px;
                                max-width: 505px;
                                padding-right: 30px;
                            }

                                .blog-link a {
                                    display: inline-block;
                                    font-size: 15px;
                                    color: #fff;
                                    font-weight: 400;
                                    font-family: 'Poppins', sans-serif;
                                    padding: 5px;
                                    position: relative;
                                    -webkit-transition: all 0.4s ease-in-out;
                                    -moz-transition: all 0.4s ease-in-out;
                                    -o-transition: all 0.4s ease-in-out;
                                    transition: all 0.4s ease-in-out;
                                }

                                    .blog-link a:hover{
                                        color: #af9553;
                                    }

                                    .blog-inner {
                                        width: 100%;
                                    }

                                        .blog-left{
                                            margin-left: 215px;
                                            position: relative;
                                            height: 100%;
                                            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;
                                            z-index: 5;
                                        }

                                    .blog-link span {
                                        position: absolute;
                                        top: 0;
                                        bottom: 0;
                                        margin: auto;
                                        left: 131px;
                                        width: calc(100% - 101px);
                                        height: 1px;
                                        background: #fff;
                                    }

                                .blog-link {
                                    position: relative;
                                }

                            .blog-list {
                                display: -webkit-box;
                                display: -webkit-flex;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-flex-wrap: wrap;
                                -ms-flex-wrap: wrap;
                                flex-wrap: wrap;
                            }

                        .blog-photo {
                            background-size: cover;
                            background-position: center;
                            background-repeat: no-repeat;
                            width: 50%;
                        }

                    .blog-photo a {
                        display: block;
                        position: relative;
                    }

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

            .blog-details{
                width: 50%;
                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;
            }

        .blog-photo a:hover canvas{
            opacity: .3;
        }

    .blog-details h2 a {
        font-size: 20px;
        color: #af9553;
        font-weight: 600;
        letter-spacing: .6px;
        font-family: 'Poppins', sans-serif;
        -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;
    }

        .blog-details h2 a:hover{
            color: #1c2348;
        }

            .blog-details p {
                font-size: 15px;
                color: #252525;
                font-weight: 300;
                font-family: 'Poppins', sans-serif;
                line-height: 1.7;
                letter-spacing: .3px;
            }

                .blog-details h2 {
                    line-height: 1;
                    margin-bottom: 13px;
                }

                    a.blog-read:hover {
                        background: #1c2348;
                        border: solid 1px #1c2348;
                        color: #fff;
                    }

                        a.blog-read {
                            display: block;
                            border: solid 1px #4a4a4a;
                            color: #424242;
                            text-align: center;
                            max-width: 173px;
                            height: 42px;
                            line-height: 42px;
                            font-size: 15px;
                            font-weight: 300;
                            font-family: 'Poppins', sans-serif;
                            margin-top: 28px;
                            -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;
                        }

                            .blog-details-inner {
                                padding: 0 26px;
                            }

                                .blog-list:nth-child(odd) {
                                    -webkit-box-orient: horizontal;
                                    -webkit-box-direction: reverse;
                                    -webkit-flex-direction: row-reverse;
                                    -ms-flex-direction: row-reverse;
                                    flex-direction: row-reverse;
                                }

/*blog*/
section.social-media-area{
    position: relative;
}

    .sm-holder {
        /*max-width: 1600px;*/
        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;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

        .sm-tabs-content {
            width: 42.5%;
            background: #111111;
            position: relative;
        }

            .sm-tabs-content::after{
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(images/sm-bg.jpg) no-repeat;
                background-size: cover;
                background-position: center;
                opacity: .11;
            }

            .sm-list-holder{
                width: 57.5%;
            }

                .sm-title {
                    font-size: 55px;
                    text-transform: uppercase;
                    font-family: 'Prata', serif;
                    color: #fff;
                    line-height: 1;
                    margin-bottom: 88px;
                }

                    .sm-title > em {
                        display: block;
                        font-size: 17px;
                        color: #fff;
                        font-style: normal;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 1px;
                        position: relative;
                        margin-bottom: 6px;
                    }

                        .sm-title > em::before {
                            content: '';
                            width: 24px;
                            height: 4px;
                            background: #fff;
                            display: inline-block;
                            margin-right: 10px;
                        }

                            .sm-inner {
                                width: 100%;
                            }

                                .sm-tabs-left{
                                    margin-left: 75px;
                                    position: relative;
                                    height: 100%;
                                    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;
                                    z-index: 5;
                                }

                            .sm-list {
                                display: -webkit-box;
                                display: -webkit-flex;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-flex-wrap: wrap;
                                -ms-flex-wrap: wrap;
                                flex-wrap: wrap;
                            }

                        .sm-photo {
                            background-size: cover;
                            background-position: center;
                            background-repeat: no-repeat;
                            width: 50%;
                        }

                    .sm-photo a {
                        display: block;
                        position: relative;
                    }

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

            .sm-details{
                width: 50%;
                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;
                text-align: center;
            }

        .sm-photo a:hover canvas{
            opacity: .3;
        }

    .sm-details h2 a {
        font-size: 20px;
        color: #af9553;
        font-weight: 600;
        letter-spacing: .6px;
        font-family: 'Poppins', sans-serif;
        -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;
    }

        .sm-details h2 a:hover{
            color: #1c2348;
        }

            .sm-details p {
                font-size: 15px;
                color: #252525;
                font-weight: 300;
                font-family: 'Poppins', sans-serif;
                line-height: 1.7;
                letter-spacing: .3px;
            }

                .sm-details h2 {
                    line-height: 1;
                    margin-bottom: 21px;
                    margin-top: 13px;
                }

                    a.sm-read:hover {
                        background: #1c2348;
                        border: solid 1px #1c2348;
                        color: #fff;
                    }

                        a.sm-read {
                            display: block;
                            border: solid 1px #4a4a4a;
                            color: #424242;
                            text-align: center;
                            max-width: 173px;
                            height: 42px;
                            line-height: 42px;
                            font-size: 15px;
                            font-weight: 300;
                            font-family: 'Poppins', sans-serif;
                            margin: 30px auto 0;
                            -webkit-transition: all 0.4s ease-in-out;
                            -moz-transition: all 0.4s ease-in-out;
                            -o-transition: all 0.4s ease-in-out;
                            transition: all 0.4s ease-in-out;
                        }

                            .sm-details-inner {
                                padding: 0 26px;
                                max-width: 346px;
                                margin: 0 auto;
                            }

                                .sm-list:nth-child(odd) {
                                    -webkit-box-orient: horizontal;
                                    -webkit-box-direction: reverse;
                                    -webkit-flex-direction: row-reverse;
                                    -ms-flex-direction: row-reverse;
                                    flex-direction: row-reverse;
                                }

                                    .sm-details h2 span {
                                        display: block;
                                        font-size: 14px;
                                        font-weight: 300;
                                        color: #606060;
                                        margin-top: 9px;
                                        letter-spacing: .3px;
                                    }

                                .sm-tabs-list span a {
                                    display: inline-block;
                                    position: relative;
                                    font-size: 27px;
                                    color: #fff;
                                    text-transform: uppercase;
                                    font-family: 'Prata', serif;
                                    -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;
                                }

                            .sm-tabs-list span{
                                display: block;
                                margin-bottom: 28px;
                            }

                        .sm-tabs-list span:last-child{
                            margin-bottom: 0;
                        }

                    .sm-details-inner > em {
                        font-size: 18px;
                        font-weight: 700;
                        color: #38539b;
                    }

                .sm-tabs-list span a::after {
                    content: attr(data-label);
                    position: absolute;
                    bottom: -4px;
                    left: 0;
                    font-size: 27px;
                    opacity: 0;
                    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;
                }

            .sm-tabs-list span a.active::after{
                font-size: 51px;
                opacity: 1;
            }

        .sm-tabs-list span a.active{
            color: transparent;
        }

    .sm-tabs-list span a::before {
        content: '';
        position: absolute;
        top: 6px;
        right: calc(100% + 15px);
        width: 0;
        opacity: 0;
        height: 1px;
        background: #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;
    }

        .sm-tabs-list span a.active::before{
            width: 59px;
            opacity: 1;
        }

/*get in touch*/
section.get-in-touch-area{
    background: #000;
    position: relative;
    padding: 224px 0 154px;
}

    section.get-in-touch-area::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/gt-bg.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        opacity: .2;
        background-attachment: fixed;
    }

        .gt-form-holder{
            position: relative;
            z-index: 5;
            background: rgba(255, 255, 255, 0.1);
            max-width: 847px;
            margin: 0 auto 0;
            overflow: hidden;
        }

            .gt-form-inner {
                text-align: center;
                position: relative;
                z-index: 5;
                padding: 67px 15px 71px;
            }

                .gt-title {
                    font-size: 50px;
                    text-transform: uppercase;
                    font-family: 'Prata', serif;
                    color: #fff;
                    line-height: 1;
                    margin-bottom: 14px;
                    text-align: left;
                    display: inline-block;
                }

                    .gt-title > em {
                        display: block;
                        font-size: 17px;
                        color: #fff;
                        font-style: normal;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 1px;
                        position: relative;
                        margin-bottom: 6px;
                    }

                        .gt-title > em::before {
                            content: '';
                            width: 24px;
                            height: 4px;
                            background: #fff;
                            display: inline-block;
                            margin-right: 10px;
                        }

                            .gt-form input,
                            .gt-form textarea {
                                font-size: 13px;
                                width: 100%;
                                font-weight: 400;
                                -webkit-appearance: none;
                                -moz-appearance: none;
                                background: transparent;
                                text-transform: uppercase;
                                height: 54px;
                                color: #fff;
                                font-family: 'Montserrat', sans-serif;
                                padding: 0 0;
                                letter-spacing: 2px;
                                border-radius: 0;
                                resize: none;
                                border: none;
                                border-bottom: solid 1px #998763;
                            }

                        .gt-form textarea {
                            padding-top: 9px;
                            height: 63px;
                        }

                    .gt-fields {
                        margin-bottom: 16px;
                        position: relative;
                        width: 100%;
                        display: inline-block;
                        padding: 0 15px;
                        vertical-align: top;
                    }

                .gt-fields.gt-fields-half{
                    width: calc(100% / 2);
                }

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

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

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

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

                                    .gt-form form {
                                        position: relative;
                                    }

                                        .gt-fields.gt-btn input{
                                            background: transparent;
                                            color: #fff;
                                            padding: 0 5px;
                                            font-size: 15px;
                                            font-family: 'Montserrat', sans-serif;
                                            font-weight: 400;
                                            text-transform: uppercase;
                                            height: 25px;
                                            border: none;
                                            text-align: left;
                                            letter-spacing: 3.5px;
                                            -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{
                                        color: #af9553;
                                    }

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

                            .gt-fields.gt-btn{
                                width: 225px;
                                padding: 0;
                                margin: 20px auto 0;
                                display: block;
                                height: 25px;
                            }

                        .gt-form {
                            margin: 0 auto;
                            font-size: 0;
                            max-width: 627px;
                        }

                    .gt-fields.gt-btn::after {
                        content: "\b0257";
                        font-family: agentimage;
                        color: #fff;
                        font-size: 12px;
                        position: absolute;
                        top: 6px;
                        -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;
                        right: 0;
                    }

                .gt-fields.gt-btn:hover::after{
                    color: #af9553;
                }

            .gt-form-holder::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(images/gt-bg.jpg) no-repeat;
                background-size: cover;
                background-position: center;
                opacity: .5;
                background-attachment: fixed;
                -webkit-filter: blur(5px);
                filter: blur(5px);
                z-index: 1;
            }

        .gt-form-holder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 2;
            opacity: .5;
        }

/*footer*/
footer.main-footer {
    background: #1b1b1b;
    padding: 93px 0 30px;
    position: relative;
}

    footer.main-footer .container{
        position: relative;
        z-index: 5;
    }

        footer.main-footer::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/footer-logo-overlay.png) no-repeat;
            background-position: bottom center;
            background-size: cover;
            opacity: .01;
        }

            .footer-top {
                border-bottom: solid 1px #998763;
                padding: 0 0 52px;
            }

                .footer-contact-holder{
                    text-align: center;
                    width: 32%;
                }

/*footer logo*/
.ftr-logo {
    width: 34%;
}

    .ftr-logo:first-child {
        padding-left: 98px;
    }

/*footer details*/
.footer-details {
    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;
    margin-bottom: 80px;
}

    .ftr-contact{
        font-size: 0;
        margin-bottom: 18px;
        position: relative;
    }

        .ftr-contact span a {
            font-size: 14px;
            color: #fff;
            font-weight: 400;
            padding: 5px;
            font-family: 'Montserrat', 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;
        }

            .ftr-contact em.ai-font-phone {
                font-size: 12px;
                top: 0px;
                margin-right: 11px;
                color: #af9553;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .ftr-contact span a:hover,
                .ftr-contact span a:hover em{
                    color: #af9553;
                }

                    .ftr-contact span {
                        display: block;
                        margin-bottom: 15px;
                    }

                        .ftr-contact em.ai-font-envelope-f {
                            font-size: 11px;
                            top: 0px;
                            color: #af9553;
                            margin-right: 9px;
                            -webkit-transition: all 0.3s ease-in-out;
                            -moz-transition: all 0.3s ease-in-out;
                            -o-transition: all 0.3s ease-in-out;
                            transition: all 0.3s ease-in-out;
                        }

                            .ftr-smi a {
                                display: inline-block;
                                padding: 5px;
                                font-size: 22px;
                                color: #fff;
                                margin: 0px 16px;
                                -webkit-transition: all 0.3s ease-in-out;
                                -moz-transition: all 0.3s ease-in-out;
                                -o-transition: all 0.3s ease-in-out;
                                transition: all 0.3s ease-in-out;
                            }

                                .ftr-smi a:hover{
                                    color: #af9553;
                                }

                                    .ftr-dre {
                                        font-size: 14px;
                                        color: #fff;
                                        font-family: 'Montserrat', sans-serif;
                                    }

                                        .ftr-smi {
                                            margin-bottom: 23px;
                                        }
/*footer nav*/
ul.footernav {
    font-size: 0;
    margin-top: 16px;
    text-align: center;
}

    ul.footernav li {
        display: inline-block;
        vertical-align: top;
        margin: 0 28px;
    }

        ul.footernav li a {
            display: inline-block;
            padding: 5px;
            color: #fff;
            font-size: 14px;
            font-weight: 400;
            font-family: 'Montserrat', 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: #af9553;
            }

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

.footer-copyright,
.footer-copyright a{
    font-size: 11px;
    color: #898989;
    letter-spacing: .2px;
    font-family: 'Montserrat', 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: #af9553 !important;
    }

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

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

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

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title { 
    text-transform: uppercase;
    font-family: 'Prata', serif;
    color: #af9553;
    font-size: 30px;
    letter-spacing: 2px;
}

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

}

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

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

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

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

.aios-mobile-header-wrapper .amh-navigation .amh-menu li:hover > a, 
.aios-mobile-header-wrapper .amh-navigation .amh-menu li.open > a {
    background: rgba(28,35,72,1);
}

.page-id-21 #content img.about-photo {
    float: left;
    margin: 0 40px 30px 0;
}

#content.aios-testimonials-page strong {
    display: inline-block !important;
}

/*blog*/
/** Single Default Layout (Post Content) */
#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.back-to-link {
    position: relative;
}

.back-to-link a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    margin-top: 75px;
    -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;
}

.back-to-link a:hover {
}
/** End of Single Default Layout (Post Content) */

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-style: normal;
    text-decoration: none;
    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;
}

#content .archive-more:after {
    content: '';
    position: absolute;
    left: calc(100% + 23px);
    top: calc(50% - 1px);
    background: #ded1c1;
    width: 0;
    height: 2px;
    pointer-events: none;
    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;
}

#content .archive-more:hover {
}

#content .archive-more:hover:after {
    width: 63px;
    opacity: 1;
}
/** End of Archive Default Layout (Archive Page) */

.post-page-sold-listings p.listings-attribution,
.post-page-sold-listings #listings-results .listings-grid .listings-footer{
    display: none !important;
}

#listings-details .listings-seller-rep {
    display: none !important;
}

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


body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}

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

.ihf-mapsearch-refine-overlay {
    height: 100%;
}

.ihf-mapsearch-refine-overlay .checkbox.ihf-mapsearch-proptype-checkbox {
    padding-left: 0 !important;
}

form#ihf-refine-map-search-form > .row > .col-xs-6:nth-child(2) {
    padding-left: 0;
}

form#ihf-refine-map-search-form label.ihf-mapsearch-refine-checkbox-label {
    font-size: 10px !important;
}

form#ihf-refine-map-search-form span#ihf-refine-search-close {
    margin-top: -16px;
}

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

.ip-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    height: 57px;
    font-family: 'Poppins', sans-serif;
    text-align: 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;
    max-width: 218px;
    width: 100%;
    background: #1c2348;
}

.ip-btn {
    display: block;
    position: relative;
}

.ip-btn:not(:last-child) {
    margin-bottom: 10px;
}

.ip-btn a:hover {
    background: #283368;
}


body .aios-roadmaps {
    justify-content: space-between;
}

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

