/*
Theme Name: Capri - Responsive Real Estate Wordpress Theme from Agent Image
Description: Capri is a modern and responsive real estate Wordpress theme. Customize your branding, add widgets and integrate IDX search.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.0.4
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
  
*/

/*css variables*/
:root {
  --body-font: 'Poppins', sans-serif;
  --title-font: 'Playfair Display', serif; 
  --primary-color: #32c2e7; 
  --secondary-color: #999; 
}

/*sample calling*/
/*#div1 {
  color: var(--primary-color);
}*/


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


/* Sub Menu */
#nav li,
#nav-fixed li {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu,
#nav-fixed .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:200px;
}
#nav > li > .sub-menu,
#nav-fixed > li > .sub-menu {
    left: -150%;
    right: -150%;
    margin: auto;
}
#nav .sub-menu a,
#nav-fixed .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
    background: var(--primary-color);
}
#nav .sub-menu a:hover,
#nav-fixed .sub-menu a:hover {
    background: #249ebd;
    color: #fff;
    text-decoration: none;
}
#nav .sub-menu .sub-menu,
#nav-fixed .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
    left: 0;
}
#nav li:hover > .sub-menu,
#nav-fixed li:hover > .sub-menu {
    display: block;
}
#nav .sub-menu li,
#nav-fixed .sub-menu li {
    position: relative;
    display: block;
}


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

/* Global */

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

/*fixed header*/
.fixed-header {
    position: fixed;
    /*margin-top: -100%;*/
    transform: translate3d(0,-100%,0);
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 19.5px 0;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.56);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.56);
    box-shadow: 0 0 10px rgba(0,0,0,.56);
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}
    
    .fixed-header.show-fixed{
        /*margin-top: 0;*/
        transform: none;
        opacity: 1;
    }

        .fixed-header .hdr-name {
            font-size: 35px;
            letter-spacing: 3px;
        }

            .fixed-header .hdr-name .sub-title{
                font-size: 10.5px;
                line-height: 19px;
                letter-spacing: 3.7px;
            }

                .fixed-header .header-nav #nav-fixed > li > a {
                    padding: 10px 10px;
                }

/*header*/
.header-top {
    background: #32C2E7;
}

    .header-middle {
        background: #fff;
        /*padding: 25px 0 22px;*/
    }

        .header-bottom {
            background: #fff;
        }

            header.main-header {
                position: absolute;
                left: 0;
                width: 100%;
                z-index: 1001;
            }

                .row.fixed-header-row::before {
                    display: none;
                }

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

/*header contacts*/
.header-contacts-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .header-text span {
        display: block;
        font-size: 20px;
        font-weight: 400;
        color: #fff;
    }

    .header-contacts span i{
        font-family: var(--title-font);
        color: #fff;
        font-size: 10px;
        font-style: italic;
        margin-left: 18px;
    }

        .header-contacts span,
        .header-contacts span a{
            font-size: 14px;
            color: #fff;
            font-family: var(--body-font);
        }

            .header-smi a {
                color: #fff;
                padding: 5px;
                font-size: 15px;
                margin: 0 6px;
            }

                .header-smi {
                    /*border-left: 1px solid #fff;
                    margin-left: 22px;
                    padding-left: 8px;*/
                    height: 32px;
                    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;
                }

                    .header-smi a:hover,
                    .header-contacts span a:hover{
                        /*color: var(--primary-color);*/
                        opacity: .7;
                    }

                        .header-smi a:last-child {
                            margin-right: 0;
                        }

/*header logo*/
.header-logo img {
    margin: 0 0 0 auto;
}

    .hdr-name {
        font-size: 44px;
        font-family: var(--title-font);
        color: var(--primary-color);
        line-height: 32px;
        letter-spacing: 19px;
        text-transform: uppercase;
    }

    .hdr-name a {
        display: block;
        position: relative;
        max-width: 150px;
    }

        .hdr-name .sub-title {
            display: block;
            color: #333;
            font-size: 19px;
            font-family: 'Montserrat', sans-serif;
            line-height: 19px;
            letter-spacing: 7.7px;
            margin-top: 10px;
        }

            .hdr-name a {
                color: var(--primary-color);
            }

