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

/*

TABLE OF CONTENTS

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

*/


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


/* Sub Menu */
.navigation {
    margin: 18px auto;
    text-align: center;
}

#nav li {
    position:relative;
    display: inline-block;
    padding: 0 42px;
}

#nav li:before {
    position: absolute;
    content: '';
    top: 27%;
    left: 0;
    right: 0;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.50);
}

#nav li:first-child:before {
    display: none;
}

#nav li a {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 2.73px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

#nav > li > a:hover{
    color: #ddd;
}

#nav li:first-child {
    padding-left: 0;
}

#nav li:last-child {
    padding-right: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:180px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #000000;
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    top: 0;
    left: 0;
    transform: translateX(-120%);
}

#nav li#menu-item-206 .sub-menu:last-child {
    margin-left: 20%;
}

#nav li:hover > .sub-menu {
    display: block;
}
 #nav .sub-menu li {
     position: relative;
     display: block;
 }

 #nav > li > .sub-menu > li > a{
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
 }

 #nav > li > .sub-menu > li > a:hover {
     background: #55c7e9cf;
     color: #fff;
 }

 #nav > li:first-child {
     margin-left: 0;
 }
 #nav > li:last-child {
     margin-right: 0;
 }

 #nav > li a:before > .sub-menu {
     display: none;
 }

 #nav .sub-menu {
     background: transparent;
     text-align: center;
     width: 100%;
     /*min-width: 234px;*/
     display: none;
     list-style: none outside none;
     margin: 0;
     left: 50%;
     transform: translateX(-50%);
     padding-top: 20px;
 }

 #nav .sub-menu li{
     padding: 1px 0;
 }

 #nav .sub-menu li a {
    padding: 8px 10px !important;
    font-size: 11px;
    font-weight: normal;
    background: #55c7e9;
    box-shadow: inset 0 0 0 0 #fff;
    display: block;
    line-height: 18px;
    color: #fff;
 }

 #nav > li:hover > a{
     background: transparent;
 }

 #nav > li > a{
     position: relative;
     -webkit-transition: 0.4s all ease-in-out;
     transition: 0.4s all ease-in-out;
 }




 #nav .sub-menu li:before{
     display: none;
 }

 #nav > li{
     position: relative;
 }


#nav li:first-child a {
    padding-left: 0;
}

#nav li:last-child a {
    padding-right: 0;
}

#nav > li > .sub-menu:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
}

#nav > li > .sub-menu:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 8px);
    border-width: 8px;
    border-color: transparent transparent #fff;
    border-style: solid;
}

#nav li#menu-item-226 .sub-menu {
    left: 70%;
}

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

/* Global */

body{
	font-family: 'Raleway', 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,
textarea{
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

.slick-track *{
    outline: none;
}

select::-ms-expand {
    display: none;
}

select{
    -webkit-appearance: none;
    outline: none;
}

input{
    outline: none;
}


/*FIXED HEADER*/
#fixed-header {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    background: #000!important;
    transform: translateY(-100%);
    transition: all 0.4s ease-in-out;
}

#fixed-header.active{
    transform: translateY(0);
}


#fixed-header.active .header-wrapper{
    background: #1a6189;
}


#fixed-header.active .h-top{
    display: none;
}



/* HEADER */

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}


.h-top {
    display: block;
}

.h-smi {
    display: inline-block;
    vertical-align: middle;
    float: left;
    padding-top: 29px;
    -webkit-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
}


.h-smi span {
    font-size: 14px;
}

