/*
Theme Name: dianewilliamsandassociates-new.com
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
 *
 *******************************************************/

#nav_ {
    display: none;
}
.nav_:first-of-type {
    padding-right: 2.8%;
}
.nav_:last-of-type {
    padding-left: 2.5%;
}
.nav_ {
    width: calc(50% - 98.5px);
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}
    .nav_ li {
        position: relative;
    }
        .nav_ li a {
            font-size: 14px;
            line-height: 1.2;
            display: block;
            text-transform: uppercase;
        }
    .nav_ > li {
        display: inline-block;
        vertical-align: top;
    }
        .nav_ > li > a {
            color: #011f3c;
            font-weight: 500;
            padding: 13.5px 0;
            position: relative;
            z-index: 1;
            transition: color .3s ease;
        }
            .nav_ > li > a:before {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: -25px;
                right: -25px;
                background: #00264c;
                z-index: -1;
                opacity: 0;
                transition: opacity .3s ease;
                /*visibility: hidden;*/
                pointer-events: none;
            }
            .nav_ > li:hover > a {
                color: #fff;
            }
                .nav_ > li:hover > a:before {
                    opacity: 1;
                    /*visibility: visible;*/
                    pointer-events: all;
                }
        .nav_ .sub-menu {
            list-style: none outside none;
            margin: 0;
            /*background: #00264c;*/
            padding: 0;
            position: absolute;
         	width:100%;
         	min-width: 242px;
            text-align: center;
            transition: all .3s ease;
            transform: translateY(10px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
            .nav_ > li > .sub-menu {
                left: calc( 50% - 121px );
                padding: 19px 0 0;
            }
                .nav_ > li > .sub-menu:before {
                    content: '';
                    position: absolute;
                    width: 137px;
                    height: 3px;
                    background: #fff;
                    margin: 0 auto;
                    left: 0;
                    right: 0;
                    top: 19px;
                    z-index: 1;
                }
            .nav_ .sub-menu li {
                background: #00264c;
                padding: 1px 0;
            }
                .nav_ .sub-menu a {
                    color: #FFFFFF;
                    display: block;
                    padding: 10px;
                    transition: all .3s ease;
                }
                    .nav_ .sub-menu li:first-child,
                    .nav_ .sub-menu li:last-child {
                        pointer-events: none;
                    }
                        .nav_ .sub-menu li:first-child > .sub-menu,
                        .nav_ .sub-menu li:last-child > .sub-menu {
                            pointer-events: all;
                        }
                        .nav_ .sub-menu li:first-child > a {
                            margin-top: 22px;
                            pointer-events: all;
                        }
                        .nav_ .sub-menu li:last-child > a {
                            margin-bottom: 19px;
                            pointer-events: all;
                        }

                    .nav_ .sub-menu li:hover > a {
                        background: #333333;
                    }
                    .nav_ .sub-menu .sub-menu {
                        margin-left: 100%;
                     	top:0;
                    }
                        .nav_ li:hover > .sub-menu {
                            transform: translateY(0);
                            opacity: 1;
                            visibility: visible;
                            pointer-events: all;
                        }
                        .nav_ .sub-menu li {
                            position: relative;
                        }


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

/* Global */

body{
	font-family: 'Raleway', Arial, Helvetica, Georgia, Sans-serif;
	font-size: 14px;
	background: #FFF;
	color: #333333;
	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; */
}

#main-wrapper {
    overflow: hidden;
}

a {
    color: inherit;
}
    a:hover {
        opacity: 1;
    }
    a:hover, a:focus, .slick-slide, .slick-slide a {
        outline: none;
        text-decoration: none;
    }
    input, select, textarea {
        outline: none;
    }

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
    .flex:before, .flex:after {
        display: none;
    }
    .dir-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
    }
    .dir-col-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse wrap;
        flex-flow: column-reverse wrap;
    }
    .dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
        flex-flow: row-reverse wrap;
    }
    .al-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .al-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;        
    }
    .al-end {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .ju-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .ju-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .ju-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .ju-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

/*header*/
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    padding: 14px 0 13px;
    background: rgba(255,255,255,.55);
    box-shadow: 1px 2px 1px 0px rgba(0, 0, 0, 0.2);
    transition: all .3s ease;
}
    .header-logo {
        text-align: center;
        font-size: 0;
    }
        .header-navigation .header-logo a {
            display: block;
            position: relative;
        }
            .header-logo img {
                max-width: 100%;
                transition: opacity .3s ease;
            }
            .header-logo img.fixed {
                position: absolute;
                top: 0;
                left: -2px;
                right: 0;
                margin: auto;
                opacity: 0;
            }

    .header-navigation {

    }
        .header-navigation .header-logo {
            width: 197px;
            height: 115px;
            overflow: hidden;
            transition: all .3s ease;
        }