/*nav*/
nav.header-nav {
    text-align: center;
    font-size: 0;
}

    nav.header-nav ul#nav > li,
    nav.header-nav ul#nav-fixed > li {
        display: inline-block;
        position: relative;
    }

        nav.header-nav ul#nav > li > a,
        nav.header-nav ul#nav-fixed > li > a {
            font-size: 20px;
            font-weight: 600;
            font-family: var(--body-font);
            color: #5c5c5c;
            text-transform: uppercase;
            display: inline-block;
            padding: 13.5px 35px;
            transition: all .25s ease-in-out;
            -moz-transition: all .25s ease-in-out;
            -webkit-transition: all .25s ease-in-out;
        }

            nav.header-nav ul#nav > li:hover,
            nav.header-nav ul#nav-fixed > li:hover {
                background: var(--primary-color);
                transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -webkit-transition: all .25s ease-in-out;
            }

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

                    #nav .sub-menu li a,
                    ul#nav-fixed .sub-menu li a {
                        display: block;
                        font-size: 18px;
                        font-weight: 400;
                        padding: 5px 15px;
                        text-transform: none;
                        text-align: center;
                        line-height: 16px;
                        color: #fff;
                        font-family: var(--body-font);
                    }

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

.slideshow-area .aios-slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    pointer-events: none;
}

    .slider-holder .ai-arrow-a-p, 
    .slider-holder .ai-arrow-a-n {
        font-size: 115px;
        color: #fff;
        text-shadow: 1px 0px 1px rgba(0, 0, 0, .75);
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

        .slide-arrow-area {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            pointer-events: none;
            z-index: 100;
        }

            .slider-holder .cycloneslider-template-responsive .cycloneslider-prev,
            .slider-holder .cycloneslider-template-responsive .cycloneslider-next {
                width: auto;
                height: auto;
                border-radius: 0;
                background: none;
                box-shadow: none;
                opacity: 1;
                margin-top: 40px;
                left: 0 !important;
                position: relative !important;
                right: 0 !important;
                display: inline-block;
                vertical-align: top;
                pointer-events: auto;
            }

                .slider-holder .cycloneslider-template-responsive .cycloneslider-prev:hover,
                .slider-holder .cycloneslider-template-responsive .cycloneslider-next:hover {
                    opacity: .8 !important;
                }

                    .slider-holder .cycloneslider-template-responsive .cycloneslider-prev {
                        left: -42px !important;
                    }

                        .slider-holder .cycloneslider-template-responsive .cycloneslider-next {
                            left: 42px !important;
                            float: right;
                        }

                            .slider-holder .cycloneslider-template-responsive .cycloneslider-prev span,
                            .slider-holder .cycloneslider-template-responsive .cycloneslider-next span{
                                border: 0;
                            }

                                .slider-holder .cycloneslider-template-responsive:hover .cycloneslider-prev, 
                                .slider-holder .cycloneslider-template-responsive:hover .cycloneslider-next {
                                    opacity: 1;
                                }

                            .slider-logo {
                                position: absolute;
                                top: 50%;
                                left: 50%;
                                transform: translate(-50%, -50%);
                            }

/*quick search*/
.quick-search-area {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 72px;
    pointer-events: none;
}

    .qs-holder {
        background: rgba(29,29,29,.7);
        pointer-events: auto;
    }

        

        .hp-qs-hdr {
            padding: 38px 20px 30px;
            background: rgba(29,29,29,.7);
        }

            .hp-qs-hdr h4 {
                color: #ededed;
                font-size: 45px;
                line-height: 38px;
                font-style: italic;
                font-family: var(--title-font);
            }

                .hp-qs-hdr h5 {
                    color: #ededed;
                    font-weight: 400;
                    font-size: 20px;
                    font-family: var(--body-font);
                    text-transform: uppercase;
                    margin: 10px 0 0 2%;
                }

                    .qs-title {
                        color: #ededed;
                        font-size: 20px;
                        font-weight: 700;
                        font-family: 'Montserrat', sans-serif;
                        text-transform: uppercase;
                        margin: 30px auto 13px;
                        padding: 0 20px;
                    }

                        .qs-form {
                            padding: 0 20px 30px;
                            font-size: 0;
                        }

                            .qs-form p {
                                font-size: 13px;
                                text-align: center;
                                color: #fff;
                                padding: 10px 0 0;
                            }
                            .qs-form select,
                            .qs-form input {
                                border-radius: 0;
                                color: #5d5d5d;
                                font-size: 11px;
                                font-weight: 300;
                                font-style: italic;
                                font-family: var(--body-font);
                                -webkit-appearance: none;
                                -moz-appearance: none;
                                background: #fff url(images/qs-arrow.png) no-repeat scroll right 8px center;
                                width: 100%;
                                height: 27px;
                                padding: 0 10px;
                                border: 0; 
                                letter-spacing: .3px;
                            }

                                    .qs-form input{
                                        background: #fff;
                                        line-height: 27px;
                                    }

                                        .qs-form select::-ms-expand{
                                            display: none;
                                        }

                                            .qs-form .qs-field {
                                                display: inline-block;
                                                vertical-align: top;
                                                margin-bottom: 5px;
                                                padding: 0 2.5px;
                                            }

                                                .btn-form.qs-field input,
                                                .btn-form.qs-field a{
                                                    background: var(--primary-color);
                                                    font-weight: 700;
                                                    font-style: normal;
                                                    text-align: center;
                                                    height: 29px;
                                                    font-size: 13px;
                                                    color: #fff;
                                                    text-transform: uppercase;
                                                }

                                                    .btn-form.qs-field a {
                                                        background: #b7b7b7;
                                                        text-transform: uppercase;
                                                        display: block;
                                                        line-height: 29px;
                                                    }

                                                        .btn-form.qs-field input:hover{
                                                            background: #249ebd;
                                                        }

                                                            .btn-form.qs-field a:hover{
                                                                background: #249ebd;
                                                            }

                                                        .btn-form.qs-field {
                                                            width: 50%;
                                                            position: relative;
                                                        }

                                                    .long-form {
                                                        width: 50%;
                                                    }

                                                .short-form {
                                                    width: 25%;
                                                }

/*cta*/
section.cta-area {
    position: relative;
    margin-top: -57px;
}

    .cta-list a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        max-width: 360px;
        margin: 0 auto;
        position: relative;
        background: var(--primary-color);
        font-size: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 115px;
        text-align: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .cta-label{
            position: relative;
            z-index: 5;
            width: 100%;
        }
        
            .cta-label span {
                font-family: var(--body-font);
                font-size: 20px;
                font-weight: 600;
                color: #fff;
                text-transform: uppercase;
                line-height: 28px;
            }

                .cta-label span strong {
                    font-family: var(--title-font);
                    font-size: 45px;
                    font-style: italic;
                    /*font-weight: 300;*/
                    text-transform: none;
                }

                    .cta-list a::before {
                        content: "";
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: #249ebd;
                        -webkit-transform: scale(0);
                        transform: scale(0);
                        -webkit-transition-property: transform;
                        transition-property: transform;
                        -webkit-transition-duration: 0.3s;
                        transition-duration: 0.3s;
                        -webkit-transition-timing-function: ease-out;
                        transition-timing-function: ease-out;
                    }

                        .cta-list a:hover::before, 
                        .cta-list a:focus::before, 
                        .cta-list a:active::before{
                            -webkit-transform: scale(1);
                            transform: scale(1);
                        }

/*featured properties*/
section.featured-properties-area {
    padding: 52px 0 0;
}

    .fp-title{
        color: var(--secondary-color);
        font-family: var(--body-font);
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 10px;
        display: block;
    }

        .fp-title span {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            font-style: italic;
            font-size: 45px;
            line-height: 40px;
            text-transform: none;
            margin: 8px 0 15px 0;
            display: block;
        }

            .fp-list {
                display: block;
                max-width: 390px;
                padding: 15px;
                margin: 0 auto;
            }

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

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

                        .fp-photo canvas{
                            display: block;
                            width: 100%;
                            background: var(--primary-color);
                            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;
                        }

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

                                .fp-details {
                                    position: absolute;
                                    bottom: 10px;
                                    left: 0;
                                    background: #fff;
                                    padding: 11px 35px 19px 20px;
                                }

                            .fp-price {
                                line-height: 17px;
                                font-size: 20px;
                                font-weight: 400;
                                font-family: var(--body-font);
                                color: var(--secondary-color);
                                margin-bottom: 5px;
                            }

                        .fp-address {
                            line-height: 1.5;
                            font-size: 20px;
                            font-weight: 500;
                            color: #404040;
                            font-family: var(--body-font);
                            font-style: italic;
                        }

                    .fp-list-holder {
                        position: relative;
                        margin: -8px -15px 0;
                    }

            .fp-arrow {
                position: absolute;
                width: 50px;
                height: 50px;
                top: calc(50% - 25px);
                z-index: 2;
                background: var(--primary-color);
                color: #ffffff;
                text-align: center;
                cursor: pointer;
                opacity: 0;
                transition: all .25s ease-in-out;
                -moz-transition: all .25s ease-in-out;
                -webkit-transition: all .25s ease-in-out;
            }

                .fp-arrow:hover {
                    background: #249ebd;
                }

                .fp-slick-slider:hover .fp-arrow {
                    opacity: 1;
                }

                    .fp-arrow:before {
                        content: '';
                        display: inline-block;
                        vertical-align: middle;
                        width: 0;
                        height: 100%;
                    }

            .fp-prev {
                left: 15px;
                -ms-transform: rotate(180deg);
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
            }

            .fp-next {
                right: 15px;
            }

                .fp-arrow em {
                    display: inline-block;
                    vertical-align: middle;
                    font-size: 18px;
                }

/*welcome*/
section.welcome-area {
    padding: 35px 0 0;
}

    .wc-content h1{
        color: var(--secondary-color);
        font-family: var(--body-font);
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 10px;
        display: block;
        margin-bottom: 20px;
    }

        .wc-content h1 span {
            font-family: var(--title-font);
            color: var(--primary-color);
            font-style: italic;
            font-size: 45px;
            line-height: 40px;
            text-transform: none;
            margin: 8px 0 15px 0;
            display: block;
        }

            .wc-content p {
                color: #000;
                font-family: var(--body-font);
                font-size: 20px;
                font-weight: 300;
                line-height: 22px;
                padding-bottom: 20px;
            }

                .wc-content {
                    padding-top: 30px;
                }

                    .wc-agent-photo img {
                        margin: 0 auto;
                    }

    section.welcome-area .textwidget > .row {
        display: flex;
        align-items: center;
    }

section.hp-bottom-widgets-area {
    padding: 50px 0 46px;
}

.blog-area,
.testimonials-area,
.featured-communities-area {
    max-width: 360px;
    margin: 0 auto;
}

/*blog*/
.blog-title{
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 10px;
    display: block;
    margin-bottom: 20px;
}

    .blog-title span {
        font-family: var(--title-font);
        color: var(--primary-color);
        font-style: normal;
        font-size: 45px;
        line-height: 40px;
        text-transform: none;
        margin: 2px 0 15px 0;
        display: block;
    }

        .blog-list span {
            font-family: var(--body-font);
            font-weight: 600;
            font-size: 20px;
            color: #000;
            text-transform: uppercase;
            line-height: 20px;
            display: block;
            margin-bottom: 20px;
        }

            .blog-list p{
                line-height: 20px;
                font-size: 20px;
                font-weight: 300;
                color: #000;
                padding-bottom: 18px;
                font-family: var(--body-font);
            }

                .blog-list a {
                    color: #000;
                    font-family: var(--body-font);
                    font-size: 20px;
                    font-weight: 300;
                    display: inline-block;
                    outline: none;
                }

                    .blog-list a:hover{
                        color: var(--primary-color);
                    }

                .blog-arrows span {
                    width: 24px;
                    height: 24px;
                    color: #fff;
                    line-height: 24px;
                    text-align: center;
                    display: inline-block;
                    background: var(--primary-color);
                    cursor: pointer;
                    font-size: 9px;
                    margin-right: 7px;
                }

                    .blog-arrows span em {
                        line-height: 24px;
                        color: #fff;
                        font-size: 8px;
                        cursor: pointer;
                    }

                        .blog-arrows .blog-prev {
                            -ms-transform: rotate(180deg);
                            -webkit-transform: rotate(180deg);
                            transform: rotate(180deg);
                        }

                             .blog-arrows span:hover{
                                background: #249ebd;
                             }

                            .blog-arrows {
                               font-size: 0;
                               margin-top: 28px;
                            }

/*testimonials*/
.testi-title{
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 10px;
    display: block;
    margin-bottom: 20px;
}

    .testi-title span {
        font-family: var(--title-font);
        color: var(--primary-color);
        font-style: normal;
        font-size: 45px;
        line-height: 40px;
        text-transform: none;
        margin: 2px 0 15px 0;
        display: block;
    }

        .testi-list p{
            line-height: 20px;
            font-size: 20px;
            font-weight: 300;
            color: #000;
            padding-bottom: 13px;
            font-family: var(--body-font);
        }

            .testi-list a {
                color: #000;
                font-family: var(--body-font);
                font-size: 20px;
                font-weight: 300;
                display: inline-block;
                outline: none;
            }

                .testi-list a:hover{
                    color: var(--primary-color);
                }

                    .testi-list span {
                        font-family: var(--title-font);
                        font-weight: 400;
                        font-size: 20px;
                        color: #32c2e7;
                        text-transform: uppercase;
                        margin-bottom: 26px;
                        display: block;
                    }

        .testi-arrows span {
            width: 24px;
            height: 24px;
            color: #fff;
            line-height: 24px;
            text-align: center;
            display: inline-block;
            background: #32c2e7;
            cursor: pointer;
            font-size: 9px;
            margin-right: 7px;
        }

            .testi-arrows span em {
                line-height: 24px;
                color: #fff;
                font-size: 8px;
                cursor: pointer;
            }

            .testi-arrows .testi-prev {
                -ms-transform: rotate(180deg);
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
            }

            .testi-arrows span:hover {
                background: #249ebd;
            }

            .testi-arrows {
                font-size: 0;
                margin-top: 28px;
            }

/*featured communities*/
.fc-title {
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 10px;
    display: block;
    margin-bottom: 20px;
}

    .fc-title span {
        font-family: var(--title-font);
        color: var(--primary-color);
        font-style: normal;
        font-size: 45px;
        line-height: 40px;
        text-transform: none;
        margin: 2px 0 15px 0;
        display: block;
    }

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

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

                .fc-photo canvas{
                    display: block;
                    width: 100%;
                    background: var(--primary-color);
                    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;
                }

                    .fc-list a:hover .fc-photo canvas{
                        opacity: .6; 
                    }

                        .fc-label {
                            background: var(--primary-color);
                            color: #fff;
                            text-transform: uppercase;
                            padding: 15px 12px;
                            font-weight: 600;
                            font-size: 20px;
                            font-family: var(--body-font);
                        }
        .fc-arrow {
            position: absolute;
            width: 50px;
            height: 50px;
            top: calc( 50% - 25px );
            z-index: 2;
            background: var(--primary-color);
            color: #ffffff;
            text-align: center;
            cursor: pointer;
            opacity: 0;
            transition: all .25s ease-in-out;
            -moz-transition: all .25s ease-in-out;
            -webkit-transition: all .25s ease-in-out;
        }

            .fc-arrow:hover {
                background: #249ebd;
            }

            .fc-slick-slider:hover .fc-arrow {
                opacity: 1;
            }

            .fc-arrow:before {
                content: '';
                display: inline-block;
                vertical-align: middle;
                width: 0;
                height: 100%;
            }

            .fc-prev {
                left: 0;
                -ms-transform: rotate(180deg);
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
            }

            .fc-next {
                right: 0;
            }

                .fc-arrow em {
                    display: inline-block;
                    vertical-align: middle;
                    font-size: 18px;
                }

/*featured areas*/
section.featured-areas-section {
    background: #0090af url(images/hp-areas-bg.jpg) top center no-repeat;
    background-size: 100% 100%;
}

    .area-of-expertise-content {
        padding: 48px 0 48px 30px;
    }

    .expertise-site-title {
        color: #7ae4ff;
        font-size: 43px;
        font-family: var(--title-font);
        line-height: 32px;
        letter-spacing: 7px;
        text-transform: uppercase;
        padding: 94.5px 0;
    }

        .expertise-site-title span {
            display: block;
            color: #016079;
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            line-height: 19px;
            letter-spacing: 3px;
            margin-top: 10px;
        }

            .areas-title{
                color: #fff;
                font-family: var(--body-font);
                font-size: 20px;
                font-weight: 600;
                text-transform: uppercase;
                line-height: 10px;
                display: block;
                margin-bottom: 29px;
            }

                .areas-title span {
                    font-family: var(--title-font);
                    color: #fff;
                    font-style: italic;
                    font-size: 45px;
                    line-height: 40px;
                    text-transform: none;
                    margin: 8px 0 15px 0;
                    display: block;
                }

                    .area-of-expertise-content ul li {
                        list-style-type: square;
                        color: #fff;
                        font-size: 16px;
                        width: calc(100% / 3);
                        margin-bottom: 10px;
                        transition: all .25s ease-in-out;
                        -moz-transition: all .25s ease-in-out;
                        -webkit-transition: all .25s ease-in-out;
                    }

                        .area-of-expertise-content ul li a{
                            font-family: var(--body-font);
                            font-size: 20px;
                            font-weight: 500;
                            color: #fff;
                            text-transform: uppercase;
                        }

                        .area-of-expertise-content ul li:hover {
                            padding-left: 15px;
                            transition: all .25s ease-in-out;
                            -moz-transition: all .25s ease-in-out;
                            -webkit-transition: all .25s ease-in-out;
                        }

                            .area-of-expertise-content ul {
                                display: flex;
                                flex-flow: row wrap;
                                margin-left: 20px;
                            }

/*footer*/
footer.main-footer {
    background: #222;
    padding: 33px 0 30px;
}

    .footernav li {
        display: inline-block;
        border-left: 1px solid #f4f4f4;
        padding: 0 10px;
        text-transform: uppercase;
        line-height: 10px;
    }

        .footernav li a {
            color: #f4f4f4;
            font-family: 'Open Sans', sans-serif;
        }

            .footernav li a:hover{
                color: var(--primary-color);
            }

                 .footernav li:first-child {
                    border: 0;
                    padding-left: 0;
                }

                    .footer-copyright,
                    .footer-copyright a {
                        font-size: 12px;
                        color: #818181;
                        font-family: 'Open Sans', sans-serif;
                        letter-spacing: .2px;
                    }

                        .footer-copyright span{
                            color: var(--primary-color);
                        }

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

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

                    .footer-copyright {
                        margin-top: 5px;
                    }

                .mls {
                    text-align: right;
                    font-size: 0;
                    margin-top: 5px;
                }

                    .mls em{
                        margin-right: 15px; 
                        font-size: 22px;
                        color: #cdcdcd;
                    }

                        .mls img {
                            display: inline-block;
                            vertical-align: top;
                            margin-top: -5px;
                        }

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

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

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

.sidebar-agent-photo img {
    margin: 0 auto;
}

.sidebar-contacts span i{
    font-family: var(--title-font);
    color: #000;
    font-size: 12px;
    font-style: italic;
}

.sidebar-contacts span,
.sidebar-contacts span a{
    font-size: 15px;
    color: var(--primary-color);
    font-family: var(--body-font);
}

.sidebar-smi a {
    color: var(--primary-color);
    padding: 5px;
    font-size: 22px;
    margin: 0 3px;
}

.sidebar-smi {
    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;
    justify-content: center;
}

.sidebar-smi a:hover,
.sidebar-contacts span a:hover{
    color: #249ebd;
}

.sidebar-contacts span {
    display: block;
    text-align: center;
}

.sidebar-contacts {
    margin-top: 15px;
}

.sidebar-cta {
    margin-top: 10px;
}

.sidebar-cta .cta-list a {
    margin: 0 auto 15px;
}

.sidebar-cta .cta-label span strong {
    font-size: 30px;
}

/* 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 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 30px;
    font-family: var(--title-font);
    font-weight: 400;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    margin-top: -10px;
    margin-bottom: 10px;
}

#content .archive-subtitle a{
    color: var(--primary-color);
}

#content .archive-subtitle a:hover{
    color: #249ebd;
}

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

p#breadcrumbs a{
    color: var(--primary-color);
}

p#breadcrumbs {
    font-size: 14px;
}

#content .entry {
    font-size: 15px;
    color: #000;
    font-family: var(--body-font);
}

.sidebar-agent-photo {
    margin-top: 22px;
}

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

/* Disclaimer */
.footer-credit-disclaimer{
    line-height: 20px;
    font-size: 12px;
    color: #818181;
    margin-top: 5px;
    letter-spacing: .2px;
}
.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle {
    border-radius: 0;
    width: 100%;
    height: 27px;
    padding: 0 10px;
    border: 0;
    background: #fff;
}
.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    color: #5d5d5d;
    font-size: 11px;
    font-weight: 300;
    font-style: italic;
    font-family: var(--body-font);
    -webkit-appearance: none;
    letter-spacing: .3px;
    line-height: 27px;
}
.hp-quick-search .dropdown-menu.open {
    max-height: 300px !important;
}
.hp-quick-search ul.dropdown-menu.inner {
    max-height: 250px !important;
}

