
/*
Theme Name: Vicky Welch
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.8
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 {
    position:relative;
    display: inline-block;
}
  
#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: #348bbf;
    display: none;
    padding: 0;
    position: absolute;
    width:100%;
    min-width:180px;

    top: 100%;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #1f6188;
    color: #fff;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    /*margin-left: 100%;*/
    top:0;
    left: 100%;
}
#nav li:hover > .sub-menu {
    display: block;
}
#nav .sub-menu li {
    position: relative;
    display: block;
}

/* Fixed Sub Menu */
#nav2 li {
    position:relative;
    display: inline-block;
}
  
#nav2 .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: #348bbf;
    display: none;
    padding: 0;
    position: absolute;
    width:100%;
    min-width:180px;

    top: 100%;
}
#nav2 .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav2 .sub-menu a:hover {
    background: none repeat scroll 0 0 #1f6188;
    color: #fff;
    text-decoration: none;
}
#nav2 .sub-menu .sub-menu {
    /*margin-left: 100%;*/
    top:0;
    left: 100%;
}
#nav2 li:hover > .sub-menu {
    display: block;
}
#nav2 .sub-menu li {
    position: relative;
    display: block;
}




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

/* Global */

body{
    font-family: 'Montserrat', 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;*/
    opacity: 0;
}

#sections {
    /*height: 100vh;*/
}

.section {
    width: 100vw;
    height: 100%;
    padding-top: 106px;
    overflow: hidden;
}
.section-inner {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 15px;
    z-index: 1;
    position: relative;
}

.section-right-title {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 53px;
    display: flex;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.section-right-title span{
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    position: relative;
    white-space: nowrap;
    display: block;
    letter-spacing: 3px;
    bottom: -28px;
    margin-left: -8px;
}

.section-right-title span i{
    font-style: normal;
    margin-left: 27px;
}

.section-right-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 43%;
    background: #8ebfe6;
}

div#sections .pp-section.pp-table,
div#sections .pp-tableCell {
    display: block;
    /*position: relative;*/
    z-index: 2;
}


/*header*/
header.main-header {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 25px 28px 0;
    z-index: 1001;
    margin-top: 0;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    header.main-header.hide-default-header{
        margin-top: -100px;
        opacity: 0;
        pointer-events: none;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

        .header-left {
            display: flex;
            align-items: center;
        }

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

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

        .fixed-header .header-inner {
            align-items: center;
        }

.fixed-header .header-navigation ul li a,
header.main-header .header-navigation ul li a {
    padding: 0 22px;
    color: #1f6188;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.45px;
}

.fixed-header .header-navigation ul#nav2 > li ,
header.main-header .header-navigation ul#nav > li {
    padding: 40px 0;
    font-size: 15px;
}

header.main-header .header-navigation ul#nav > li > a {
    color: #fff;
}

.fixed-header.show-fixed-header .header-logo a {
    max-width: 200px;
}


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

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

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

            .slide-menu-content {
                position: fixed;
                bottom: 0;
                right: -50%;
                width: 100%;
                max-width: 100%;
                height: 100%;
                opacity: 0;
                z-index: 1004;
                visibility: hidden;
                -webkit-transition: all 0.4s ease-in-out;
                -moz-transition: all 0.4s ease-in-out;
                -o-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
            }

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

                    .slide-menu-inner-content {
                        position: relative;
                        height: 100%;
                        overflow-y: auto;
                        /* padding: 7.563vw 45px 50px; */
                        background: url('images/bmenu-bg.jpg') no-repeat;
                        background-position: center;
                        background-size: cover;
                        z-index: 2;
                        display: -webkit-box;
                        display: -webkit-flex;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-flex-wrap: wrap;
                        -ms-flex-wrap: wrap;
                        flex-wrap: wrap;
                    }

                        .close-b-menu {
                            position: absolute;
                            top: 25px;
                            right: 28px;
                            font-size: 20px;
                            color: #fff;
                            width: 54px;
                            height: 54px;
                            background: #348bbf;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            cursor: pointer;
                            -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;
                            z-index: 5;
                        }

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

                        .slide-menu-holder {
                            width: 100%;
                            max-width: 1400px;
                            position: relative;
                            padding: 30px 15px;
                            margin: 0 auto;
                        }

                    .contact-info-bmenu .menu-contact-info{
                        display: block !important;
                        margin-top: 21px;
                        transform: translateX(50px) translateZ(0);
                        opacity: 0;
                        transition: transform .9s ease, opacity .3s ease;
                    }

                    .slide-menu-content.active .contact-info-bmenu .menu-contact-info{
                        transform: translateX(0) translateZ(0);
                        opacity: 1;
                        transition: transform .9s ease .6s, opacity .3s ease .6s;
                    }

                .menu-contact-info span a {
                    display: inline-block;
                    color: #a5a5a5;
                    font-size: 13px;
                    font-weight: 500;
                    font-family: 'Montserrat', sans-serif;
                    letter-spacing: .7px;
                    -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;
                }

                    .menu-contact-info em.ai-font-phone {
                        font-size: 11px;
                        margin-right: 12px;
                        color: #89b601;
                    }

                        .menu-contact-info .ai-font-envelope-f {
                            font-size: 10px;
                            margin-right: 10px;
                            color: #89b601;
                        }

                                .menu-contact-info span {
                                    display: block;
                                    margin-bottom: 11px;
                                }

                                    .menu-contact-info span a:hover{
                                        color: #348bbf;
                                    }