/*fixed*/
header.header.active {
    background: #fff;
    padding: 8px 0 6px;
}
    .active .header-navigation .header-logo {
        height: 79px;
    }

/*floating smi*/
.floating-smi {
    position: fixed;
    right: 41px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    z-index: 2;
}
    .floating-smi a {
        display: block;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(0,38,76,.85);
        color: #fff;
        text-align: center;
        line-height: 42px;
        font-size: 20px;
        transition: all .3s ease;
        margin: 12px 0;
    }
        .floating-smi a:hover {
            background: #fff;
            color: #00264c;
        }

/*section 1 */
section.section-1 {
    position: relative;
}
    #slideshow {

    }
        #slideshow .cycloneslider:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #001021;
            opacity: .15;
            z-index: 2;
        }
        #slideshow .cycloneslider:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 220px;
            background: url(images/overlay-slideshow.png) bottom left repeat-x;
            z-index: 2;
        }
        #slideshow .cycloneslider-slides {
            z-index: 1;
        }


    #quick-search {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 36px;
    }
        #quick-search h2 {
            text-align: center;
            font-weight: 700;
            font-size: 28px;
            letter-spacing: .04em;
            text-transform: uppercase;
            display: block;
            color: #fff;
            margin-bottom: 23px;
        }
        .qs-form {
            font-size: 0;
            margin: 0 -2px;
        }
            .qs-field-lg {
                /*width: 214px;*/
                width: 18.70%
            }
            .qs-field-sm {
                /*width: 113.5px;*/
                width: 9.92%;
            }
            .qs-field {
                padding: 0 3px;
                display: inline-block;
                vertical-align: top;
            }
                .qs-field select,
                .qs-field input[type="text"] {
                    width: 100%;
                    height: 46px;
                    background: #fff;
                    border: none;
                    outline: none;
                    font-weight: 500;
                    font-size: 12px;
                    letter-spacing: 0.02em;
                    color: #686868;
                    padding: 0 16px;
                    text-transform: uppercase;
                    -webkit-appearance: none;
                    appearance: none;
                }
                    .qs-field select {
                        background-image: url(images/icon-select-arrow.png);
                        background-position: calc(100% - 13px) center;
                        background-repeat: no-repeat;
                    }

            .qs-btn {
                width: 22.92%;
                display: inline-block;
                vertical-align: top;
                padding-left: 11px;
            }
                .qs-btn input,
                .qs-btn a {
                    display: inline-block;
                    vertical-align: top;
                    width: calc(50% - 3px);
                    height: 46px;
                    font-size: 13px;
                    font-weight: 600;
                    letter-spacing: .07em;
                    color: #fff;
                    text-align: center;
                    border: none;
                    text-transform: uppercase;
                    transition: all .3s ease;
                }
                .qs-btn input {
                    margin-right: 3px;
                    background: #00264c;
                }
                    .qs-btn input:hover {
                        color: #00264c;
                        background: #fff;
                    }
                .qs-btn a {
                    line-height: 46px;
                    margin-left: 3px;
                    background: #fff;
                    color: #212020;
                }
                    .qs-btn a:hover {
                        background: #333333;
                        color: #fff;
                    }