.h-top .h-smi a {
    background: rgba(0,0,0,.15);
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    text-align: center;
    line-height: 30px;
    margin: 0 5.5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.h-top .h-smi a:hover {
    background: #55c7e9;
}

.h-smi:first-child a {
    margin-left: 0;
}

.h-contacts {
    display: inline-block;
    vertical-align: middle;
    float: right;
    padding-top: 41px;
    -webkit-transition: 0.4s all ease-out;
    transition: 0.4s all ease-out;
}


.h-contacts em.icon-mobile{
    position: relative;
}

.h-contacts em.icon-mobile:before{
    position: absolute;
    content: '';
    top: 12%;
    left: -30px;
    width: 19px;
    height: 16px;
    background: url(images/phone-icon.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

.h-contacts span.h-mobile {
    margin-right: 50px;
    font-size: 16.66px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.33px;
    color: #fff;
    text-transform: uppercase;
}

.h-contacts em.icon-mail{
    position: relative;
}

.h-contacts em.icon-mail:before{
    position: absolute;
    content: '';
    top: 12%;
    left: -30px;
    width: 17px;
    height: 16px;
    background: url(images/mail-icon.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}


.h-contacts span.h-mail{
    font-size: 16.66px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.33px;
    color: #fff;
    text-decoration: underline;
}


.h-contacts span.h-mail a{
    color: #fff;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}


.h-contacts span.h-mail a:hover{
    color: #ddd;
}

.slideshow-wrapper{
    position: relative;
}

/*SLIDESHOW*/


.slideshow-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img:before,
.slideshow-container .cycloneslider-slide:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/slide-overlay.png) no-repeat;
    background-position: top center;
    background-size: 100% 100%;
}

.slideshow-container .aios-slider.aios-slider-template-default .aios-slider-splide .aios-slider-img:after,
.slideshow-container .cycloneslider-slide:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.15);
}


/*SLIDE TAGLINE*/

.slide-tagline {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
}

.slide-tagline span{
    display: block;
}

.slide-tagline span.slide-title-main {
    font-size: 65px;
    line-height: 1;
    color: #fff;
    letter-spacing: 5.2px;
    font-weight: 600;
    text-transform: uppercase;
}

.slide-tagline span.slide-tag-bot {
    font-size: 20px;
    line-height: 45px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
}

/*QUICKSEARCH*/

.qs-container {
    position: absolute;
    bottom: 69px;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
}


.qs-form {
    /* max-width: 750px; */
    max-width: 1185px;
    width: 100%;
    margin: auto;
    font-size: 0;
    /* border: 3px solid #fff; */
    position: relative;
}

.qs-label {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 123px;
    background: #fff;
    background: #fff url(images/label-arrow.png) no-repeat scroll right 15px center;
    height: 46px;
    position: relative;
    cursor: pointer;
}

    .qs-label .qs-options {
        position: absolute;
        top: 109%;
        left: -3px;
        z-index: 3;
        min-width: 210px;
        pointer-events: none;
        opacity: 0;
        transition: .3s ease-in-out;
        box-shadow: 2px 2px 13px rgba(0,0,0, .5);
    }

    .qs-options.show{
        pointer-events: auto;
        opacity: 1;
    }

        .qs-options ul {
            margin: 0;
            padding: 0;
            text-align: center;
        }

            .qs-options ul li {
                display: block;
                background-color: #fff;
                padding: 10px;
                cursor: pointer;
                transition: .3s ease-in-out;
            }

            .qs-options ul li:hover {
                background-color: #d2d2d2;
            }

                .qs-options ul span {
                    display: block;
                    font-size: 11px;
                    color: #000;
                    text-transform: uppercase;
                }

                .qs-container .qs-forms{
                    display: block;
                    position: relative;
                    display: none;
                }

                .qs-container .qs-forms.qs-form-active{
                    display: block;
                }

                .qs-container .qs-forms > input{
                    display: inline-block;
                    vertical-align: middle;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    -ms-appearance:none;
                    outline: none;
                    border: 0;
                    height: 46px;
                    font-size: 14px;
                    color: #fff;
                }

                .qs-container .qs-forms .qs-form-input{
                    background-color: transparent;
                    width: 100%;
                    padding-left: 16px;
                    font-weight: 400;
                }

                /* .qs-container .qs-forms .qs-form-input::placeholder{
                    color: #fff;
                    font-size: 14px;
                } */

                .qs-container .qs-forms .qs-btn-submit{
                    width: 50px;
                    position: absolute;
                    right: 0;
                    top: 0;
                    padding: 0;
                    margin: 0;
                    background-color: #fff;
                    color: transparent;
                    background: #fff url(images/magnifying-icon.png) no-repeat center;
                }

.qs-label span.qs-label-main {
    font-size: 14px;
    line-height: 25px;
    color: #1a6189;
}

.qs-input.qs-field {
    width: 100%;
}

.qs-input.qs-field::after{
    content: '';
    display: table;
    clear: both;
}

.qs-container .qs-form-holder{
    width: 100%;
    display: inline-block;
    
}

.qs-input input#qs-long {
    width: calc(100% - 123px);
    height: 46px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 0 17px;
}

.qs-search input {
    position: absolute;
    right: 0;
    top: 0;
    width: 49px;
    height: 100%;
     background: #fff url(images/magnifying-icon.png) no-repeat center;
     border: 0;
    display: inline-block;
}

.qs-wrapper .btn-group.bootstrap-select.show-tick.qs-select{
    width: calc(100% - 123px);
}
.qs-wrapper.home-search .btn-group.bootstrap-select.show-tick.qs-select{
    width: 100%;
}

.qs-wrapper .bootstrap-select.btn-group .dropdown-toggle {
    width: 92%;
    height: 46px;
    background: transparent!important;
    border: none;
    padding: 0 17px;
    outline: none!important;
    box-shadow: none!important;
}

.qs-wrapper .bootstrap-select.btn-group .dropdown-toggle .filter-option{
    font-size: 14px;
    color: #fff;
    width: 100%;
}

.qs-wrapper .bootstrap-select.btn-group .bs-searchbox input.form-control{
    width: 100% !important;
}

.qs-wrapper .bootstrap-select.btn-group .dropdown-menu{
    min-width: 93% !important;
    max-height: 200px!important;
}

.qs-wrapper ul.dropdown-menu.inner{
    max-width: 100%;
}

ul.dropdown-menu.inner .text {
    color: #41363a !important;
}


small.text-muted{
    display: none;
}

/*button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 46px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 0 17px;

}
*/

span.filter-option.pull-left {
    font-size: 14px ;
}



/*HP CTA*/

.cta-container {
    position: relative;
}

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

.cta-wrapper {
    padding: 115px 0 149px;
}