.b-menu {
    margin-top: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

    ul#slidenav {
        text-align: left;
        font-size: 0;
        width: 100%;
        display: flex;
    }

        ul#slidenav > li > a {
            display: inline-block;
            padding: 5px 0;
            color: #49463f;
            font-size: 24px;
            font-weight: 400;
            letter-spacing: .7px;
            font-family: 'Montserrat', sans-serif;
            transform: translateX(50px) translateZ(0);
            opacity: 0;
            transition: transform .9s ease, opacity .3s ease;
        }

            .slide-menu-content.active ul#slidenav > li > a{
                transform: translateX(0) translateZ(0);
                opacity: 1;
                transition: transform .9s ease .6s, opacity .3s ease .6s;
            }
            
            ul#slidenav > li ul.sub-menu a{
                font-size: 12px;
                color: #7a7a7a;
                font-weight: 400;
                font-family: 'Montserrat', sans-serif;
                text-transform: uppercase;
                letter-spacing: .5px;
                padding: 3.5px 0;
                display: inline-block;
            }

                ul#slidenav li a:hover{
                    color: #b7b5b2 !important;
                }

                    ul#slidenav > li > a:hover{
                        color: #b7b5b2 !important;
                    }

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

                        ul#slidenav li ul.sub-menu li {
                            margin-bottom: 6px;
                            transform: translateX(50px) translateZ(0);
                            opacity: 0;
                            transition: transform .9s ease, opacity .3s ease;
                        }

                            .slide-menu-content.active ul#slidenav li ul.sub-menu li {
                                transform: translateX(0) translateZ(0);
                                opacity: 1;
                                transition: transform .9s ease .6s, opacity .3s ease .6s;
                            }

                            ul#slidenav > li {
                                display: inline-block;
                                vertical-align: top;
                                position: relative;
                                padding-left: 60px;
                                width: 25%;
                                margin: 29px 0;
                            }

                            ul#slidenav > li.menu-item-38 {
                                width: 40%;
                            }

                                #slidenav  > li::before {
                                    content: '';
                                    position: absolute;
                                    left: 0;
                                    top: 15px;
                                    width: 41px;
                                    height: 1px;
                                    background: #89b601;
                                    transition: transform .9s ease, opacity .3s ease;
                                    transform: translateX(5vw);
                                    opacity: 0;
                                    transition-delay: .5s;
                                }

                                    .slide-menu-content.active #slidenav > li:before {
                                        transform: translateX(0) translateZ(0);
                                        opacity: 1;
                                        transition-delay: .5s;
                                    }


/*logo*/
.header-logo {
    padding-top: 8px;
}

    .header-logo a {
        display: block;
        max-width: 267px;
        position: relative;
    }