/*section 2*/
section.section-2 {
    position: relative;
    background: url(images/bg-meet-the-team.jpg) center top/cover no-repeat;
}
    #meet-the-team {
        position: relative;
        padding: 120px 0 0;
        background: url(images/overlay-meet-the-team.png) center top/auto 100% repeat-x;
        overflow: visible;
    }
        .section-title,
        #content .section-title {
            overflow: hidden;
            font-weight: 700;
            font-size: 50px;
            letter-spacing: 0.02em;
            color: #333333;
            text-transform: uppercase;
        }
            .section-title span {
                display: inline-block;
                position: relative;
            }
                .section-title span:before,
                .section-title span:after {
                    content: '';
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    height: 2px;
                    background: #00264c;
                    width: 1000px;
                }
                .section-title span:before {
                    right: 100%;
                    margin-right: 18.2%;
                }
                .section-title span:after {
                    left: 100%;
                    margin-left: 18.2%;
                }

            .section-title em {
                font-style: normal!important;
                color: #00264c;
            }


        #meet-the-team .section-title {
            max-width: 900px;
            margin: 0 auto 49px;
            text-align: center;
        }
        .mtt-text {
            max-width: 890px;
            margin: 0 auto 73px;
            text-align: center;
        }
            .mtt-text p {
                font-size: 14px;
                line-height: 24px;
                letter-spacing: 0.03em;
                color: #333333;
                margin-bottom: 60px;
            }
            .btn-a {
                display: inline-block;
                vertical-align: top;
                min-width: 243px;
                padding: 20px 15px;
                text-align: center;
                font-weight: 700;
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.03em;
                line-height: 1.2;
                color: #fff!important;
                background: #00264c!important;
                border: none;
                transition: color .3s ease, background .3s ease;
            }
                .btn-a:hover {
                    color: #fff!important;
                    background: #333333!important;
                }

        .mtt-photo {
            /*margin-left: -80px;
            margin-right: -92px;*/
            position: relative;
        }
            .mtt-photo img {
                display: block;
                height: auto;
                width: 100%;
            }
            .mtt-logo {
                position: absolute;
                width: 426px;
                left: 0;
                right: 0;
                bottom: -149px;
                margin: auto;
            }

/* section 3 */
section.section-3 {
    position: relative;
}
    #call-to-action {
        position: relative;
        padding: 290px 0 75px;
    }
        #call-to-action .container {
            width: 90.938vw;
            max-width: 1455px;
            padding: 0;
        }
        .cta-list {

        }
            .cta {
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 15px auto;
                width: 100%;
                height: 306px;
                background: #333333;
                position: relative;
                transition: all .3s ease;
            }
                .cta:before, .cta:after {
                    content: '';
                    position: absolute;
                    /*width: 193px;*/
                    /*width: 56.4%;*/
                    height: 2px;
                    background: #fff;
                    opacity: .7;
                    
                }
                .cta:before {
                    right: 0;
                    left: 43.444%;
                    top: 30.4%;
                    transition: right .5s cubic-bezier(0.19,1,0.22,1), left .5s .3s cubic-bezier(0.19,1,0.22,1);
                }
                    .cta:hover:before {
                        /*top: 69.2%;*/
                        right: 43.444%;
                        left: 0;
                        transition: left .5s cubic-bezier(0.19,1,0.22,1), right .5s .3s cubic-bezier(0.19,1,0.22,1);
                    }
                .cta:after {
                    left: 0;
                    right: 43.444%;
                    top: 69.2%;
                    transition: left .5s cubic-bezier(0.19,1,0.22,1), right .5s .3s cubic-bezier(0.19,1,0.22,1);
                }
                    .cta:hover:after {
                        /*top: 30.4%;*/
                        right: 0;
                        left: 43.444%;
                        transition: right .5s cubic-bezier(0.19,1,0.22,1), left .5s .3s cubic-bezier(0.19,1,0.22,1);
                    }
                .cta-title {
                    text-align: center;
                    font-weight: 500;
                    font-size: 20px;
                    letter-spacing: 0.02em;
                    line-height: 1;
                    color: #fff;
                    text-transform: uppercase;
                    width: 100%;
                }
                    .cta-title span {
                        display: block;
                        margin-bottom: 6px;
                    }
                    .cta-title strong {
                        display: block;
                        font-weight: 700;
                        font-size: 30px;
                        letter-spacing: .02em;
                    }

            .cta:hover {
                background: #00264c;
            }
 