.cta-wrapper h2.cta-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 1.6px;
    color: #0c3960;
    text-transform: uppercase;
    text-align: center;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-wrapper span.cta-big {
    display: block;
    font-size: 35px;
    line-height: 35px;
    letter-spacing: 3.5px;
    color: #0c3960;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-wrapper span.cta-big:before {
    position: absolute;
    bottom: -65%;
    left: 0;
    right: 0;
    content: '';
    height: 1px;
    width: 46px;
    background: rgba(145,145,145,.57);
    margin: 0 auto;

}

.cta-border {
    padding: 23% 0;
}

.cta-item-1, .cta-item-2, .cta-item-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-item-1:before {
    position: absolute;
    content: '';
    bottom: -4%;
    left: 0;
    right: 0;
    width: 26px;
    height: 32px;
    background: url(images/cta-calc-icon.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    margin: 0 auto;
    z-index: 2;
}

.cta-item-1:after {
    position: absolute;
    bottom: -15%;
    left: 0;
    right: 0;
    width: 93px;
    height: 93px;
    border: 3px solid #1a6189 !important;
    background: #1a6189;
    content: '';
    margin: 0 auto;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-item-2:before {
    position: absolute;
    content: '';
    bottom: -4%;
    left: 0;
    right: 0;
    width: 26px;
    height: 32px;
    background: url(images/cta-loc-icon.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    margin: 0 auto;
    z-index: 2;
}

.cta-item-2:after {
    position: absolute;
    bottom: -15%;
    left: 0;
    right: 0;
    width: 93px;
    height: 93px;
    border: 3px solid #1a6189 !important;
    background: #1a6189;
    content: '';
    margin: 0 auto;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-item-3:before {
    position: absolute;
    content: '';
    bottom: -4%;
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(images/cta-magnifying-icon.png) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    margin: 0 auto;
    z-index: 2;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-item-3:after {
    position: absolute;
    bottom: -15%;
    left: 0;
    right: 0;
    width: 93px;
    height: 93px;
    border: 3px solid #1a6189 !important;
    background: #1a6189;
    content: '';
    margin: 0 auto;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.cta-item-1 a,
.cta-item-2 a,
.cta-item-3 a {
    border: 1px solid #d8d8d8;
    width: 360px;
    height: 263px;
     -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

/*Hovers*/

/*.cta-item-1 a:hover, .cta-item-2 a:hover, .cta-item-3 a:hover {
    background: #55c7e9;
}*/

.cta-item-1:hover a,
.cta-item-2:hover a,
.cta-item-3:hover a {
    background: #55c7e9;
}

.cta-item-1 a:hover h2.cta-title,
.cta-item-2 a:hover h2.cta-title,
.cta-item-3 a:hover h2.cta-title{
    color: #fff;
}

.cta-item-1 a:hover span.cta-big,
.cta-item-2 a:hover span.cta-big,
.cta-item-3 a:hover span.cta-big{
     color: #fff;
}

.cta-item-1:hover:after,
.cta-item-2:hover:after,
.cta-item-3:hover:after {
    background: #55c7e9;
    border: 3px solid #fff!important;
}


.cta-item-1:hover h2.cta-title,
.cta-item-2:hover h2.cta-title,
.cta-item-3:hover h2.cta-title {
    color: #fff;
}

.cta-item-1:hover span.cta-big,
.cta-item-2:hover span.cta-big,
.cta-item-3:hover span.cta-big {
    color: #fff;
}


/*HP WELCOME*/

.welc-container{
    margin-top: 225px; /*14.45%*/
}

.welc-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

.welc-wrapper:before{
    position: absolute;
    content:'';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/welc-bg.jpg) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    -webkit-filter: grayscale(100%);
   filter: grayscale(100%);
}

.welc-content {
    float: left;
    width: 62%;
    position: relative;
    background: #fff;
    padding: 70px 74px 72px 70px;
    margin-top: -225px; /*-20%*/
}

.welc-content img {
    max-width: 100%;
}

.agent-photo {
    float: left;
    width: 38%;
    position: relative;
}

.agent-photo img {
    max-width: 100%;
    margin-top: -18.5%;
}

.welc-wrap-title {
    padding-bottom: 25px;
}


.welc-content h1.welc-title-main {
    font-size: 50px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0c3960;
    font-weight: 600;
    margin: 0!important;
}

.welc-content span.welc-tagline {
    font-size: 15px;
    line-height: 26px;
    color: #1a6189;
    font-weight: 600;
}

.welc-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.42px;
    color: #919191;
    margin-bottom: 25px;
   /* width: 81%;*/
}

.welc-content a.welc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 263px;
    height: 66px;
    background: #1a6189;
    color: #fff;
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 2.25px;
    font-family: 'Roboto',sans-serif;
    text-transform: uppercase;
    margin-top: 30px;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.welc-content a.welc-btn:hover {
    background: #0f73a9de;
}


/*FEATURED PROPERTIES*/

.fp-container {
    position: relative;
}

.fp-wrapper{
    display: flex;
    flex-flow: row wrap;
    position: relative;;
}

.fp-guide {
    position: absolute;;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;;
    pointer-events: none;
    opacity: 0;
}

.fp-wrap-right {
    width: 63%;
}

.fp-right-img canvas{
    display: block;
    width: 100%;
    background-position: center center!important;
    background-size: 100% 100%!important;
    background-repeat: no-repeat!important;
    min-height: 513px;

}

.fp-left {
    padding: 61px 0;
}

.fp-left h2.fp-title-main {
    font-size: 25px;
    line-height: 37px;
    letter-spacing: 7.5px;
    color: #bfbebe;
    text-transform: uppercase;
    position: relative;
}

.fp-left span.fp-title-bot {
    font-size: 30px;
    line-height: 37px;
    letter-spacing: 9px;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}

.fp-wrap-left {
    /*background: #0c0c0c;*/
    width: 37%;
    /*padding-left: 13.4375%;*/
  /*  padding-left: 200px;*/
   padding-left: 12.7%;
    position: relative;
}


.fp-wrap-left:before {
   position: absolute;
   content:'';
   top:0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(12,12,12,.95);
}

.fp-wrap-left:after {
   position: absolute;
   content:'';
   top:0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url(images/fp-img-1.jpg) no-repeat;
   background-size: cover;
   background-position: left center;
   z-index: -1;
}

.fp-top-details {
    padding-top: 19px;
}

.fp-bot-details {
    padding: 23px 0 30px;
}


.fp-left span.fp-add {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.26px;
    color: #bebebe;
    font-weight: 300;
    display: block;
    margin-bottom: 10px;
}

.fp-left span.fp-price {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    line-height: 55px;
    letter-spacing: -0.8px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.fp-left span.fp-beds {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.26px;
    color: #acacac;
    position: relative;
    margin-right: 45px;
    margin-left: 35px;
}


.fp-left em.fp-beds-icon{
    position: relative;
}

.fp-left em.fp-beds-icon {
    position: absolute;
    content: '';
    top: 0;
    left: -35px;
    width: 24px;
    height: 15px;
    background: url(images/fp-bed-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.fp-left em.fp-bath-icon{
    position: relative;
}

.fp-left em.fp-bath-icon {
    position: absolute;
    content: '';
    top: -6px;
    left: -30px;
    /* display: inline-block; */
    /* vertical-align: middle; */
    width: 19px;
    height: 23px;
    background: url(images/fp-bath-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}



.fp-left span.fp-bath{
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.26px;
    color: #acacac;
    position: relative;
    margin-left: 10px;
}


.fp-prop-desc p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.26px;
    color: #acacac;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 10px;
}


.fp-btn {
     padding-top: 22px;
     font-family: 'Roboto', sans-serif;
     cursor: pointer;
}


.fp-left span.fp-back {
    font-size: 13px;
    line-height: 24px;
    color: #55c7e9;
    font-style: italic;
    margin-left: 50px;
    position: relative;
}

.fp-left span.fp-back:before {
    position: absolute;
    content: '';
    bottom: -56%;
    left: -50px;
    width: 80px;
    height: 7px;
    background: url(images/fp-back-arrow.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}


.fp-left span.fp-next {
    font-size: 13px;
    line-height: 24px;
    color: #55c7e9;
    font-style: italic;
    margin-left: 14px;
    position: relative;
}


.fp-left span.fp-next:before {
    position: absolute;
    content: '';
    bottom: -56%;
    right: -50px;
    width: 80px;
    height: 7px;
    background: url(images/fp-next-arrow.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.fp-right-img {
    position: relative;
    display: flex;
    align-items: center;
}

.fp-view-more{
    opacity: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.fp-view-more span.fp-btn {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 263px;
    height: 70px;
    text-transform: uppercase;
    color: #287298;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    letter-spacing: 1.6px;
}

.fp-right-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 199, 233,.75);
    opacity: 0;
}

.fp-wrap-right a{
    display: block!important;
    vertical-align: middle;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.fp-wrap-right a:hover .fp-view-more {
    opacity: 1;
}

.fp-right-img:hover:before{
    opacity: 1;
}

/*FEATURED COMMUNITIES*/

.fc-wrapper {
    padding: 100px 0 76px;
}

.fc-wrapper h2.fc-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 9px;
    text-transform: uppercase;
    color: #1a6189;
    font-weight: 700;
    padding-bottom: 54px;
    margin: 0 auto;
    text-align: center;
}

.fc-item a {
    display: block;
    border: 1px solid rgba(216,216,216,.47);
    margin-bottom: 29px;
    width: 360px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 50px;
    letter-spacing: 1.19px;
    text-transform: uppercase;
    color: #595959;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.fc-item a:hover {
    background: #55c7e9;
    color: #fff;
}




/*REVIEWS */

.review-wrapper {
    position: relative;
     z-index: 1;
     padding: 92px 0;
}

.review-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/reviews-bg-overlay.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: 1;
}

.review-wrapper:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #11557b;
}

.review-label{
    position: relative;
    z-index: 1;
}

.review-label:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 1px;
    height: 230px;
    background: url(images/review-border.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.review-content {
    position: relative;
    z-index: 2;
    padding-left: 60px;
}


.rev-title {
    margin-top: 30%;
}

.review-label h2.rev-main-title {
    font-size: 25px;
    line-height: 37px;
    letter-spacing: 7.5px;
    text-transform: uppercase;
    color: #74a6c6;
    position: relative;
}

.review-label h2.rev-main-title:before {
    position: absolute;
    content: '';
    top: -100%;
    left: 0;
    width: 83px;
    height: 68px;
    background: url(images/caret-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.review-label span.review-alt {
    font-size: 30px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: 7.5px;
    text-transform: uppercase;
    color: #fff;
    display: block;
}


.review-slide p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-weight: 200;

}

.review-slide span.agent-name,
#content span.agent-name {
    font-size: 23.95px;
    color: #55c7e9;
    display: inline-block;
    vertical-align: top;
}

.review-slide span.agent-rating,
#content span.agent-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.review-slide span.agent-rating:before,
#content span.agent-rating:before {
    position: absolute;
    content:'';
    top: -3px;
    left: 6px;
    width: 103px;
    height: 20px;
    background: url(images/review-stars.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.reviews-title span {
    font-size: 13px;
    font-weight: 500;
    line-height: 20.8px;
    letter-spacing: 0.26px;
    color: #dbf1fe;
}

.reviews-title a {
    float: right;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #55c7e9;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}


.reviews-title a:hover{
    color: #fff;
}

.agent-name-wrap {
    padding-top: 27px;
}

/*POST SECTION*/

.post-wrapper {
    padding: 100px 0;
}

.post-wrapper h2.post-title-main {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 9px;
    color: #1a6189;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding-bottom: 54px;
}

.post-wrap-title {
    padding: 20px 5px 0;
}

.post-wrap-blog-title{
    padding: 20px 5px 0;
}

.post-item a, .post-item-blog a {
    display: block;
}

.post-img canvas, .post-img-blog canvas {
    display: block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.post-img-blog:hover canvas {
    opacity: 0.75;
}

.post-img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.post-img:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 64px;
    height: 64px;
    background: url(images/video-icon.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: 2;
}

.post-img:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19,54,74,.40);
    z-index: 1;
    content: '';
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.post-img:hover:after {
    background: rgba(19,54,74,.10);
}


.post-item span.post-tile,
.post-item-blog span.post-tile {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.48px;
    color: #1a6189;
    font-weight: 600;
}

.post-item p {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.39px;
    color: #595959;
    padding-left: 5px;
    padding-top: 5px;
    font-weight: 500;
}

.post-item-blog p{
    font-size: 15px;
    letter-spacing: 0.28px;
    color: #595959;
    padding: 5px;
    font-weight: 500;
}


.post-img-blog{
    position: relative;
}

.post-img-blog:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.10);
    content: '';
    z-index: 1;
}

.blog-date {
    position: absolute;
    top: 28%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 71px;
    height: 71px;
    background: rgba(255,255,255,.90);
    z-index: 1;
    display: none;
}

.blog-date h2.b-date {
    display: block;
    font-size: 37px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Roboto',sans-serif;
    letter-spacing: 0.74px;
    color: #1a6189;
}

.blog-date span.b-month {
    display: block;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #1a6189;
    text-align: center;
    font-weight: 400;
}



/*GET IN TOUCH*/

.git-container {
   /* background: #000;*/
    padding: 57px 0 41px;
    position: relative;
}

.git-title h2.git-label {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    color: #1a6189;
    padding: 19px 0;
    font-family: 'Raleway',sans-serif;
    font-weight: 500;
}

.git-title span.git-bot-label {
    font-family: 'Raleway',sans-serif;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #1a6189;
    display: block;
    font-weight: 600;
}


.git-row-bot{
    position: relative;
}



.git-row {
    margin: 0 -3px;
}

.git-col{
    width: calc(100% / 3);
    display: block;
    float: left;
    padding: 0 3px;
}


.git-col-bot{
    width: 100%;
}

.git-col input#name {
    width: 100%;
    height: 45px;
    margin-bottom: 6px;
    padding: 0 19px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    color: #fff;
    background: #062947;
    border: none;
    outline: none;
}

.git-col input#email {
    width: 100%;
    height: 45px;
    margin-bottom: 3px;
    padding: 0 19px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    color: #fff;
    background: #062947;
    border: none;
    outline: none;
}

.git-col input#phone {
    width: 100%;
    height: 45px;
    margin-bottom: 3px;
    padding: 0 19px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    color: #fff;
    background: #062947;
    border: none;
    outline: none;
}

.git-col-bot textarea#message {
    width: 100%;
    height: 45px;
    padding: 10px 6% 0 19px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    color: #fff;
    background: #062947;
    border: none;
    outline: none;
    resize: none;
    overflow: hidden;
}

/*NEW QS*/
.qs-form input {
    width: 100%;
    background: #003e75;
    height: 42px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #003e75;
    text-align: center;
}

.qs-form a {
    width: 100%;
    background: #dbdbdb;
    height: 42px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #dbdbdb;
    text-align: center;
    display: block;
    padding: 14px 0;
}

.qs-property {
    width: 21.2%;
}

.qs-form select {
    width: 100%;
    background: #fff url(images/select-arrow.png) no-repeat scroll right 12px center;
    height: 42px;
    color: #999999;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 0 10px;
}
.qs-field-long {
    margin-right: 2px;
}

.qs-field {
    display: inline-block;
    vertical-align: top;
}
.qs-city {
    width: 16.8%;
}
.qs-field-short {
    width: 9.5%;
    margin-right: 2px;
}
.qs-searchbtn {
    margin: 0 2px 0 0.5%;
}
.qs-field-btn {
    width: 10.7%;
}
/*end NEW QS*/

.git-submit input.wpcf7-form-control.wpcf7-submit {
   position: absolute;
   bottom: 43%;
   right: 23px;
   font-size: 0;
   width: 22px;
   height: 22px;
   border: none;
   outline: none;
   background: url(images/airplane-icon.png) no-repeat;
   background-position: center center;
   background-size: 100% 100%;

}


.git-container div.wpcf7-validation-errors{
    text-align: center;
    color: #000;
}

/*FOOTER AREA*/

.ft-top-wrap {
    position: relative;
    padding: 67px 0 57px;
}

.ft-top-wrap:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/ft-bg.jpg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;

}

.ft-top-wrap:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13,79,116,.90);
    z-index: -1;
}


.ft-top {
    text-align: center;
    padding-bottom: 17px;
}

.ft-top span.ft-title {
    font-size: 53.19px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 4.25px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    font-family: 'Raleway',sans-serif;
}

.ft-top span.ft-tagline {
    font-size: 16.36px;
    line-height: 35px;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    color: #bebebe;
    font-family: 'Raleway',sans-serif;
}

.footernav {
	display: block;
	padding-top: 20px;
	font-size: 0;
}

.footernav li {
	display: inline-block;
	padding: 0 28px;
	font-size: 18px;
	letter-spacing: 0;
	vertical-align: top;
	position: relative;
}

.footernav > li:before {
	position: absolute;
	top: 5px;
	left: -20px;
	right: 0;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, .50);
	content: '';
}

.footernav > li:first-child:before {
	display: none;
}

.footernav li:last-child {
	padding-right: 0;
}

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

.footernav li a {
	color: #fff;
	font-size: 14px;
	line-height: 26px;
	letter-spacing: 2.73px;
	font-weight: 500;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
}

.footernav li a:hover {
	color: #c1c1c1;
}

.footernav li ul {
	margin-top: 13px;
    width: 100%;
    max-width: 130px;
}

.footernav .sub-menu > li {
	display: block;
	font-family: 'Roboto', serif;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.013em;
	padding: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #cbcbcb;
}

.footernav li ul li.footer-client-saying {
	max-width: 140px;
}

.footernav li ul li a {
	color: #828282;
}

.footernav .sub-menu > li > a {
	font-size: 10px;
	line-height: 26px;
	letter-spacing: 1.17px;
	text-transform: uppercase;
	color: #cbcbcb;
	font-weight: 300;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.footernav .sub-menu > li > a:hover {
    color: #fff;
}

.footernav li ul ul {
	margin-top: 0;
}

.footernav li ul ul li a:before {
	content: '-';
	display: inline-block;
	margin-left: 3px;
	margin-right: 10px;
}

.footernav > li:nth-child(2):before {
	left: 0;
}

.footernav > li:nth-child(3):before {
	left: 0;
}

.footernav > li:nth-child(4):before {
	left: 0;
}

.footernav > li:nth-child(5):before {
	left: 0;
}

.footernav > li:nth-child(6):before {
	left: 0;
}

.footernav > li:nth-child(7):before {
	left: 0;
}

.ft-logo-left img {
	max-width: 100%;
	display: block;
	margin: 0 auto 10px;
}

.ft-logo-details {
	display: block;
	margin: 0 auto;
	text-align: center;
	padding-top: 40px;
}

.ft-logo-right span {
	display: block;
	/*margin-bottom: 17px;*/
}

.ft-logo-left {
	display: block;
	vertical-align: middle;
    margin: 0 auto;
}
.ft-logo-right {
	display: block;
	vertical-align: middle;
	text-align: center;
}

span.ft-right-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 0.69px;
	color: #fff;
}

span.ft-right-loc,
span.ft-right-cont {
	font-size: 14px;
	line-height: normal;
	letter-spacing: 0.69px;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}

.ft-bot-wrap {
	background: #043450;
	padding: 34px 0;
}

.copyright {
	float: left;
	font-size: 12px;
	line-height: 1;
	color: #cbcbcb;
	padding: 7px 0;
}

.copyright a {
	color: #cbcbcb;
}

.mls-logo {
	float: right;
}

.mls-logo span {
	font-size: 23px;
	color: #cbcbcb;
}

.ft-agent-cred {
	color: #55c7e9;
}


/*SIDEBAR*/
.sidebar .hp-search-wrap {
    width: auto;
    background: #1a6189;
    padding: 0 0 10px 0;
    margin-bottom: 20px;
    min-height: 235px;
}

.sidebar .hp-search-left {
    float: none;
    padding: 0;
}

.sidebar .hp-search-wrap h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin: 20px 0 0 0;
    letter-spacing: 3px;
    position: relative;
    float: none;
}