/*header contact*/
.header-contact {
    font-size: 0;
    padding: 0 27px;
}

    .hdr-contact-info span a {
        display: inline-block;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: .7px;
        -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-info em.ai-font-phone {
            font-size: 11px;
            margin-right: 3px;
        }

            .hdr-contact-info .ai-font-envelope-f {
                font-size: 10px;
                margin-right: 2px;
            }

                .hdr-contact-info span.hdr-c-border {
                    width: 1px;
                    height: 18px;
                    background: #fff;
                    margin: 0 24px;
                }

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

                        .hdr-contact-info span a:hover{
                            color: #348bbf;
                        }

/*burger menu*/
.header-burger-menu {
    width: 54px;
    height: 54px;
    background: #348bbf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .header-burger-menu span {
        display: block;
        width: calc(100% - 26px);
        height: 1px;
        background: #fff;
    }

        .header-burger-menu span:nth-child(2) {
            margin: 8px 0;
        }

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

/*slideshow*/
div.section-1 {
    padding-top: 0;
}

    div.section-1::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 236px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.72) 21%,rgba(0,0,0,0.34) 57%,rgba(0,0,0,0.17) 74%,rgba(0,0,0,0.07) 87%,rgba(0,0,0,0) 100%);
        z-index: 9;
        opacity: .5;
    }

    .slider-holder {
        position: relative;
        height: 100%;
    }

        .slider-holder .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-custom-video::after,
        .slider-holder .cycle-slide::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: .37;
            z-index: 1;
        }

            .slider-holder::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(images/slide-logo-overlay.png) no-repeat;
                background-position: center;
                background-size: cover;
                opacity: .07;
                pointer-events: none;
            }

                .slider-holder .cycloneslider-template-video .cycloneslider-slides,
                .slider-holder .cycloneslider-template-video {
                    height: 100% !important;
                }

/*tagline*/
.slider-tagline-holder{
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 145px;
}

    .slider-tagline-inner{
        width: 100%;
        padding: 0 100px;
        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;
    }

        .tagline-list{
            text-align: center;
            font-size: 50px;
            color: #fff;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-shadow: -1px 1px 2px rgba(0, 1, 1, 0.5);
            letter-spacing: 5px;
            /*opacity: 0;*/
            position: relative;
            /*min-height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;*/
        }

            .tagline-list span {
                font-size: 25px;
                display: block;
            }

            /*.start-animate .tagline-list {
                opacity: 1 !important;
                transition: opacity .5s ease .8s !important;
            }

                .ready-animate .tagline-list, 
                .removing-animate .tagline-list {
                    opacity: 0;
                }*/

/*welcome*/
div.section-2{
    background: url(images/wc-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}
    div.section-2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/slide-logo-overlay.png) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .07;
        pointer-events: none;
        z-index: 1;
    }

    .wc-area {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        padding-top: 50px;
    }

        .wc-agent{
            position: relative;
        }

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

                .wc-agent img {
                    position: relative;
                    z-index: 5;
                    display: inline-block;
                    margin: -75px auto 0;
                    width: 230px;
                    top: 87px;
                }

                    .wc-agent {
                        position: relative;
                        text-align: center;
                        padding: 0 40px 90px;
                        max-width: 419px;
                    }

                        .wc-agent::before {
                            content: '';
                            position: absolute;
                            top: 7px;
                            left: -7px;
                            width: 100%;
                            height: 100%;
                            background: #89b601;
                        }

                            .wc-content {
                                max-width: 562px;
                                padding: 24px 15px 0;
                            }

                                h1.wc-title {
                                    font-size: 45px;
                                    text-transform: uppercase;
                                    color: #fff;
                                    font-weight: 500;
                                    font-family: 'Montserrat', sans-serif;
                                    letter-spacing: 4.5px;
                                    margin-bottom: 39px;
                                }

                                    .wc-text p {
                                        font-size: 14px;
                                        color: #fff;
                                        font-weight: 400;
                                        font-family: 'Montserrat', sans-serif;
                                        line-height: 1.75;
                                        padding-bottom: 24px;
                                        letter-spacing: 1.45px;
                                    }

                                        .wc-link a {
                                            display: block;
                                            font-size: 14px;
                                            text-transform: uppercase;
                                            color: #fff;
                                            font-weight: 600;
                                            font-family: 'Montserrat', sans-serif;
                                            max-width: 184px;
                                            height: 42px;
                                            line-height: 42px;
                                            position: relative;
                                            text-align: center;
                                            letter-spacing: 1px;
                                        }

                                            .wc-link a span {
                                                position: relative;
                                                z-index: 5;
                                            }

                                                .wc-link a::after {
                                                    content: '';
                                                    position: absolute;
                                                    top: 0;
                                                    left: 0;
                                                    width: 105px;
                                                    height: 2px;
                                                    background: #fff;
                                                    -webkit-transition: all 0.3s ease-in-out;
                                                    -moz-transition: all 0.3s ease-in-out;
                                                    -o-transition: all 0.3s ease-in-out;
                                                    transition: all 0.3s ease-in-out;
                                                }

                                                    .wc-link a:hover::after{
                                                        background: #89b601;
                                                        width: 100%;
                                                        height: 100%;
                                                    }

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