/*section 4*/
section.section-4 {
    position: relative;
}
    .s4-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        /*height: 646px;*/
        height: 61.71%;
        background: url(images/bg-listing.jpg) center/cover no-repeat;
        background-attachment: fixed;
    }
        .ios-true .s4-bg {
            background-attachment: scroll;
        }
        .s4-bg:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #333333;
            opacity: .4;
        }
    #latest-listings {
        position: relative;
        /*min-height: 1122px;*/
        padding: 65px 0 176px;
    }
        #latest-listings .section-title {
            text-align: center;
            margin-bottom: 76px;
        }
            #latest-listings .section-title span:before {
                margin-right: 75px;
            }
            #latest-listings .section-title span:after {
                margin-left: 75px;
            }

        .ll-wrap {
            position: relative;
        }
            .ll-prop-main-list {
                position: relative;
                font-size: 0;
            }
                .ll-prop-main-item {
                    display: block;
                    position: relative;
                    overflow: hidden;
                }
                    .ll-prop-main-list canvas {
                        display: block;
                        width: 100%;
                        height: 463px;
                        background-position: center;
                        background-size: cover;
                    }
                    .ll-prop-main-details {
                        position: absolute;
                        right: 0;
                        top: 0;
                        bottom: 0;
                        z-index: 1;
                        width: 490px;
                        text-align: right;
                        color: #fff;
                        padding: 75px 44px 0;
                    }
                        .ll-prop-main-details:before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            border-left: 5px solid #fff;
                            background: rgba(0,38,78,.95);
                            z-index: -1;
                            transform-origin: top left;
                            transform: skewX(19.8deg);
                        }

                        .ll-price {
                            font-family: 'Lato', Sans-serif;
                            font-size: 36px;
                            letter-spacing: 0.02em;
                            line-height: 1;
                            margin-bottom: 20px;
                        }
                        .ll-address {
                            font-size: 16px;
                            line-height: 24px;
                            letter-spacing: .02em;
                            color: #e3e3e3;
                            max-width: 195px;
                            margin-left: auto;
                            margin-bottom: 31px;
                        }
                        .ll-amenities {
                            font-weight: 500;
                            font-size: 14px;
                            letter-spacing: 0.02em;
                            line-height: 1.2;
                            text-transform: uppercase;
                            margin-bottom: 37px;
                        }
                            .ll-amenities span {
                                margin: 5px 0 5px 20px;
                                display: flex;
                                align-items: center;
                            }
                                .ll-amenities span i {
                                    margin-right: 8px;
                                    font-size: 17px;
                                }

                        .ll-view-details {
                            font-weight: 700;
                            font-size: 14px;
                            letter-spacing: 0.05em;
                            text-transform: uppercase;
                            line-height: 1;
                        }
                            .ll-view-details span {
                                display: inline-block;
                                position: relative;
                                border-bottom: 2px solid #fff;
                                padding: 0 0 6px;
                            }


                .ll-prop-main-list .slick-arrow {
                    position: absolute;
                    z-index: 1;
                    bottom: 78px;
                    border-radius: 50%;
                    width: 53px;
                    height: 53px;
                    color: #fff;
                    border: 2px solid rgba(255,255,255,.55);
                    background: transparent;
                    font-size: 13px;
                    font-weight: 700;
                    outline: none;
                    transition: border .3s ease, background .3s ease, color .3s ease;
                }
                    .ll-prop-main-list .slick-arrow:hover {
                        background: #fff;
                        border-color: #fff;
                        color: #00264c;
                    }
                .ll-prop-main-list .slick-next {
                    right: 43px;
                }
                .ll-prop-main-list .slick-prev {
                    right: 108px;
                }

            /*desc*/
            .ll-prop-desc-list {
                font-size: 0;
                position: relative;
                z-index: 1;
                overflow: hidden;
            }
                .ll-prop-desc-list:before {
                    content: '';
                    position: absolute;
                    left: 47px;
                    width: 100%;
                    top: 0;
                    bottom: 0;
                    background: #fff;
                    border-bottom: 8px solid #00264c;
                    z-index: -1;
                    transform-origin: bottom left;
                    transform: skewX(33deg);
                }
                .ll-prop-desc-list:after {
                    content: '';
                    position: absolute;
                    right: 0;
                    left: 48px;
                    top: 0;
                    bottom: 0;
                    background: #fff;
                    border-bottom: 8px solid #00264c;
                    z-index: -1;
                }
                .ll-prop-desc-item {
                    padding: 31px 58px 37px;
                    position: relative;
                    z-index: 1;
                    overflow: hidden;
                }                    
                    .ll-prop-desc-item h3 {
                        font-weight: 700;
                        font-size: 24px;
                        letter-spacing: 0.02em;
                        color: #333333;
                        text-transform: uppercase;
                        margin-bottom: 15px;
                    }
                    .ll-prop-desc-item p {
                        font-size: 13px;
                        line-height: 22px;
                        letter-spacing: 0.02em;
                        color: #5c5c5c;
                    }