.sidebar #hp-search {
    padding: 0 0 1px 0;
    width: 100%;
}

.sidebar .hp-search-form {
    padding: 0 10px;
    position: relative;
    margin: -10px 0 0 0;
}
.sidebar .hp-search-form label{
    display: none;
}

.sidebar .select-all {
    width: 49%;
    display: inline-block;
    margin: 0 0 0 1px;
}

.sidebar .select-all select {
    color: #fff!important;
    font-size: 10px;
    border: 1px solid #ccc !important;
    width: 100%;
    height: 31px;
    padding: 6px 0;
    margin-bottom: 5px;
    outline: none;
    font-weight: 300;
    text-transform: uppercase;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    letter-spacing: 1px;
    background: url("images/qs-select-arrow.png") no-repeat center right 8px;
    padding-left: 10px;
}

.sidebar .select-all input {
    color: #fff!important;
    font-size: 10px;
    border: 1px solid #ccc !important;
    width: 100%;
    height: 31px;
    padding: 6px 0;
    margin-bottom: 5px;
    outline: none;
    font-weight: 300;
    text-transform: uppercase;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    letter-spacing: 1px;
    background: #1a6189;
    padding-left: 10px;
}

.sidebar .select-all select option {
    color: #111!important;
}

.sidebar .input-all input {
    color: #111 !important;
    font-size: 12px;
    width: 100%;
    height: 31px;
    /* margin:1px 0 5px 0;*/
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.sidebar .input-all:before {
    display: none;
}

.sidebar .input-all {
    width: 49%;
    display: inline-block;
    margin: 2px 0 0 1px;
    padding: 0 0 0 0;
    vertical-align: top;
    position: relative;
}

.sidebar input.submit-search {
    background: #d7d7d7;
}

.sidebar input.submit-search:hover {
    background: #fff;
}

.sidebar input.submit-advanced {
    background: #595954;
}

.sidebar a.submit-advanced {
    background: #043450;
    color: #fff !important;
    font-size: 12px;
    border: 0;
    width: 100%;
    height: 31px;
    line-height: 31px;
    /*padding: 6px 19px;*/
    /*  margin: 1.5px 0 0 0;*/
    border: none;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    text-align: center;
    text-decoration: none;
}


.sidebar a.submit-advanced:hover{
    background: #0f73a9de;
}


.sidebar a.cta {
    background: #1a6189;
    display: block;
    font-size: 15px;
    margin: 0 auto;
    font-weight: 300;
    padding: 4.5% 0;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    border: 1px solid rgba(29, 85, 27, 0.25);
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    margin-bottom: 10px;
    clear: both;
}

.sidebar a.cta:hover {
    background: #55c7e9;
    color: #fff;
    border: 1px solid #55c7e9;
}

.select-all.qs-left {
    float: left;
}

.select-all.qs-right {
    float: right;
}

.input-all.qs-left {
    float: left;
}

.input-all.qs-right {
    float: right;
}

.select-all.wide {
    width: 100%;
}


/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/
/* 10 Reason You Should Buy and Sell page */
.page-id-384 #content .entry-title {
    text-align: center;
}