/*meet the team*/
div.section-3{
    background: url(images/mt-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

    div.section-3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/slide-logo-overlay.png) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .07;
        pointer-events: none;
        z-index: 1;
    }
    div.section-3 .section-inner > div {
        height: 100%;
    }

    .team-area{
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .team-area .slick-list::before {
            content: 'Meet The Team';
            text-align: center;
            width: 100%;
            display: block;
            font-size: 45px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 4.5px;
        }

        .team-arrows {
            position: absolute;
            width: 100%;
            max-width: 1500px;
            background-color: red;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
        }
        
        .team-arrows .slick-arrow {
            position: absolute;
            left: 0;
            background: transparent;
            border: 0;
            color: #fff;
            font-size: 40px;
        }
        
        .team-arrows .slick-arrow.team-next {
            right: 10px;
            left: auto;
        }

        .team-list {
            max-width: 405px;
            margin: 0 auto;
            padding: 60px 30px;
            position: relative;
        }

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

                .team-slick-slider {
                    width: 100%;
                    max-width: 1320px;
                    margin: 0 auto;
                }

                    .team-side-name {
                        font-size: 14px;
                        color: #fff;
                        text-transform: uppercase;
                        font-weight: 600;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 1.3px;
                        position: absolute;
                        bottom: 39%;
                        left: -21px;
                        transform: translateX(-50%) translateY(-50%) rotate(-90deg);
                        -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
                        -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
                        width: 100%;
                        padding-left: 118px;
                        -webkit-transition: all 0.3s ease-in-out;
                        -moz-transition: all 0.3s ease-in-out;
                        -o-transition: all 0.3s ease-in-out;
                        transition: all 0.3s ease-in-out;
                    }

                        .team-side-name::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            top: 0;
                            margin: auto;
                            width: 105px;
                            height: 2px;
                            background: #348bbf;
                            background: linear-gradient(to left, rgba(63,99,150,1) 0%,rgba(85,151,203,0) 100%);
                            opacity: .4;
                        }

                            .hover-team-name{
                                position: absolute;
                                bottom: -100px;
                                left: 0;
                                width: 100%;
                                text-align: center;
                                font-size: 18px;
                                color: #fff;
                                text-transform: uppercase;
                                font-weight: 600;
                                font-family: 'Montserrat', sans-serif;
                                letter-spacing: 1.3px;
                                padding: 21px 15px 0;
                                z-index: 5;
                                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;
                            }

                                .team-list a:hover .hover-team-name{
                                    bottom: -56px;
                                    opacity: 1;
                                    pointer-events: auto;
                                }

                                .hover-team-name span {
                                    display: block;
                                    font-size: 13px;
                                    color: #d6d6d6;
                                    font-weight: 400;
                                    margin-top: 9px;
                                }

                                    .hover-team-name::after{
                                        content: '';
                                        position: absolute;
                                        top: 0;
                                        left: 0 ;
                                        right: 0;
                                        margin: auto;
                                        width: 106px;
                                        height: 2px;
                                        background: #fff;
                                    }

                                        .team-list a .team-photo::after {
                                            content: '';
                                            position: absolute;
                                            bottom: -1px;
                                            left: 0;
                                            width: 101%;
                                            height: 180px;
                                            background: linear-gradient(to top, rgb(83, 148, 202) 0%,rgba(85,151,203,0) 100%);
                                        }

                                            .team-photo{
                                                -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;
                                                transform: scale(1);
                                                -webkit-transform: scale(1);
                                                -moz-transform: scale(1);
                                                position: relative;
                                            }

                                                .team-list a:hover .team-photo{
                                                    transform: scale(1.05);
                                                    -webkit-transform: scale(1.05);
                                                    -moz-transform: scale(1.05);
                                                }

                                                    .team-list a:hover .team-side-name{
                                                        bottom: 30%;
                                                        opacity: 0;
                                                        pointer-events: none;
                                                    }
 