/*section 5*/
section.section-5 {
    position: relative;
}
    #desert-communities {
        padding: 134px 0 135px;
    }
        #desert-communities .container {
            width: 90.938vw;
            max-width: 1455px;
            padding: 0;
        }
        #desert-communities .section-title,
        .section-title.ip-dc-title {
            max-width: 1140px;
            margin: 0 auto 53px;
            text-align: center;
        }
            #desert-communities .section-title span:before {
                margin-right: 15.5%;
            }
            #desert-communities .section-title span:after {
                margin-left: 15.5%;
            }
        .dc-list {
            font-size: 0;
            margin: 0 -15px;
        }
            .dc {
                display: inline-block;
                vertical-align: top;
                padding: 15px;
                width: 33.33%;
            }
                .dc a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: relative;
                }
                    .dc a:before, .dc a:after {
                        content: '';
                        position: absolute;
                        /*width: 193px;*/
                        /*width: 56.4%;*/
                        height: 2px;
                        background: #fff;
                        opacity: .7;
                        z-index: 3;
                        transition: all .3s ease;
                    }
                        .dc a:hover:before,
                        .dc a:hover:after {
                            opacity: 0;
                        }
                    .dc a:before {
                        right: 0;
                        left: 43.444%;
                        top: 30.4%;
                        transition: opacity .3s ease, right .5s cubic-bezier(0.19,1,0.22,1), left .5s .3s cubic-bezier(0.19,1,0.22,1);
                    }
                        .dc a:hover:before {
                            /*top: 69.2%;*/
                            right: 43.444%;
                            left: 0;
                            transition: opacity .3s ease, left .5s cubic-bezier(0.19,1,0.22,1), right .5s .3s cubic-bezier(0.19,1,0.22,1);
                        }
                    .dc a:after {
                        left: 0;
                        right: 43.444%;
                        top: 69.2%;
                        transition: opacity .3s ease, left .5s cubic-bezier(0.19,1,0.22,1), right .5s .3s cubic-bezier(0.19,1,0.22,1);
                    }
                        .dc a:hover:after {
                            /*top: 30.4%;*/
                            right: 0;
                            left: 43.444%;
                            transition: opacity .3s ease, right .5s cubic-bezier(0.19,1,0.22,1), left .5s .3s cubic-bezier(0.19,1,0.22,1);
                        }
                    .dc-img {
                        position: relative;
                    }
                        .dc-img canvas {
                            display: block;
                            width: 100%;
                            min-height: 360px;
                            background-position: center;
                            background-size: cover;
                            -webkit-filter: grayscale(1);
                            filter: grayscale(1);
                            transition: all .3s ease;
                        }
                            .dc a:hover .dc-img canvas {
                                -webkit-filter: grayscale(0);
                                filter: grayscale(0);
                            }
                        .dc-img:before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            z-index: 1;
                            transition: all .3s ease;
                        }
                        .dc:nth-child(odd) .dc-img:before {
                            background: rgba(51,51,51,.75);
                        }
                            .dc:nth-child(odd) a:hover .dc-img:before {
                                background: rgba(51,51,51,.4);
                            }
                        .dc:nth-child(even) .dc-img:before {
                            background: rgba(0,38,76,.75);
                        }
                            .dc:nth-child(even) a:hover .dc-img:before {
                                background: rgba(0,38,76,.4);
                            }
                    .dc-title {
                        position: absolute;
                        left: 0;
                        right: 0;
                        text-align: center;
                        font-size: 26px;
                        line-height: 30px;
                        font-weight: 700;
                        letter-spacing: 0.02em;
                        color: #fff;
                        z-index: 2;
                        text-transform: uppercase;
                        transition: all .3s ease;
                    }
                        .dc a:hover .dc-title {
                            opacity: 0;
                            transform: translateY(-10px);
                        }
                    .dc-hover {
                        position: absolute;
                        left: 0;
                        right: 0;
                        text-align: center;
                        z-index: 2;
                        color: #fff;
                        opacity: 0;
                        transition: all .3s ease;
                        margin: auto;
                        width: 87%;
                        transform: translateY(10px);
                    }
                        .dc-hover-title {
                            font-size: 26px;
                            line-height: 30px;
                            font-weight: 700;
                            letter-spacing: 0.02em;
                            text-transform: uppercase;
                            margin-bottom: 27px;
                        }
                        .dc-hover p {
                            font-weight: 500;
                            font-size: 13px;
                            letter-spacing: 0.02em;
                            line-height: 22px;
                            margin-bottom: 35px;
                        }
                        .dc-hover .btn-a {
                            width: 221px;
                            min-width: auto;
                            line-height: 1;
                            font-size: 13px;
                            letter-spacing: 0.07em;
                        }

                        .dc a:hover .dc-hover {
                            opacity: 1;
                            transform: translateY(0);
                        }

