/*
Theme Name: Wolf & Wolf Real Estate Theme
Theme URI: http://aios2-staging.agentimage.com/w/wolfandwolfrealestate.com/htdocs
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.0.0
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 */

.site-menu li {
    position: relative;
}

.site-menu .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 180px;
    left: calc(50% - 90px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.site-menu .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    text-decoration: none !important;
    text-align: center;
    background: rgba(0, 62, 117, 0.8);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.site-menu .sub-menu a:hover {
    background: #003e75;
}

.site-menu .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
}

.site-menu .sub-menu li {
    position: relative;
}


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


/* Global */

body {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    color: #000;
    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;
}

div#main-wrapper {
    overflow: hidden;
}

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


/* Header */

.header {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0);
    box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0);
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.header.active {
    -webkit-box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.2);
    .header .header-wrap .header-navigation .site-menu > li > .sub-menu background: #fff;
}

.header.active .header-wrap {
    height: 99px;
}

.header.active .header-wrap .header-navigation .site-menu > li > .sub-menu {
    padding-top: 55px;
}

.header.active .header-wrap .header-navigation .header-logo a {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    top: 0;
}

.header.active .header-wrap .header-navigation .header-logo a:after {
    opacity: 0;
}

.header .header-wrap {
    height: 123px;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.header .header-wrap .header-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    height: 100%;
}