/*featured properties*/
div.section-4{
    background: url(images/fp-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 0;
}      

    div.section-4 .section-inner{
        padding: 0 0;
    }

        div.section-4 .section-inner > div {
            height: 100%;
        }

        .featured-properties-area{
            position: relative;
            height: 100%;
            padding-top: 106px;
        }
    
            .fp-list a{
                display: block;
                position: relative;
                overflow: hidden;
            }      

                .fp-photo{
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: 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;
                }           

                    .fp-photo canvas{
                        display: block;
                        width: 100%;
                    }  

                        .fp-agent-overlay{
                            position: absolute;
                            bottom: 0;
                            right: 7.688vw;
                            width: 20.813vw;
                            pointer-events: none;
                        }

                            .fp-list a::after {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                width: 100%;
                                height: 230px;
                                background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,0,0,0) 12%,rgba(0,0,0,0) 14%,rgba(0,0,0,0.02) 27%,rgba(0,0,0,0.2) 82%,rgba(0,0,0,0.24) 100%);
                            }

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

                                    .fp-slick-slider *,
                                    .fp-slick-slider {
                                        height: 100%;
                                    }

                                        .fp-content {
                                            position: absolute;
                                            bottom: 0;
                                            width: 100%;
                                            height: auto;
                                            background: rgba(52, 139, 191, 0);
                                            padding: 0 6vw;
                                            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;
                                            display: flex;
                                            align-items: center;
                                        }

                                            .fp-list a:hover .fp-content{
                                                background: rgba(52, 139, 191, 0.85);
                                            }

                                                .fp-address {
                                                    font-size: 35px;
                                                    color: #fff;
                                                    font-family: 'Montserrat', sans-serif;
                                                }

                                                    .fp-specs {
                                                        font-size: 16px;
                                                        text-transform: uppercase;
                                                        color: #a7dbfa;
                                                        font-family: 'Montserrat', sans-serif;
                                                        letter-spacing: 3.2px;
                                                        margin-top: 14px;
                                                    }

                                                        .fp-btn {
                                                            background: #89b601;
                                                            text-align: center;
                                                            color: #fff;
                                                            font-size: 12px;
                                                            text-transform: uppercase;
                                                            font-weight: 600;
                                                            max-width: 211px;
                                                            width: 100%;
                                                            height: 53px;
                                                            line-height: 53px;
                                                            letter-spacing: 2px;
                                                            font-family: 'Montserrat', sans-serif;
                                                        }

                                                    .fp-content-inner {
                                                        width: 100%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: space-between;
                                                        max-width: 65.938vw;
                                                        padding: 40px 0;
                                                    }

                                                .fp-list a:hover .fp-photo{
                                                    transform: scale(1.02);
                                                    -webkit-transform: scale(1.02);
                                                    -moz-transform: scale(1.02);
                                                }

                                            .fp-arrow-holder {
                                                position: absolute;
                                                bottom: 0;
                                                left: -176px;
                                                display: flex;
                                                transform: rotate(-90deg);
                                                -webkit-transform: rotate(-90deg);
                                                -moz-transform: rotate(-90deg);
                                                bottom: 175px;
                                            }

                                        .fp-arrow-holder span {
                                            font-size: 14px;
                                            font-weight: 600;
                                            color: #fff;
                                            text-transform: uppercase;
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            width: 203px;
                                            height: 55px;
                                            cursor: pointer;
                                            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;
                                        }

                                    span.fp-next {
                                        background: #5597cb;
                                    }

                                .fp-arrow-holder span:hover{
                                    background: #89b601 !important;
                                }

                            .fp-arrow-holder span em {
                                margin-right: 15px;
                            }