.post-page-aios-custom-idx-broker-details-page #content-sidebar #content {
    width: 100% !important;
}

.single-aios-rm-buyers #content-sidebar #content,
.single-aios-rm-sellers #content-sidebar #content {
    width: 100%;
}

body #listings-details .listings-slideshow .listings-slideshow-slide:after {
    opacity: 0;
}

#listings-details .listings-slideshow .listings-slideshow-img {
    background: #000;
}
#listings-details .listings-slideshow .listings-slideshow-img img {
    object-fit: contain !important;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--primary-color);
}

.post-page-aios-custom-idx-broker-results-page #content-full .entry-title {
    width: 100%;
}

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

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

.post-page-aios-custom-idx-broker-results-page #content ul {
    margin: 0 !important;
    line-height: 28px;
    vertical-align: middle;
}

.post-page-aios-custom-idx-broker-results-page .select2-dropdown {
    z-index: 999;
}

.post-page-aios-custom-idx-broker-results-page .select2-results {
    overflow-y: hidden;
}

.post-page-sitemap li.page_item.page-item-489, 
.post-page-sitemap li.page_item.page-item-487, 
.post-page-sitemap li.page_item.page-item-488 {
    display: none;
}

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

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

/* Readable font on pojo */
body.pojo-a11y-readable-font [class*=ai-font],
body.pojo-a11y-readable-font [class~=ai-font],
body.pojo-a11y-readable-font [class^=ai-font] {
  font-family: agentimage !important;
}
/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