ol.numeric-right-pars li {
    position: relative;
    padding-left: 10px;
}

ol.numeric-right-pars li:before {
    content: ')';
    position: absolute;
    left: -3px;
    top: 1px;
}

/* Communities page */
#content .text-center{
    text-align: center;
}

#content h2.fc-subtitle > span {
    display: block;
    font-size: 12px;
    font-style: italic;
}

#content img.ip-center-img{
    margin: 0 auto;
}



 /*INNER PAGE BANNER*/
 #inner-page-wrapper {
     padding-bottom: 60px;
     padding-top: 170px;
     margin-bottom: 0;
 }

 #inner-page-wrapper::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: url(images/slide-1.jpg) no-repeat center / cover;
     z-index: 0;
     background-attachment: fixed;
 }

 #inner-page-wrapper::after {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     z-index: 0;
 }

 #inner-page-wrapper>.container {
     background: rgba(255, 255, 255, 0.9);
     position: relative;
     z-index: 200;
 }

/*.ip-banner{
    width: 100%;
}
    .ip-banner canvas{
        display: block;
        width: 100%;
        background: #f9f7f7;
    }*/
/* Adjust minimum height of page area */
#content-sidebar, #content-full{ min-height: 500px; margin-top: 20px; padding: 20px 40px;}

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

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