/*section 6*/
section.section-6 {
    position: relative;
    background: #00264c url(images/bg-get-in-touch.jpg) center/cover no-repeat;
}
    #get-in-touch {
        position: relative;
        /*min-height: 874px;*/
        padding: 135px 0 141px;
    }
        #get-in-touch .section-title {
            text-align: center;
            color: #fff;
            margin-bottom: 54px;
        }
            #get-in-touch .section-title span:before,
            #get-in-touch .section-title span:after {
                background: #fff;
            }
            #get-in-touch .section-title span:before {
                margin-right: 14.2%;
            }
            #get-in-touch .section-title span:after {
                margin-left: 14.2%;
            }
        .git-form {
            font-size: 0;
            margin: 0 -15px;
            position: relative;
        }
            .git-field-6 {
                width: 50%;
            }
            .git-field-4 {
                width: 33.33%;
            }
            .git-field-12 {
                width: 100%;
            }
            .git-field:not(.flex) {
                display: inline-block;
                vertical-align: top;
            }
            .git-field {
                padding: 0 15px;
            }
                .git-field input[type="text"],
                .git-field input[type="email"],
                .git-field input[type="tel"],
                .git-field textarea {
                    width: 100%;
                    height: 57px;
                    border: 2px solid #fff;
                    background: transparent;
                    font-size: 14px;
                    font-weight: 500;
                    letter-spacing: 0.03em;
                    color: #fff;
                    text-transform: uppercase;
                    margin: 15px 0;
                    padding: 0 23px;
                }
                .git-field textarea {
                    height: 157px;
                    resize: none;
                    padding-top: 20px;
                }

                .git-radio-label {
                    font-size: 14px;
                    font-weight: 500;
                    letter-spacing: 0.03em;
                    color: #fff;
                    text-transform: uppercase;
                    width: 404px;
                    padding-left: 26px;
                }
                .git-radio .wpcf7-form-control-wrap {                    
                    flex-grow: 1;
                }
                    .git-radio .wpcf7-form-control.wpcf7-radio {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }
                    .git-radio span.wpcf7-list-item {
                        margin: 6px 0;
                        position: relative;
                    }
                        .git-radio span.wpcf7-list-item input {
                            opacity: 0;
                            visibility: hidden;
                            position: absolute;
                            top: 0;
                            left: 0;
                        }
                        .git-radio .wpcf7-list-item-label {
                            display: flex;
                            align-items: center;
                            font-size: 14px;
                            font-weight: 500;
                            letter-spacing: 0.03em;
                            color: #fff;
                            text-transform: uppercase;
                            cursor: pointer;
                        }
                            .git-radio .wpcf7-list-item-label:before {
                                content: '';
                                display: inline-block;
                                width: 18px;
                                height: 17px;
                                border: 2px solid #fff;
                                background: transparent;
                                margin-right: 10px;
                                transition: all .3s ease;
                            }
                            .git-radio input:checked ~ .wpcf7-list-item-label:before {
                                background: #fff;
                            }


            .git-form .btn-a {
                display: block;
                width: 243px;
                margin: 48px auto 0;
                background: #fff!important;
                color: #00264c!important;
            }
                .git-form .btn-a:hover {
                    background: #333333!important;
                    color: #fff!important;
                }
            .git-form .wpcf7-form-control-wrap {
                display: block;
            }
            .git-form .ajax-loader {
                position: absolute;
                bottom: -20px;
                left: 0;
                right: 0;
                margin: auto!important;
            }
            .git-form .wpcf7-not-valid-tip {
                font-size: 12px;
                font-weight: 700;
                top: 40%;
            }
            .git-form .wpcf7-response-output {
                position: absolute;
                top: 100%;
                left: 15px;
                right: 15px;
                margin: 15px auto;
                color: #fff;
                font-size: 13px;
                text-align: center;
                line-height: 1.2;
                font-weight: 500;
                letter-spacing: .03em;
            }