/*featured communities*/
div.section-5{
    background: url(images/fc-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}    
    div.section-5::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/slide-logo-overlay.png) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .07;
        pointer-events: none;
        z-index: 1;
    }

    div.section-5 .section-right-title span {
        color: #fff;
    }         

        div.section-5 .section-inner{
            padding: 0 0;
        }  

            div.section-5 .section-inner > div {
                height: 100%;
            }

            .featured-communities-area {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }      

                .fc-slick-slider {
                    width: 100%;
                }

                    .fc-slick-slider:before {
                        content: 'Serving the Shoreline and More';
                        text-align: center;
                        width: 100%;
                        display: block;
                        font-size: 45px;
                        text-transform: uppercase;
                        color: #fff;
                        font-weight: 500;
                        font-family: 'Montserrat', sans-serif;
                        letter-spacing: 4.5px;
                        margin-bottom: 30px;
                    }                

                    .fc-list {
                        /*max-width: 320px;*/
                        margin: 0 auto;
                    }   

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

                            .fc-photo{
                                position: relative;
                            }     

                                .fc-photo canvas{
                                    display: block;
                                    width: 100%;
                                    background-size: cover;
                                    background-repeat: no-repeat;
                                    background-position: 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;
                                    -webkit-filter: grayscale(1);
                                    filter: grayscale(1);
                                }  

                                    .fc-list a:hover .fc-photo canvas{
                                        -webkit-filter: grayscale(0);
                                        filter: grayscale(0);
                                    }      

                                        .fc-label{
                                            text-align: center;
                                            margin-top: 35px;
                                        }

                                            .fc-label span{
                                                text-align: center;
                                                color: #fff;
                                                font-size: 15px;
                                                font-weight: 500;
                                                text-transform: uppercase;
                                                font-family: 'Montserrat', sans-serif;
                                                position: relative;
                                                display: inline-block;
                                                letter-spacing: 1.2px;
                                                border-top: solid 2px #7cbfe7;
                                                padding: 19px 0 5px;
                                                -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;
                                            }       

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

                                                    .fc-list a:hover .fc-photo::after{
                                                        opacity: 1;
                                                        height: 3px;
                                                    }

                                                        .fc-photo::before {
                                                            content: '';
                                                            position: absolute;
                                                            bottom: -5px;
                                                            left: 0;
                                                            right: 0;
                                                            margin: auto;
                                                            width: 0;
                                                            height: 0;
                                                            opacity: 0;
                                                            border-left: 6px solid transparent;
                                                            border-right: 6px solid transparent;
                                                            border-top: 8px solid #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;
                                                        }

                                                            .fc-list a:hover .fc-photo::before{
                                                                bottom: -8px;
                                                                opacity: 1;
                                                            }

                                                                .fc-list a:hover .fc-label span{
                                                                    border-top: solid 2px #348bbf !important;
                                                                }

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

                                                        .fc-list.fc-border-change .fc-label span{
                                                            border-top: solid 2px #9dcf07;
                                                        }     

/*footer*/
div.section-6{
    /* background: url(images/footer-bg.jpg) no-repeat; */
    background: url(images/fp1.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}  
div.section-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    pointer-events: none;
    z-index: 1;
}
    div.section-6 .section-right-title span {
        color: #494540;
    } 
/*
        div.section-6 .section-inner::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(images/ft-agent.png) no-repeat;
            background-position: center;
            background-size: cover;
            -webkit-filter: grayscale(1);
            filter: grayscale(1);
            opacity: .1;
            pointer-events: none;
        }
*/
            .footer-content {
                max-width: 810px;
                margin: 0 auto;
                position: relative;
                z-index: 5;
                width: 100%;
            }

                .footer-area {
                    height: 100%;
                    display: flex;
                    align-items: center;
                }

                    .footer-logos {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        margin-bottom: 48px;
                    }


div.section-6 .fp-agent-overlay {
    z-index: 1;
}

/*get in touch*/
.gt-holder{
    position: relative;
    z-index: 5;
    max-width: 780px;
    margin: 0 auto;
    padding: 70px 15px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.55);
}

    .gt-title {
        font-size: 45px;
        text-transform: uppercase;
        color: #5597cb;
        font-family: 'Montserrat', sans-serif;
        line-height: 1;
        position: relative;
        margin-bottom: 10px;
        text-align: center;
        letter-spacing: 4.5px;
        font-weight: 500;
    }

        .gt-form{
            font-size: 0;
            padding: 0 15px;
            max-width: 706px;
        }

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

                .gt-form textarea {
                    padding-top: 18px;
                    height: 84px;
                    padding-right: 30px;
                }

                    .gt-fields.gt-textarea {
                        width: 100%;
                        margin-bottom: 0;
                        position: relative;
                    }

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

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

                            .gt-form div.wpcf7 .ajax-loader {
                                display: block;
                                position: absolute;
                                right: 0;
                                left: 0;
                                margin: auto;
                            }

                                .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: #000;
                                            text-align: center;
                                            left: 0;
                                            right: 0;
                                            margin-top: 10px;
                                        }

                                            .gt-form form {
                                                position: relative;
                                            }
  
                                                .gt-fields.gt-textarea input.wpcf7-submit {
                                                    font-size: 0;
                                                    height: 24px;
                                                    width: 24px;
                                                    border: none;
                                                    background: url(images/gt-send-icon.png) no-repeat;
                                                    background-position: center;
                                                    display: block;
                                                    -webkit-transition: all 0.4s ease-in-out;
                                                    -moz-transition: all 0.4s ease-in-out;
                                                    -o-transition: all 0.4s ease-in-out;
                                                    transition: all 0.4s ease-in-out;
                                                    position: absolute;
                                                    bottom: 22px;
                                                    right: 10px;
                                                    z-index: 4;
                                                }

                                                    .gt-fields.gt-textarea input.wpcf7-submit:hover{
                                                        opacity: .8;
                                                    }  