.header .header-wrap .header-navigation .site-menu {
    width: 42.72%;
    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;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(1) > li {
    margin: 0 41px;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(1) > li:nth-child(1) {
    margin-left: 0;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(1) > li:nth-last-child(1) {
    margin-right: 0;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(2) {
    margin-left: auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(2) > li {
    margin: 0 17px;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(2) > li:nth-child(1) {
    margin-left: 0;
}

.header .header-wrap .header-navigation .site-menu:nth-of-type(2) > li:nth-last-child(1) {
    margin-right: 0;
}

.header .header-wrap .header-navigation .site-menu > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .header-wrap .header-navigation .site-menu > li > a {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    text-decoration: none;
    color: #333333;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-wrap .header-navigation .site-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #003e75;
    pointer-events: none;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.header .header-wrap .header-navigation .site-menu > li:hover > a {
    color: #003e75;
}

.header .header-wrap .header-navigation .site-menu > li:hover > a:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.header .header-wrap .header-navigation .site-menu > li > .sub-menu {
    padding-top: 68px;
}

.header .header-wrap .header-navigation .header-logo {
    width: 14.56%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.header .header-wrap .header-navigation .header-logo a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    top: 21px;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.header .header-wrap .header-navigation .header-logo a:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 2.5px -2.5px rgba(0, 1, 1, 0.1);
    box-shadow: 0 5px 2.5px -2.5px rgba(0, 1, 1, 0.1);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.header .header-wrap .header-navigation .header-logo a img {
    display: block;
    max-width: 100%;
}


/* Mobile Header */

.amh-header-buttons .amh-navigation-trigger,
.amh-header-buttons .amh-center,
.amh-header-buttons .amh-header-right-btn {
    background: #003e75;
    color: #fff;
}

.amh-navigation .amh-menu li {
    border: none !important;
}

.amh-navigation.amh-nav-1 .amh-menu li a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #333333;
}

.amh-navigation.amh-nav-1 .amh-menu li li a {
    background: #002342;
    color: #fff !important;
}

.amh-navigation .amh-menu li:hover > a,
.amh-navigation .amh-menu li.open > a {
    background: #003e75 !important;
    color: #fff !important;
}


/* HP Slideshow */

.hp-slideshow {
    position: relative;
}

.hp-slideshow .slideshow-wrap .slideshow-slider .cycloneslider .cycloneslider-slide canvas {
    min-height: 200px;
    /*max-height: 900px;*/
}


/* HP Quick Search */

.hp-qs {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    background: rgba(180, 180, 180, 0.85);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    padding: 24px 0 28px;
}

.hp-qs .qs-wrap .qs-title {
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.hp-qs .qs-wrap .qs-form {
    margin-top: 10px;
}

.hp-qs .qs-wrap .qs-form .qs-field {
    float: left;
    width: 109px;
    margin-left: 3px;
}

.hp-qs .qs-wrap .qs-form .qs-field.md {
    width: 192px;
}

.hp-qs .qs-wrap .qs-form .qs-field.lg {
    width: 240px;
}

.hp-qs .qs-wrap .qs-form .qs-field.submit,
.hp-qs .qs-wrap .qs-form .qs-field.advanced {
    width: 123px;
}

.hp-qs .qs-wrap .qs-form .qs-field.no-ml {
    margin-left: 0;
}

.hp-qs .qs-wrap .qs-form .qs-field.lg-ml {
    margin-left: 8px;
}

.hp-qs .qs-wrap .qs-form input[type="text"],
.hp-qs .qs-wrap .qs-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    border: none;
    padding: 0 10px;
    background-color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #999999;
}

.hp-qs .qs-wrap .qs-form select {
    background: #fff url("images/qs-select-arrow-a.png") no-repeat;
    background-position: center right 14px;
}

.hp-qs .qs-wrap .qs-form .qs-submit,
.hp-qs .qs-wrap .qs-form .qs-advanced {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-qs .qs-wrap .qs-form .qs-submit {
    color: #fff;
    background: #003e75;
}

.hp-qs .qs-wrap .qs-form .qs-submit:hover {
    background: #002342;
}

.hp-qs .qs-wrap .qs-form .qs-advanced {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #666666;
    background: #dbdbdb;
    text-decoration: none;
}

.hp-qs .qs-wrap .qs-form .qs-advanced:hover {
    background: #c2c2c2;
}


/* HP Featured Properties */

.hp-fp {
    padding: 94px 0 142px;
    background: #fefefe url("images/fp-bg-a.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.hp-fp .fp-wrap .fp-title {
    position: relative;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 4.08px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hp-fp .fp-wrap .fp-title span {
    color: #003e75;
}

.hp-fp .fp-wrap .fp-title:before,
.hp-fp .fp-wrap .fp-title:after {
    content: '';
    display: block;
    width: 26%;
    height: 1px;
    background: #dcdcdc;
}

.hp-fp .fp-wrap .fp-slider-wrap {
    position: relative;
    margin-top: 71px;
    overflow: hidden;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider {
    margin: 0 -15px;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide {
    padding: 40px 15px 0;
    position: relative;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide:after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: calc(50% - 141px);
    width: 282px;
    height: 40px;
    background: transparent url("images/fp-shadow-a.png") no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide:hover:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item {
    position: relative;
    display: block;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-img {
    display: block;
    width: 100%;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-img canvas {
    display: block;
    width: 100%;
    height: 263px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent url("images/fp-hover-bg-a.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover:after {
    content: '';
    position: absolute;
    top: 19px;
    left: 19px;
    width: calc(100% - 38px);
    height: calc(100% - 38px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover .fp-price {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.44px;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover .fp-address {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.33;
    text-transform: uppercase;
    padding: 0 25px;
    margin-top: 19px;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover .fp-extras {
    display: block;
    text-align: center;
    margin-top: 12px;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover .fp-extras li {
    display: inline-block;
    vertical-align: middle;
    line-height: 9px;
    border-left: 1px solid #fff;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding-left: 7px;
    margin-left: 2px;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide .fp-item .fp-hover .fp-extras li:nth-child(1) {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide:hover .fp-item {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider .fp-slide:hover .fp-item .fp-hover {
    opacity: 1;
    pointer-events: auto;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider-controls .fp-prev,
.hp-fp .fp-wrap .fp-slider-wrap .fp-slider-controls .fp-next {
    position: absolute;
    top: 155px;
    background: rgba(0, 62, 117, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider-controls .fp-prev:hover,
.hp-fp .fp-wrap .fp-slider-wrap .fp-slider-controls .fp-next:hover {
    background: #003e75;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider-controls .fp-prev {
    left: 0;
}

.hp-fp .fp-wrap .fp-slider-wrap .fp-slider-controls .fp-next {
    right: 0;
}


/* HP Welcome Text */

.hp-welcome {
    background: #e0eaf4 url("images/welcome-bg-a.jpg") no-repeat;
    background-size: cover;
    background-position: center right;
}

.hp-welcome .welcome-wrap {
    /*width: 1600px;*/
    max-width: 100%;
    margin: 0 auto;
}

.hp-welcome .welcome-wrap .welcome-container {
    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;
    overflow: hidden;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left {
    width: 47%;
    padding: 0 25px 0 58px;
    margin: 108px 0 115px;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left .welcome-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: #04172b;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left .welcome-title img {
    display: block;
    max-width: 100%;
    margin-right: 22px;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left .welcome-title h1 {
    font-size: inherit;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left .welcome-title h1 small {
    display: block;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 8px;
    text-align: center;
    margin-top: 7px;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left .welcome-divider {
    margin: 39px 0 46px;
    border: none;
    width: 100%;
    height: 6px;
    background: transparent url("images/welcome-divider-a.png") no-repeat;
    background-size: 100% 100%;
    background-position: center left;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-left .welcome-content {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.67;
    letter-spacing: 0.3px;
    color: #555555;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-right {
    width: 47%;
    margin-left: auto;
    margin-top: 57px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.hp-welcome .welcome-wrap .welcome-container .welcome-right img {
    display: block;
    max-width: 100%;
    margin-left: auto;
}


/* HP Featured Communities */

.hp-fc {
    background: #003e75;
}

.hp-fc .fc-wrap {
    /*width: 1600px;*/
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.hp-fc .fc-wrap .fc-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2.16px;
    text-align: center;
}

.hp-fc .fc-wrap .fc-title strong {
    display: block;
    font-size: 30px;
    letter-spacing: 3.16px;
    margin-top: 8px;
}

.hp-fc .fc-wrap .fc-list {
    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;
}

.hp-fc .fc-wrap .fc-list .fc-extra {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #003e75;
    width: calc(100% / 3);
}

.hp-fc .fc-wrap .fc-list .fc-extra .fc-view-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 27px auto 0;
    width: 169px;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.68px;
    text-decoration: none;
    border: 1px solid #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-wrap .fc-list .fc-extra .fc-view-all:hover {
    background: #fff;
    color: #555555;
}

.hp-fc .fc-wrap .fc-list .fc-item {
    display: block;
    width: calc(100% / 3);
    position: relative;
    overflow: hidden;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-img {
    position: relative;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.57);
    pointer-events: none;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-img canvas {
    display: block;
    width: 100%;
    height: 262px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-name {
    display: block;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #fff;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-description {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    text-align: center;
    color: #d9d9d9;
    letter-spacing: 0.26px;
    padding: 0 38px;
    margin-top: 22px;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-read-more {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    margin-top: 19px;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-main,
.hp-fc .fc-wrap .fc-list .fc-item .fc-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-main {
    -webkit-transition: all 0.4s 0.2s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-wrap .fc-list .fc-item:hover .fc-main {
    pointer-events: none;
    transform: translateY(-29%);
}

.hp-fc .fc-wrap .fc-list .fc-item .fc-hover {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px) -webkit-transition: all 0.4s 0s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-fc .fc-wrap .fc-list .fc-item:hover .fc-hover {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* HP Testimonials */

.hp-testi {
    background: #003e75 url("images/testi-bg-a.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 85px 0 87px;
    overflow: hidden;
}

.hp-testi .testi-wrap .testi-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 4.32px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.hp-testi .testi-wrap .testi-slider {
    width: 1023px;
    max-width: 100%;
    margin: 32px auto 0;
}

.hp-testi .testi-wrap .testi-slider .testi-slide {
    padding: 0 15px;
    text-align: center;
}

.hp-testi .testi-wrap .testi-slider .testi-slide .testi-content {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.71;
    color: #fff;
    letter-spacing: 0.28px;
}

.hp-testi .testi-wrap .testi-slider .testi-slide .testi-author-name {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    font-style: italic;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-testi .testi-wrap .testi-slider .testi-slide .testi-author-name:hover {
    color: #041729;
}

.hp-testi .testi-wrap .testi-slider .testi-slide .testi-author-photo {
    display: none;
    margin: 33px auto 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hp-testi .testi-wrap .testi-slider .testi-slide .testi-author-photo canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
}

.hp-testi .testi-wrap .testi-slider .slick-dots {
    margin-top: 42px;
    text-align: center;
}

.hp-testi .testi-wrap .testi-slider .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.hp-testi .testi-wrap .testi-slider .slick-dots li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hp-testi .testi-wrap .testi-slider .slick-dots li button:hover {
    border-color: #fff;
    background: #fff;
}

.hp-testi .testi-wrap .testi-slider .slick-dots li.slick-active button {
    border-color: #fff;
    background: #fff;
}


/* Footer */

.footer {
    background: #041729;
    padding: 55px 0;
}

.footer .footer-wrap .footer-navigation {
    text-align: center;
}

.footer .footer-wrap .footer-navigation li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 7px;
}

.footer .footer-wrap .footer-navigation li a {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-wrap .footer-navigation li a:hover {
    color: #003e75;
}

.footer .footer-wrap .footer-logos {
    text-align: center;
    margin-top: 22px;
}

.footer .footer-wrap .footer-logos ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.footer .footer-wrap .footer-logos ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 10px;
    margin-left: 7px;
}

.footer .footer-wrap .footer-logos ul li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 20px;
    background: #76818a;
}

.footer .footer-wrap .footer-logos ul li:nth-child(1) {
    padding-left: 0;
    margin-left: 0;
}

.footer .footer-wrap .footer-logos ul li:nth-child(1):after {
    display: none;
}

.footer .footer-wrap .footer-logos ul li img {
    display: block;
    max-width: 100%;
}

.footer .footer-wrap .footer-copyright {
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.82;
    color: #66839d;
    text-align: center;
    margin-top: 22px;
}

.footer .footer-wrap .footer-copyright a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.footer .footer-wrap .footer-copyright a:hover {
    color: #003e75 !important;
}

.footer .footer-wrap .footer-copyright a.footer-agentimage {
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
}

.footer .footer-wrap .footer-mls {
    display: block;
    margin: 12px auto 0;
    max-width: 100%;
}


/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/


/* 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%;
}


/* 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: 24px;
    font-weight: 400 !important;
    line-height: 1;
    color: #003e75;
    text-transform: uppercase;
}


/* Style category/archive/etc main headings (h1) */

#content .archive-title {
    font-size: 24px;
    font-weight: 400 !important;
    line-height: 1;
    color: #003e75;
    text-transform: uppercase;
}


/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {
    font-size: 24px;
    font-weight: 400 !important;
    line-height: 1;
    color: #003e75;
    text-transform: uppercase;
}


/* Styles for Content Entry */

#content .entry {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.67;
    color: #555555;
}


/* Inner Page Wrapper */

#inner-page-wrapper {
    background: #fefefe url("images/inner-page-bg-a.png") no-repeat;
    background-position: top center;
    background-size: cover;
    margin-bottom: 0;
    padding-bottom: 30px;
}


/* Inner Page Banner */

.inner-page-banner canvas {
    display: block;
    width: 100%;
    min-height: 200px;
    max-height: 450px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* Inner Page Breadcrumbs */

#breadcrumbs {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #555555;
}

#breadcrumbs a {
    color: #003e75;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#breadcrumbs a:hover {
    color: #002342;
}


/* Sidebar Quick Search */

.sb-qs {
    background: rgba(180, 180, 180, 0.85);
    padding: 15px 10px;
    margin-top: 53px;
}

.sb-qs .sb-qs-wrap .sb-qs-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.sb-qs .sb-qs-wrap .sb-qs-form {
    margin: 0 !important;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-field {
    float: left;
    width: calc(50% - 2px);
    margin-bottom: 4px;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-field.lg {
    width: 100%;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-field.fl-r {
    float: right !important;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-field.submit,
.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-field.advanced {
    margin-bottom: 0;
}

.sb-qs .sb-qs-wrap .sb-qs-form input[type="text"],
.sb-qs .sb-qs-wrap .sb-qs-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 38px;
    border: none;
    padding: 0 10px;
    background-color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #999999;
}

.sb-qs .sb-qs-wrap .sb-qs-form select {
    background: #fff url("images/qs-select-arrow-a.png") no-repeat;
    background-position: center right 14px;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-submit,
.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-advanced {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-submit {
    color: #fff;
    background: #003e75;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-submit:hover {
    background: #002342;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-advanced {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #666666;
    background: #dbdbdb;
    text-decoration: none;
}

.sb-qs .sb-qs-wrap .sb-qs-form .sb-qs-advanced:hover {
    background: #fff;
    color: #003e75;
}


/* Overrides the default font of AI Contact Form 7 Styles */

.ai-default-cf7wrap input[type="text"],
.ai-default-cf7wrap input[type="tel"],
.ai-default-cf7wrap input[type="email"],
.ai-default-cf7wrap textarea,
.ai-default-cf7wrap select {
    font-family: "Raleway", sans-serif !important;
    font-size: 12px !important;
    border: 1px solid #cecece !important;
    font-weight: 400 !important;
    color: #555555 !important;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ai-default-cf7wrap input[type="text"]:focus,
.ai-default-cf7wrap input[type="tel"]:focus,
.ai-default-cf7wrap input[type="email"]:focus,
.ai-default-cf7wrap textarea:focus,
.ai-default-cf7wrap select:focus {
    border-color: #9a9a9a !important;
}

.aidefcf-wrapper .wpcf7-form-control.wpcf7-select {
    background: #fff url('images/qs-select-arrow-a.png') no-repeat;
    background-position: center right 9px;
}

.ai-default-cf7wrap::-webkit-input-placeholder,
.ai-default-cf7wrap::-webkit-textarea-placeholder,
.ai-default-cf7wrap:-moz-placeholder,
.ai-default-cf7wrap::-moz-placeholder,
.ai-default-cf7wrap:-ms-input-placeholder,
.ai-default-cf7wrap:-ms-textarea-placeholder {
    opacity: 1 !important;
    font-family: "Raleway", sans-serif !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

.ai-contact-wrap input[type="submit"],
.ai-contact-wrap input.wpcf7-submit {
    font-family: "Raleway", sans-serif !important;
    line-height: 1;
}


/* Removes dotted outline border on both EI and Firefox browsers */

a:focus,
a:active {
    outline: none;
}


/*Quick Search Dynamic*/

.hp-quick-search button.btn.dropdown-toggle.btn-default {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 42px;
    border: none;
    padding: 0 10px;
    background-color: #fff;
    text-transform: uppercase;
    color: #999999;
}

.hp-quick-search .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
}


/*IP CUSTOM BUTTON*/

.ip-btn-wrap a:link,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

.ip-btn-wrap {
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap
}

.ip-btn-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 196px;
    height: 59px;
    text-transform: uppercase;
    text-align: center;
    margin: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: #003e75;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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


/* Inner Page Featured Communities */

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

.ip-fc-list .ip-fc-item {
    display: block;
    width: 400px;
    max-width: 100%;
    margin: 30px auto 0;
    position: relative;
}

.ip-fc-list .ip-fc-item .ip-fc-img {
    position: relative;
}

.ip-fc-list .ip-fc-item .ip-fc-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.57);
    pointer-events: none;
}

.ip-fc-list .ip-fc-item .ip-fc-img canvas {
    display: block;
    width: 100%;
    height: 202px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.ip-fc-list .ip-fc-item .ip-fc-name {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #fff;
}

.ip-fc-list .ip-fc-item .ip-fc-description {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.85;
    text-align: center;
    color: #d9d9d9;
    letter-spacing: 0.26px;
    padding: 0 15px;
    margin-top: 20px;
}

.ip-fc-list .ip-fc-item .ip-fc-read-more {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.ip-fc-list .ip-fc-item .ip-fc-main,
.ip-fc-list .ip-fc-item .ip-fc-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ip-fc-list .ip-fc-item .ip-fc-main {
    -webkit-transition: all 0.4s 0.2s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-fc-list .ip-fc-item:hover .ip-fc-main {
    pointer-events: none;
    transform: translateY(-29%);
}

.ip-fc-list .ip-fc-item .ip-fc-hover {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px) -webkit-transition: all 0.4s 0s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ip-fc-list .ip-fc-item:hover .ip-fc-hover {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* Sidebar Featured Communities */

.sb-fc-list {
    display: block;
    margin: 0;
    padding: 0;
}

.sb-fc-list li {
    display: block;
    margin-top: 15px;
}

.sb-fc-list li a {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.sb-fc-list li a canvas {
    display: block;
    min-height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
}

.sb-fc-list li a span {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
}

.sb-fc-list li a span:hover {
    background: #003e75;
}

#content .post-294 .entry .wpcr3_caps {
    font-weight: 700;
}


/*Quick Search*/

.sb-qs-field button.btn.dropdown-toggle.btn-default {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 38px;
    border: none;
    padding: 4px 10px;
    background-color: #fff;
    color: #999999;
}

.name-Firefox .sb-qs-field button.btn.dropdown-toggle.btn-default {
    padding: 4px 14px;
}

.msedge-true .sb-qs-field button.btn.dropdown-toggle.btn-default {
    padding: 4px 12px;
}

.name-Firefox .sb-qs .sb-qs-wrap .sb-qs-form input[type="text"] {
    padding: 0 15px;
}

.sb-qs-field .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

#hp-qs button.btn.dropdown-toggle.btn-default,
#sb-qs button.btn.dropdown-toggle.btn-default {
    border-radius: 0 !important;
}

#hp-qs ul.dropdown-menu.inner,
#sb-qs ul.dropdown-menu.inner {
    max-height: 200px !important;
}

ul#ihf-search-location-tabs {
    margin-left: 0;
}

ul.chosen-results {
    margin-left: 0px !important;
}

ul.chosen-results {
    padding-left: 0 !important;
}

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

ul.chosen-results {
    margin: 0 !important;
}


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

.aios-roadmaps {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aios-roadmaps.no-border a.aios-roadmap-link {
   position: relative;
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    color: #bbbbbc;
}

.aios-roadmaps.no-border a.aios-roadmap-link:hover {
    color: #fff !important;
}

.aios-roadmaps.no-border a.aios-roadmap-link:after {
    content: '';
    background-image: url(images/roadmaps-arrow.png);
    background-size: cover;
    background-position: center;
    border-radius: 0;
    width: 128%;
    height: 128%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.aios-roadmaps.no-border a.aios-roadmap-link span.aios-roadmap-icon {
    font-size: 38px;
    height: 38px;
}

#ihf-main-container .dropdown-menu {
    z-index: 1010 !important;
}