/*footer*/
footer.footer {
    /*min-height: 572px;*/
    background: #333333;
    padding: 72px 0 38px;
}
    .footer-top {
        position: relative;
    }
        .footer-left {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
        }
        .footer-center {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
        }
            .footer-logo {
                text-align: center;
            }
                .footer-logo > a {
                    display: block;
                    width: 266px;
                    margin: 0 auto 45px;
                }
                	 .footer-logo > a img {
                	 	max-width: 100%;
                	 	display: block;
                	 }
                    /*.footer-logo > img {
                        display: block;
                        max-width: 100%;
                        margin: 0 auto 40px;
                    }*/
                .footer-logo .flex {
                    font-size: 0;
                }
                    .footer-logo .flex img {
                        max-width: 100%;
                        margin: 0 17.5px;
                    }
        .footer-right {
            -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
            order: 3;
            text-align: right;
        }
            .footer-contact {
                padding: 37px 0 0;
            }
                .footer-contact h2 {
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 1.2;
                    color: #fff;
                    text-transform: uppercase;
                    margin-bottom: 27px;
                }
                .footer-contact .contact {
                    font-weight: 500;
                    font-size: 14px;
                    letter-spacing: .02em;
                    line-height: 20px;
                    color: #fff;
                    margin-bottom: 12px;
                }
                    .footer-contact .contact a {
                        color: #fff;
                        transition: all .3s ease;
                    }
                        .footer-contact .contact a:hover {
                            /*color: #00264c;*/
                            color: #fff;
                            opacity: .7;
                        }
                    .footer-contact .contact span {
                        display: inline-block;
                        vertical-align: top;
                        position: relative;
                        padding-left: 20px;
                    }
                        .footer-contact .contact span i {
                            position: absolute;
                            top: 0;
                            left: 0;
                        }
                        .footer-contact .contact span i.ai-font-location-c {
                            font-size: 16px;
                            top: 4px;
                        }
                        .footer-contact .contact span i.ai-font-phone {
                            font-size: 12px;
                            top: 5px;
                        }
                        .footer-contact .contact span i.ai-font-envelope-f {
                            font-size: 9px;
                            top: 7px;
                        }

                    .footer-contact .contact-smi {
                        font-size: 0;
                        margin-top: 26px;
                    }
                        .footer-contact .contact-smi a {
                            display: inline-block;
                            vertical-align: top;
                            width: 37px;
                            height: 37px;
                            border-radius: 50%;
                            border: 1px solid rgba(255,255,255,.27);
                            color: #fff;
                            font-size: 20px;
                            line-height: 37px;
                            text-align: center;
                            margin: 0 6.5px;
                        }
                        .footer-contact .contact-smi a:hover {
                            background: #fff;
                            color: #00264c;
                            opacity: 1;
                        }
                        .footer-contact .contact-smi a:last-child {
                            margin-right: 0;
                        }
                        .footer-contact .contact-smi a:first-child {
                            margin-left: 0;
                        }

                    .footer-right .footer-contact .contact {
                        margin-bottom: 19px;
                    }
                        .footer-contact .contact.contact-email span {
                            padding-left: 25px;
                        }


        .footernav {
            position: relative;
            text-align: center;
            margin: 53px 0 15px;
            font-size: 0;
        }
            .footernav li {
                display: inline-block;
                vertical-align: top;
                margin: 5px 25px;
            }
                .footernav li a {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 1.2;
                    color:  #fff;
                    letter-spacing: 0.02em;
                    transition: all .3s ease;
                }

            .footernav li a:hover,
            .footer-bottom a:hover {
                /*color: #00264c;*/
                color: #fff;
                opacity: .7;
            }

    .footer hr {
        border-color: #5e5e5e;
    }
    .footer-bottom {
        text-align: center;
        font-size: 12px;
        letter-spacing: 0.03em;
        line-height: 1.2;
        color: #d0d0d0;
        padding: 21px 0 0;
    }
        .footer-bottom a[style] {
            color: #fff;
        }
        .footer-icons {
            display: block;
            font-size: 20px;
            color: #fff;
            margin-top: 15px;
        }