/*footer nav*/
nav.footer-nav {
    text-align: center;
    margin-top: 46px;
}

    ul.footernav {
        font-size: 0;
    }

        ul.footernav > li > a {
            display: inline-block;
            padding: 5px 0;
            color: #696969;
            font-size: 13px;
            font-weight: 400;
            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;

        }
            
            ul.footernav li a:hover{
                color: #124a75 !important;
            }

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

.footer-copyright {
    line-height: 1.8;
    letter-spacing: .45px;
    margin-bottom: 1px;
    text-align: center;
    color: #696969;
}

    .footer-copyright,
    .footer-copyright a,
    .footer-links a {
        font-size: 13px;
        color: #696969;
        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-links a:hover{
            color: #124a75 !important;
        }

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

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

                .mls {
                    text-align: center;
                    font-size: 22px;
                    color: #5597cb;
                    margin-top: 7px;
                }

                    .mls em {
                        margin: 0 2px;
                    }    

                        .footer-copyright span {
                            font-weight: 500;
                        }

/*left side fix*/
.left-side-fixed {
    position: fixed;
    left: 13px;
    height: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    z-index: 1003;
    flex-direction: column;
    justify-content: flex-end;
    justify-content: center;
    /* padding: 40px 0; */
    pointer-events: none;
    top: 60%;
    transform: translateY(-50%);
}


    .left-side-fixed .pp-tooltip{
        display: none !important;
    }

        .left-side-fixed div#pp-nav {
            left: auto !important;
            top: auto !important;
            position: relative;
            pointer-events: auto;
        }

            .left-side-fixed #pp-nav span, 
            .left-side-fixed .pp-slidesNav span {
                top: 0;
                left: 0;
                width: 9px;
                height: 9px;
                border: none;
                background: rgba(187, 217, 243, 0.9);
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }

                .left-side-fixed #pp-nav li .active span, 
                .left-side-fixed .pp-slidesNav .active span {
                    background: #fff;
                }

                    .left-side-fixed #pp-nav li, 
                    .left-side-fixed .pp-slidesNav li {
                        width: 9px;
                        height: 9px;
                        margin: 14px 0;
                        position: relative;
                    }

                        .scroll-line {
                            width: 2px;
                            height: 15.5vw;
                            background: #8ebfe6;
                            margin-bottom: 13px;
                            margin-top: 65px;
                        }

                            .scroll-down {
                                text-align: center;
                                display: flex;
                                flex-direction: column;
                                font-size: 11px;
                                text-transform: uppercase;
                                color: #fff;
                                font-weight: 700;
                                font-family: 'Montserrat', sans-serif;
                                letter-spacing: 2.1px;
                                line-height: 1.3;
                                cursor: pointer;
                                pointer-events: auto;
                                -webkit-transition: all 0.3s ease-in-out;
                                -moz-transition: all 0.3s ease-in-out;
                                -o-transition: all 0.3s ease-in-out;
                                transition: all 0.3s ease-in-out;
                            }

                                .scroll-down em.ai-font-arrow-g-d {
                                    font-size: 13px;
                                    opacity: .5;
                                    margin-top: 6px;
                                }

                            body.pp-viewing-contact-us .scroll-down{
                                color: #6c6c6c;
                            }

                        body.pp-viewing-contact-us .left-side-fixed #pp-nav li .active span, 
                        body.pp-viewing-contact-us .left-side-fixed .pp-slidesNav .active span {
                            background: #6c6c6c;
                        }

                    .scroll-down:hover{
                        opacity: .8;
                    }