/* 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 post/page main headings (h1) */
#content .entry-title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0c3960;
    font-weight: 600;

}

#content p{
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.42px;
    color: #595959;
}

/* Style category/archive/etc main headings (h1) */
#content .archive-title {
    font-size: 50px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0c3960;
    font-weight: 600;
}

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

}


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



.page-id-32 #content .ai-contact-wrap span.context-loc{
    line-height: 30px;
    font-size: 18px!important;
    font-weight: 500;
}

.page-id-32 #content .ai-contact-wrap span.context-loc em.ai-font-location-c{
    color: #5b5b5b;
        min-width: 25px;
}

.page-id-32 #content .ai-contact-wrap span.context-loc em{
    vertical-align: middle;
    display: inline-block;
}

#content .post-182 .entry h2.link-title {
    font-size: 15px !important;
    display: flex;
    justify-content: space-between;
}

#content .post-182 .entry .link-title a {
    text-decoration: underline;
}

#content .post-32 .entry .ai-default-cf7wrap {
    font-family: 'Roboto', sans-serif;
}

.slideshow-credit {
    text-align: right;
    font-size: 16px;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    color: #1a6189;
}

/*** Mortgage Calculator ***/

.calc-sep {
    display: block;
    margin: 15px 0;
    height: 3px;
    background: #125279;
}