/*******************************************************
 *
 * 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: #001021;
        opacity: .15;
    }
    .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: 77.08%; }
#content-full #content { width: 100%; }

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

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

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

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.02em;
    color: #00264c;
    text-transform: uppercase;
    line-height: 1;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle { 
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.02em;
    color: #00264c;
    text-transform: uppercase;
    line-height: 1;
}

#content p {
    /*line-height: 24px;*/
    letter-spacing: 0.03em;
}

.amh-navigation .amh-menu li:hover > a, .amh-navigation .amh-menu li.open > a {
    background: #00264c!important;
}
	 
a.comm-button {
    background: #00264c;
    padding: 15px;
    text-align: center;
    color: #fff;
     max-width: 240px;
    margin: 0 auto 20px;
}

a.comm-button:hover {
    background: #03386d !important;
}
.page-id-352 #content a.comm-button{
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 99px;
    border-radius: 10px;
    background: rgba(0,38,76,.9);
}

    .page-id-352 #content a.comm-button u {
        text-decoration: none!important;
    }
#ihf-main-container a,
#ihf-main-container .btn-link {
    color: #000!important;
}
#ihf-main-container a:hover,
#ihf-main-container .btn-link:hover {
    color: #00264c!important;
}
#ihf-main-container .dropdown-menu>.active>a, #ihf-main-container .dropdown-menu>.active>a:focus, #ihf-main-container .dropdown-menu>.active>a:hover,
#ihf-main-container .dropdown-menu>li>a:focus, #ihf-main-container .dropdown-menu>li>a:hover {
    color: #fff!important;
}

a.resources-cta {
    text-align: center;
}
    #content a.resources-cta p {
        margin-bottom: 0;
        margin-top: 0;
        font-size: 18px;
        font-weight: 700;
        color: #00264c;
    }
    a.resources-cta img {
        transition: all .3s ease;
    }
    a.resources-cta:hover img {
        box-shadow: 5px 4px 15px #000 !important;
    }

#content .dc-hover-title {
    margin-bottom: 10px;
}

#content .dc-hover p {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}
.page-id-349 .entry_header .title, 
.page-id-349 .location, 
.page-id-349 .price, 
.page-id-349 .property2_entry .price, 
.page-id-349 .entry_info, 
.page-id-355 .entry_header .title, 
.page-id-355 .location, 
.page-id-355 .price, 
.page-id-355 .property2_entry .price, 
.page-id-355 .entry_info{
    color: #333 !important; 
}

.page-id-336 .agent-holder .attachment-agent-image {
    width: 22%;
}
    .page-id-336 .agent-holder .attachment-agent-image img {
        /*height: 250px;*/
        -o-object-fit: cover;
           object-fit: cover;
    }
.page-id-336 .agent-holder .agent-contacts {
    width: 78%;
}

.aios_listings_list_wrap {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
}
.property2_entry {
    vertical-align: top;
    margin-left: 3px;
    margin-right: 3px;
    width: calc(33.33% - 6px);
}
    .property2_entry .banner {
        display: none;
    }
    #content .property2_entry img {
        max-width: 100%;
        width: 100%;
        height: 205px;
        object-fit: cover;
    }

.render-all-description a {
    display: block;
    margin-top: 20px;
}

#is_details2 .entry_info,
#is_details2 .entry_footer_right p,
#is_details2 .entry_footer_right p strong {
    color: #000;
}

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