/*ip footer*/
footer.main-footer{
    /* background: url(images/ft-bg.jpg) no-repeat; */
    background: url(images/fp1.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 70px 0 50px;
}

    footer.main-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.7);
        pointer-events: none;
        z-index: 1;
    }

    /* footer.main-footer::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(images/ft-agent.png) no-repeat;
        background-position: center;
        background-size: cover;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
        opacity: .1;
        pointer-events: none;
    } */

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

        footer.main-footer .fp-agent-overlay {
            z-index: 1;
        }

/*******************************************************
 *
 * 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 {
    font-size: 25px;
    text-transform: uppercase;
    color: #1d4f67;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-align: center;
}

.ip-container .entry-title {
    color: #1d4f67;
}

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

}

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

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


#agents-single .agents-description .entry-title {
    display: block;
}

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

.aios-cu-img span {
    display: block;
    position: relative;
}

.aios-cu-img span:not(:last-child) {
    margin-bottom: 50px;
}

.aios-cu-img span img {
    margin: 0 auto;
}

.aios-cu-right {
    display: block;
    position: relative;
    padding: 17% 25px;
    border: 1px solid #ded1c1;
}

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

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

.post-page-meet-the-team #agents-results .agents-name a {
    color: #348bbf;
}

.post-page-meet-the-team #agents-results .agents-name a:hover {
    color: #1f6188;
}

.post-page-meet-the-team #agents-results .agents-button {
    border: 2px solid #348bbf;
    color: #348bbf;
}

.post-page-meet-the-team #agents-results .agents-button:hover {
    background: #348bbf;
}

#agents-results .agents-name {
    flex-direction: column !important;
}

#agents-results .agent-top {
    display: none !important;
}

.post-page-meet-the-team #agents-results {
    margin-top: 50px;
}

.post-page-meet-the-team  #agents-results .agents-contact li a:hover {
    color: #acdbc9;
}

.post-page-meet-the-team #content #agents-results .agents-name a:hover {
    color: var(--aios-agents-hover-color);
}

.post-page-meet-the-team #agents-results .agents-description p,
.single-aios-agents #agents-single .agents-description p,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form h2 span,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form input[type="text"], 
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form input[type="email"], 
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form input[type="tel"], 
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form textarea {
    color: #696969;
}

.single-aios-agents .agents-description > h2,
.single-aios-agents #agents-single .agents-contact li a {
    color: #1d4f67;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact em {
    -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;
}

.post-page-contact #content .aios-cu-form > h2,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span a, 
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span p,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact em,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form input[type="submit"] {
    color: #1d4f67;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span a:hover,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span a:hover em,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form input[type="submit"]:hover {
    color: #acdbc9;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span:hover:last-child,
.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span:hover:last-child em {
    color: #1d4f67;
}

.post-page-contact .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form {
    border: 1px solid #696969;
}

#inner-page-wrapper >.container {
    width: 100%;
}

.aios-custom-ihomefinder-printable-template #breadcrumbs,
.aios-custom-ihomefinder-printable-template #content .listings-printable-photo div strong,
.aios-custom-ihomefinder-printable-template .aios-mobile-header-1,
.aios-custom-ihomefinder-printable-template #content .listings-printable-header span {
    display: none !important;
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: #1d4f67;
}

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

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

.ihf-details-template .listings-slideshow-splide-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    z-index: 3;
    pointer-events: none;
}

#listings-details .listings-slideshow-splide.splide-default .listings-slideshow-splide-text span {
    text-shadow: 1px 2px 2px #000 !important;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    left: auto;
    font-size: 13px;
}

#listings-details .listings-form textarea {
    padding-right: 30px !important
}

body .aios-cu-contact {
    text-align: center;
}

body .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-title {
    text-align: center;
}

body .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form {
    margin: 0 auto;
}


body .aios-custom-ihomefinder-template-poweredby {
    margin-bottom: 50px;
}

body .aios-custom-ihomefinder-template-credits {
    text-align: center;
}

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

.footer-address {
    font-size: 15px;
    text-align: center;
    padding: 0 0 25px;
}

#nav .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;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

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

.post-page-contact .aios-cu-inner .aios-cu-map {
    margin-left: -15px;
    margin-right: -15px;
}

#ihf-main-container .glyphicon-remove-circle:before {
    color: #fff !important;
}

.search-advance #inner-page-wrapper {
    z-index: 2;
}

.footer-area li.menu-item-212 {
    display: none;
}