.calc-wrap {
    display: block;
    text-align: center;
}

    .calc-wrap h2 {
        border: 1px solid #125279;
        margin: 0 !important;
        padding: 10px 0;
    }

    .calc-wrap .table-wrap {
        font-size: 0;
        display: block;
    }

        .calc-wrap .table-wrap .table-col {
            display: inline-block;
            vertical-align: top;
            width: 50%;
            border: 1px solid #125279;
            border-top: 0;
        }

            .calc-wrap .table-wrap .table-col.no-border {
                border-left: 0;
            }

            .calc-wrap .table-wrap .table-col .table-col-in {
                display: inline-block;
                vertical-align: top;
                width: 33.33%;
                padding: 0 5px;
                font-size: 14px;
            }

/*** agents page ***/

.agent-row {
    display: block;
    font-size: 0;
    margin-top: 30px;
}

    .agent-row .agent-col {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding: 0 20px 20px;
    }

        .agent-row .agent-col .agent-inner {
            display: block;
            font-size: 16px;
            text-align: center;
            border: 1px solid #125279;
        }

            .agent-row .agent-col .agent-inner h2 {
                margin-bottom: 0 !important;
            }

            .agent-row .agent-col .agent-inner p {
                margin-top: 0;
            }

            .agent-row .agent-col .agent-inner canvas {
                display: block;
                width: 100%;
                max-height: 435px;
                background-size: 100% 100%;
                background-position: center center;
                background-repeat: no-repeat;
            }


            .sidebar .btn-group.bootstrap-select.show-tick.qs-select{
                /*Set width of the form*/ 
                width: 100%;
            }

            .sidebar  .bootstrap-select.btn-group .dropdown-toggle {
                /*form appearance should be set here
                no height attribute. set the height by setting the padding*/    
               border: 1px solid #ccc !important;
               width: 100%;
               height: 31px;
               padding: 6px 0;
               margin-bottom: 5px;
               outline: none;
               -moz-appearance: none;
               appearance: none;
               -webkit-appearance: none;
               background: transparent;
               padding-left: 10px; 
               outline: none!important;
                border-radius: 0!important;
                box-shadow: none!important;
            }


            .sidebar  .bootstrap-select.btn-group .dropdown-toggle .filter-option {
                /*font size, family, etc. should be set here*/
                color: #fff!important;
                font-size: 10px;
                font-weight: 300;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .sidebar .bootstrap-select.btn-group .bs-searchbox input.form-control{
                width: 100%;
                background: transparent!important;
                color: #41363a !important;
            }

            .sidebar  .bootstrap-select.btn-group .dropdown-menu {
                min-width:  100%; 
                max-height: 200px!important;
            }
.postid-1146 .text-bold {
    font-weight: bold;
}
.page-id-190 .reviews-title span {
    color: #1a6189;
}
.page-id-190 .entry.entry-content > div {
    border-bottom: 1px solid #1a6189;
    padding-bottom: 20px;
}

/* reviews page */
.zillow-link {
    height: 30px;
    background-color: #043450;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 134px;
    margin-top: 30px;
}

.zillow-link:hover{
    background-color: #022133;
}
.zillow-link::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;   
    height: 100%;
}

.zillow-link span{
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.hp-quick-search .bootstrap-select.btn-group {
    width: 100%;
}

.mob-img-responsive{
    float: left;
    padding: 0 20px 20px 0;
}
/* end reviews page */


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

.navigation ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* IDX FIX */
ul#ihf-detail-extrainfotabs, #ihf-search-tabs > ul.nav-tabs, 
#ihf_select_property_type_chosen ul.chosen-results, 
#ihf_select_bedrooms_homes_chosen ul.chosen-results, 
#ihf_select_baths_homes_chosen ul.chosen-results{
    margin-left:0!important;
}

.ihf-advanced-property-search ul.chosen-results {
    padding-left: 0 !important;
}

#ihf-main-container .dropdown-menu > .active > a{
    color:#333 !important
}
            
#ihf-main-container .dropdown-menu > li > a:hover {
    color: #000 !important;
}

.page-id-0 #content ul{
    margin-left: 0 !important;
    padding: 0 !important;
} 
         
#ihf-main-container .btn-primary:hover{
    background-color: #285e8e !important;
}

#ihf-main-container .pagination>li>a, #ihf-main-container .pagination>li>span{
    padding: 6px 8px !important;
}

.ihf-grid-result-address{
    display: block !important
}
    
#ihf-main-container .chosen-results {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

#ihf-schoolDistrict + .chosen-container ul.chosen-results {
    max-height: 200px;
}

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

#ihf-main-container .ihf-label-overlay-money {
    z-index: 0;
}

#ihf-detail-extrainfotabs {
    margin-left: 0 !important;
}

#areaPickerExpandAllCloseButton {
    margin-right: 0 !important;
    width: auto !important;
    position: relative;
    right: 14px;
}

#ihf-main-container .btn-primary {
    background: #265a88
}

#ihf-mini-search-minprice,
#ihf-mini-search-maxprice {
    max-width: 100%;
}

.idx-img {
	position: absolute;
}