/*
Theme Name: Jude Hodge
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.6.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. Variables
2. Custom CSS
3. IP styles
4. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/


/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/

:root {
    /** Font default */
    --font-family-default: 'Montserrat', sans-serif;
    --font-family-secondary: 'Prata', serif;
    --font-family-title: 'Noto Serif', serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}


/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/


/* Sub Menu */

#nav li {
    position: relative;
    display: inline-block;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 211px;
    left: 50%;
    top: 35px;
    margin-left: -105px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

#nav .sub-menu a {
    color: #343434;
    display: block;
    padding: 10px;
    background: #fff;
}

#nav .sub-menu a:hover {
    background: #0073ae;
    color: #fff;
    text-decoration: none;
}

#nav .sub-menu .sub-menu {
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}

#nav li:hover > .sub-menu {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

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

#nav .sub-menu li:last-child {
    border-bottom: none;
}


/* Fixed Sub Menu */

#nav2 li {
    position: relative;
    display: inline-block;
}

#nav2 .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    /* display: none; */
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 211px;
    left: 50%;
    top: 35px;
    margin-left: -105px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

#nav2 .sub-menu a {
    color: #343434;
    display: block;
    padding: 10px;
    background: #fff;
}

#nav2 .sub-menu a:hover {
    background: #0073ae;
    color: #fff;
    text-decoration: none;
}

#nav2 .sub-menu .sub-menu {
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}

#nav2 li:hover > .sub-menu {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#nav2 .sub-menu li {
    position: relative;
    display: block;
}

#nav2 .sub-menu li:last-child {
    border-bottom: none;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/


/* Global */

body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
a:hover,
a:visited,
a:focus,
input,
input:focus,
textarea,
textarea:focus,
select:focus,
select {
    outline: none !important;
    text-decoration: none !important;
}

.slick-slide {
    outline: none !important;
}

.label-hide {
    display: none !important;
}

.no-padding {
    padding: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-margin {
    margin: 0;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

div#main-wrapper {
    overflow: hidden;
    position: relative;
}


/*global title*/

.global-title {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-family-default);
    letter-spacing: 4px;
    line-height: 1.44;
    color: #a5a5a5;
    text-transform: uppercase;
    text-align: center;
}

.global-title span {
    display: block;
    font-size: 80px;
    font-family: var(--font-family-secondary);
    text-transform: initial;
    color: #fff;
    letter-spacing: 6px;
}


/*fixed header*/

header.main-header.show-fixed {
    background: rgb(0 0 0 / 96%);
}

header.main-header.show-fixed .hdr-logo a {
    max-width: 168px;
}

header.main-header.show-fixed img.img-responsive.default2 {
    opacity: 0;
}

header.main-header.show-fixed img.img-responsive.fixed2 {
    opacity: 1;
}

header.main-header.show-fixed .hdr-logo {
    width: 51.526%;
}

header.main-header.show-fixed .hdr-logo2 {
    width: 48.474%;
}


/*main header*/

header.main-header {
    z-index: 1001;
    position: fixed;
    padding: 20px 15px 15px;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-holder {
    position: relative;
    display: block;
    max-width: 1410px;
    margin: 0 auto;
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hdr-logo {
    width: 54.526%;
    padding: 0 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-logo2 {
    width: 45.474%;
    padding: 0 15px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-logo2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 85px;
    background: rgb(255 255 255 / 85%);
    pointer-events: none;
}

img.img-responsive.default2 {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

img.img-responsive.fixed2 {
    position: absolute;
    top: 0;
    left: 15px;
    width: 100%;
    height: 100%;
    max-width: 176px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-logo a {
    display: block;
    width: 100%;
    max-width: 217px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-logos-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 453px;
    width: 100%;
    margin: 0 -15px;
}

.hdr-nav-contact {
    margin-top: -14px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/*header nav*/

nav.header-nav {
    position: relative;
    text-align: center;
}

nav.header-nav ul#nav {
    font-size: 0;
    position: relative;
    z-index: 5;
}

nav.header-nav ul#nav > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}

nav.header-nav ul#nav > li:first-child {
    padding-left: 0;
}

nav.header-nav ul#nav > li:last-child {
    padding-right: 0;
}

nav.header-nav ul#nav > li > a {
    font-size: 15px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-family: var(--font-family-default);
    display: block;
    position: relative;
    z-index: 5;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav.header-nav ul#nav > li > a:hover {
    opacity: .7;
}

nav.header-nav ul#nav .sub-menu a {
    padding: 13px 0;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    position: relative;
    display: block;
    margin-bottom: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav.header-nav ul#nav > li:last-child::after {
    display: none;
}


/*header contact*/

.hdr-contact-inner {
    padding-bottom: 23px;
}

.hdr-contact a {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-family-default);
    color: #fff;
    font-style: normal;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-contact a:hover {
    opacity: .7;
}

.hdr-contact {
    text-align: right;
}

.hdr-contact span:first-child {
    margin-right: 30px;
}

.hdr-contact em {
    font-size: 13px;
    margin-right: 10px;
    color: #6fb5e4;
}

.hdr-contact i {
    font-style: normal;
}


/*slideshow*/

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

.slider-holder .cycloneslider-slide::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    z-index: 2;
    pointer-events: none;
}

.slider-holder .aios-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-holder .aios-slider::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    z-index: 2;
    pointer-events: none;
}

.slider-holder .slider-canvas {
    width: 100%;
    height: 100%;
    display: block;
}


/*slider tagline*/

.slider-tagline-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.slider-tagline {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-default);
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.slider-tagline span {
    font-size: 75px;
    font-family: var(--font-family-secondary);
    display: block;
    letter-spacing: 1px;
    text-transform: initial;
}

.slider-btn span {
    position: relative;
    z-index: 2;
}

.slider-btn a {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-default);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    height: 54px;
    border: 2px solid #fff;
    margin: 0 auto;
    pointer-events: auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.slider-btn a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 3px;
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.slider-btn a:hover::after {
    height: calc(100% + 4px);
}


/*welcome section*/

section.welcome-area {
    position: relative;
    padding: 50px 0 0;
}

.welcome-area .container {
    position: relative;
    z-index: 5;
}

.wc-col1 {
    margin-left: -130px;
    margin-right: -15px;
    position: relative;
}

.wc-col2 {
    margin-right: -30px;
    padding: 83px 0 0;
    position: relative;
}

.wc-photo {
    position: relative;
    display: block;
}

.wc-title {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-family-default);
    color: #a5a5a5;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.wc-title span {
    display: block;
    font-size: 0;
    width: 100%;
    max-width: 329px;
    min-height: 147px;
    background: url(images/wc-agent-title-min.png) no-repeat;
    background-position: center;
}

.wc-content-holder {
    position: relative;
    background: #000;
    color: #fff;
    border: 3px solid #e9e9e9;
}

.wc-content-inner {
    position: relative;
    padding: 60px 50px;
}

.wc-content-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 3px;
    height: 100%;
    background: #fff;
    pointer-events: none;
}

.wc-content-holder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/wc-text-bg-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: .2;
}

.wc-text p {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-family-default);
    margin-bottom: 21px;
    display: block;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.wc-btn {
    padding: 18px 0 0;
}

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

.wc-btn a {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-default);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    height: 54px;
    border: 2px solid #e9e9e9;
    /*margin: 0 auto;*/
    pointer-events: auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wc-btn a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 3px;
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wc-btn a:hover::after {
    height: calc(100% + 4px);
}

.wc-left-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 219px;
    min-height: 679px;
    pointer-events: none;
}

.wc-left-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/wc-left-accent-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: .2;
}

.wc-right-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100px;
    height: 100%;
    pointer-events: none;
}

.wc-right-accent::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(images/wc-right-accent-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: .2;
}

.wc-right-accent::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: 334px;
    background: #8fc3ef;
    opacity: .67;
}


/*proven success section*/

section.proven-success-area {
    position: relative;
    padding: 106px 0 115px;
    background: #000;
    margin: 120px 0 0;
}

section.proven-success-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 3px;
    height: 100%;
    background: #fff;
    pointer-events: none;
}

.proven-success-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/ps-bg-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    filter: grayscale(1);
    opacity: .25;
}

.proven-success-area .container {
    position: relative;
    z-index: 5;
}

.ps-holder {
    position: relative;
    color: #fff;
}

.ps-head {
    margin-bottom: 27px;
}

.ps-list-holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -14px;
}

.ps-list {
    width: calc(100% / 4);
    padding: 14px;
    min-height: 258px;
}

.ps-list a {
    position: relative;
    min-height: 258px;
    border: 3px solid #abadae;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.75);
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ps-list a:hover {
    border: 3px solid #fff;
}

.ps-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    box-shadow: inset 0px 0px 16px 0px rgba(0, 0, 0, 0.75);
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ps-list a:hover::after {
    height: 100%;
}

.stats-number-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-year {
    font-size: 45px;
    font-weight: 400;
    font-family: var(--font-family-secondary);
    margin-bottom: 12px;
    color: #fff;
}

.ps-award {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    color: #8fc3ef;
    line-height: 1.3;
    letter-spacing: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ps-list a:hover .ps-award {
    color: #fff;
}

.ps-award span {
    display: block;
}


/*featured communities section*/

section.featured-communities-area {
    position: relative;
    padding: 106px 0 0;
}

.fc-head-holder {
    max-width: 1402px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.fc-title-holder .global-title {
    text-align: left;
    letter-spacing: 5.5px;
}

.fc-title-holder .global-title span {
    color: #000;
    letter-spacing: 1.6px;
}

.fc-btn {
    max-width: 323px;
    width: 100%;
}

.fc-btn span {
    position: relative;
    z-index: 5;
}

.fc-btn a {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-default);
    color: #000;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    border: 2px solid #e9e9e9;
    /*margin: 0 auto;*/
    pointer-events: auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fc-btn a:hover {
    color: #fff;
}

.fc-btn a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 3px;
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fc-btn a:hover::after {
    height: calc(100% + 4px);
}

.fc-list-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -7.5px;
}

.fc-col1,
.fc-col3 {
    width: 36.533%;
    padding: 0 7.5px;
}

.fc-col2 {
    width: 26.934%;
    padding: 0 7.5px;
}

.fc-list {
    padding-bottom: 15px;
}

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

.fc-list a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 3px;
    height: 100%;
    background: #fff;
    pointer-events: none;
}

.fc-photo {
    position: relative;
}

.fc-photo canvas {
    display: block;
    width: 100%;
    background: #000;
}

.fc-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .75;
}

.fc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.fc-label {
    font-size: 25px;
    font-weight: 500;
    font-family: var(--font-family-default);
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 34px 83px;
    position: relative;
    z-index: 5;
}

.fc-content-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgb(0 0 0 / 50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fc-list a:hover .fc-content-hover {
    opacity: 1;
}

.fc-content-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 165px;
    min-height: 226px;
    background: url(images/fc-logo-hover-min.png) no-repeat;
    background-position: center;
    opacity: .5;
}

.fc-btn-hover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 74px;
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
}

.fc-btn-hover span {
    display: block;
    width: 36px;
    height: 37px;
    background: url(images/fc-search-hover.png) no-repeat;
    background-position: center;
}


/*new listings section*/

section.featured-listings-area {
    position: relative;
    padding: 106px 0 116px;
}

.fl-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 509px;
    background: #000;
    pointer-events: none;
}

.fl-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: url(images/fl-bg-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .2;
    pointer-events: none;
}

.fl-holder {
    position: relative;
    z-index: 5;
    padding: 0 48px;
}

.fl-head {
    margin-bottom: 37px;
}

.fl-head .global-title span {
    color: #000;
}

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

.fl-list {
    /*max-width: 380px;*/
    padding: 0 8px;
}

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

.fl-list a::after {
    content: '';
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 165px;
    min-height: 226px;
    background: url(images/fl-logo-hover-min.png) no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-list a:hover::after {
    opacity: .5;
}

.fl-photo {
    position: relative;
    border: 2px solid #fff;
}

.fl-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 326px;
    background: linear-gradient(to bottom, rgba(178, 209, 237, 0.65) 0%, rgba(178, 209, 237, 0) 100%);
    z-index: 1;
    opacity: .48;
}

.fl-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 241px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    opacity: .4;
}

.fl-photo canvas {
    display: block;
    width: 100%;
    background: #000;
}

.fl-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-list a:hover .fl-photo img {
    opacity: .5;
}

.fl-content {
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 100%;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-list a:hover .fl-content {
    bottom: 0;
}

.fl-label {
    text-align: center;
    color: #fff;
    /*padding: 47px 0;*/
    font-family: var(--font-family-default);
    font-weight: 400;
}

.fl-price {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-secondary);
    margin-bottom: 11px;
    letter-spacing: 1.5px;
}

.fl-address {
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.fl-specs span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 0 8px;
    margin-bottom: 18px;
}

span.fl-beds em {
    display: inline-block;
    width: 15px;
    height: 10px;
    background: url(images/fl-bed-icon.png) no-repeat;
}

span.fl-baths em {
    display: inline-block;
    width: 11px;
    height: 14px;
    background: url(images/fl-bath-icon.png) no-repeat;
}

span.fl-sqft em {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(images/fl-sqft-icon.png) no-repeat;
}

.fl-specs em {
    margin-right: 10px;
}

.fl-search-btn {
    width: 74px;
    height: 69px;
    margin: 0 auto -34px;
    position: relative;
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
}

span.fl-search-btn {
    width: 33px;
    height: 33px;
    display: block;
    background: url(images/fl-searchbtn-hover.png) no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.fl-specs,
.fl-search-btn {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-list a:hover .fl-specs,
.fl-list a:hover .fl-search-btn {
    opacity: 1;
}

.fl-btn span {
    position: relative;
    z-index: 5;
}

.fl-btn a {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-default);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 322px;
    height: 54px;
    border: 2px solid #e9e9e9;
    margin: 0 auto;
    pointer-events: auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-btn a:hover {
    color: #fff;
}

.fl-btn a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 3px;
    background: linear-gradient(to right, rgba(252, 199, 121, 1) 0%, rgba(255, 205, 136, 1) 19%, rgba(252, 207, 140, 1) 26%, rgba(254, 210, 149, 1) 32%, rgba(252, 212, 151, 1) 43%, rgba(253, 213, 154, 1) 43%, rgba(253, 213, 154, 1) 46%, rgba(254, 213, 157, 1) 46%, rgba(253, 212, 156, 1) 50%, rgba(255, 214, 158, 1) 53%, rgba(252, 211, 149, 1) 74%, rgba(253, 209, 146, 1) 74%, rgba(253, 209, 146, 1) 77%, rgba(253, 208, 143, 1) 77%, rgba(252, 207, 142, 1) 80%, rgba(254, 207, 139, 1) 80%, rgba(253, 204, 135, 1) 86%, rgba(254, 204, 131, 1) 86%, rgba(254, 201, 123, 1) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-btn a:hover::after {
    height: calc(100% + 4px);
}

.fl-list-holder .slick-list {
    padding-bottom: 35px;
}

.fl-links {
    position: relative;
    max-width: 562px;
    margin: 23px auto 0;
}

.fl-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fl-arrow em {
    font-size: 11px;
}

.fl-arrow span {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-arrow em.ai-font-arrow-g-p {
    color: #fecc84;
    margin-right: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-arrow em.ai-font-arrow-g-n {
    color: #8fc3ef;
    margin-left: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fl-arrow span:hover em.ai-font-arrow-g-p {
    color: #8fc3ef;
}

.fl-arrow span:hover em.ai-font-arrow-g-n {
    color: #fecc84;
}

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

.fl-slick-slider:not(.slick-initialize) > div:not(:first-child) {
    display: none;
}


/*testimonials section*/

section.testimonials-area {
    position: relative;
    padding: 106px 0 170px;
}

.testimonials-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/testi-bg-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: .15;
    filter: grayscale(1);
}

.testimonials-area .container {
    position: relative;
    z-index: 5;
}

.testi-head {
    margin-bottom: 10px;
}

.testi-head .global-title span {
    color: #000;
    letter-spacing: 2px;
}

span.testi-star-icon {
    display: block;
    width: 162px;
    height: 23px;
    background: url(images/testi-star-icon-min.png) no-repeat;
    background-position: center;
    margin: 0 auto 37px;
}

.testi-list {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}

.testi-list-holder {
    position: relative;
}

.testi-text p {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-family-default);
    line-height: 1.5;
    color: #656464;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px;
}

.testi-text span {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-family-secondary);
    letter-spacing: 1.8px;
    display: none;
}

.testi-dots {
    position: absolute;
    bottom: -50px;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-dots ul li span {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #2f2f2f;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-dots ul li span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    background: #fec675;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-dots li.slick-active span::after {
    width: 9px;
    height: 9px;
    opacity: 1;
}

.testi-dots li.slick-active span::before {
    width: 18px;
    height: 18px;
    opacity: 1;
}

.testi-dots ul li span::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -4px;
    width: 100%;
    height: 0;
    opacity: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-dots ul li {
    vertical-align: bottom;
    margin: 0 10px;
    display: inline-block;
}

.testi-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.testi-arrow em {
    font-size: 11px;
}

.testi-arrow span {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    color: #646464;
    pointer-events: auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-arrow em.ai-font-arrow-g-p {
    color: #fecc84;
    margin-right: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-arrow em.ai-font-arrow-g-n {
    color: #8fc3ef;
    margin-left: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testi-arrow span:hover em.ai-font-arrow-g-p {
    color: #8fc3ef;
}

.testi-arrow span:hover em.ai-font-arrow-g-n {
    color: #fecc84;
}

span.testi-prev {
    margin-left: -130px;
}

span.testi-next {
    margin-right: -130px;
}

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

.testi-slick-slider:not(.slick-initialize) > div:not(:first-child) {
    display: none;
}


/*get in touch section*/

section.get-in-touch-area {
    position: relative;
    padding: 417px 0 0;
    background: #8fc3ef;
}

.get-in-touch-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    background: url(images/gt-bg-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.get-in-touch-area .container {
    position: relative;
    z-index: 5;
}

.get-in-touch-area .row::before {
    display: none;
}

.get-in-touch-area .row {
    display: flex;
    align-items: center;
}

.gt-holder {
    background: #fff;
    padding: 0 0 0 43px;
    margin-bottom: -85px;
}

.gt-head .global-title {
    text-align: left;
    letter-spacing: 5.4px;
}

.gt-head .global-title span {
    color: #000;
    letter-spacing: 2px;
}

.gt-col2 {
    margin-left: -30px;
    max-width: 673px;
    padding: 55px 0 85px;
}

.gt-whitebg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 1000px;
    height: 100%;
    background: #fff;
    pointer-events: none;
}

.gt-form form {
    position: relative;
    font-size: 0;
    margin: 0 -15px;
}

.gt-fields input,
.gt-fields textarea {
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    height: 70px;
    color: #000;
    font-family: var(--font-family-default);
    border-radius: 0;
    resize: none;
    border: none;
    letter-spacing: 0.5px;
    border-bottom: solid 1px #c3c3c3;
}

.gt-textarea textarea {
    padding-top: 15px;
    padding-right: 40px;
}

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

.gt-fields {
    position: relative;
    width: calc(100% / 2);
    display: inline-block;
    padding: 0 15px;
    vertical-align: top;
    margin-bottom: 6px;
}

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

.gt-form span.wpcf7-not-valid-tip {
    font-size: 11px;
}

.gt-form span.wpcf7-form-control-wrap {
    display: block;
}

.gt-form div.wpcf7-response-output {
    margin: auto;
    position: absolute;
    width: calc(100% - 20px);
    font-size: 12px;
    color: #000;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 5px;
}

.gt-fields input.wpcf7-form-control.wpcf7-submit {
    border: none;
    font-size: 0;
    position: absolute;
    bottom: 35px;
    right: 25px;
    width: 26px;
    height: 26px;
    display: block;
    background: url(images/gt-submit-icon.png) no-repeat;
    background-position: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gt-fields input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: .7;
}

.gt-check-field {
    margin-top: 73px;
}

.gt-check-field span.wpcf7-list-item-label {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    margin-left: 10px;
    letter-spacing: 1.5px;
    font-family: var(--font-family-default);
}

.gt-form .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
    border: 1px solid #dc3232;
    background: #fff;
    padding: .2em .8em;
    width: 24em;
    text-align: center;
}

.gt-form .wpcf7-spinner {
    display: block;
    margin: 0 auto;
}


/*main footer section*/

footer.main-footer {
    position: relative;
    padding: 198px 0 48px;
    background: #000;
}

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

footer.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 35px);
    background: url(images/ftr-bg-min.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .15;
    filter: grayscale(1);
    pointer-events: none;
}

.ftr-col1 {
    max-width: 546px;
    margin: 0 -20px;
}

.ftr-logos-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-logos-holder > div {
    padding: 0 20px;
    margin-bottom: 36px;
}

.ftr-logo a {
    position: relative;
    display: block;
}

.ftr-logo img {
    width: 100%;
}

.ftr-logo2 {
    max-width: 250px;
    width: 100%;
    border-left: 1px solid rgb(255 255 255 / 25%);
}

.ftr-logo2 img {
    width: 100%;
}

.ftr-col2 {
    color: #fff;
    font-family: var(--font-family-default);
    padding: 15px 0 0;
}

.ftr-title {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-secondary);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ftr-contact-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 535px;
}

.ftr-label {
    font-size: 11px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 2.3px;
}

.ftr-label a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ftr-label a:hover {
    opacity: .7;
}

.ftr-label span {
    font-weight: 600;
    display: block;
}

span.ftr-phone em {
    display: none;
}

.ftr-contact-col1 .ftr-label:first-child {
    margin-bottom: 14px;
}

span.ftr-loc a {
    max-width: 240px;
    margin-bottom: 17px;
}

.ftr-smi a {
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ftr-smi a:hover {
    background: #000;
    color: #fff;
}

.ftr-smi span {
    display: inline-block;
    padding: 0 4px;
}

.ftr-smi-holder {
    margin: 10px -4px;
}


/*footer nav*/

.ftr-nav {
    position: relative;
    text-align: center;
    margin: 0 -47px;
}

.ftr-nav ul.footernav > li {
    display: inline-block;
    padding: 0 36px;
    border-right: 1px solid rgb(255 255 255 / 50%);
}

.ftr-nav ul.footernav > li > a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-family-default);
    display: inline-block;
    text-transform: uppercase;
    padding: 5px 0;
    letter-spacing: 1.7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ftr-nav ul.footernav > li > a:hover,
.ftr-bottom-text .ftr-text a:hover {
    opacity: .7;
}

.footernav .sub-menu {
    display: none;
}

.ftr-nav-inner {
    padding: 33px 0;
    border-top: 1px solid rgb(255 255 255 / 50%);
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}

.ftr-nav ul.footernav > li:last-child {
    border-right: none;
}


/*footer text*/

.ftr-top-text {
    color: #f4f4f4;
    text-align: center;
    font-family: var(--font-family-default);
}

.ftr-text p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1.5px;
}

.ftr-text {
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}

.ftr-link {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-family-default);
    letter-spacing: 1px;
    padding: 72px 0 23px;
    color: #d6d6d6;
}

.ftr-link a {
    color: #d6d6d6;
    text-decoration: underline !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ftr-link a:hover {
    opacity: .7;
}

.ftr-bottom-text {
    color: #f4f4f4;
    text-align: center;
    font-family: var(--font-family-default);
    padding: 40px 0 48px;
}

.ftr-bottom-text .ftr-text {
    padding-bottom: 0;
    border: none;
}

.ftr-bottom-text .ftr-text p {
    letter-spacing: 1.2px;
}


/*mls & copyright*/

.footer-copyright,
.footer-copyright a {
    font-size: 12px;
    color: #f4f4f4;
    letter-spacing: 1.7px;
    font-family: var(--font-family-default);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: 300;
    text-align: center;
    margin-bottom: 25px;
}

.footer-copyright a:hover {
    opacity: .7;
}

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

.footer-copyright a[href="https://www.agentimage.com"]:hover {
    opacity: .7;
}

.mls {
    font-size: 29px;
    color: #f4f4f4;
    text-align: center;
}

.mls em {
    margin: 0 2px;
}


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
}

.ip-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .6);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
}


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}


/** Adjust width of content columns **/

#content-sidebar #content {
    width: 77.08%;
}

#content-full #content {
    width: 100%;
}


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* fullwidth template */

.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

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


/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7
}


/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */

#content .entry-title,
#content .archive-title {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-family-secondary);
    letter-spacing: 4px;
    color: #a5a5a5;
    text-transform: uppercase;
}


/* 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 */

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


/*** Off Canvas ***/

.off-canvas-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    cursor: pointer;
    margin-left: 30px;
}

.off-canvas-trigger-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-flow: column;
    width: 30px;
}

.off-canvas-trigger-inner span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.off-canvas-trigger-inner span:nth-child(2) {
    width: 100%;
    margin: 8px 0;
}

.off-canvas-trigger:hover .off-canvas-trigger-inner span {
    width: 100%;
}

.off-canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.off-canvas::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.off-canvas.off-canvas-open::before {
    opacity: .80;
}

.off-canvas.off-canvas-open {
    visibility: visible;
    pointer-events: auto;
}

.off-canvas-inner {
    overflow: hidden;
    overflow-y: scroll;
    width: 100%;
    max-width: 600px;
    height: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    background: #fff;
    margin-left: auto;
    padding: 100px 50px;
    text-align: center;
}

.off-canvas.off-canvas-open .off-canvas-inner {
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.off-canvas-logo img {
    margin: 0 auto 20px;
    filter: brightness(0);
}

.off-canvas-navigation {}

.off-canvas-nav {}

.off-canvas-nav li {
    padding: 8px 0;
}

.off-canvas-nav li.hidden {
    display: block !important;
}

.off-canvas-nav li a {
    font-size: 20px;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-family: var(--font-family-default);
    display: inline-block;
    position: relative;
    z-index: 5;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.off-canvas-nav .sub-menu {
    padding-top: 15px;
    /* display: none; */
}

.off-canvas-nav .sub-menu li {
    padding: 4px 0;
}

.off-canvas-nav .sub-menu li:first-child {
    padding-top: 0;
}

.off-canvas-nav .sub-menu li:last-child {
    padding-bottom: 0;
}

.off-canvas-nav .sub-menu li a {
    font-size: 12px;
}

.off-canvas-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    border: 1px solid #000;
}

.off-canvas-close i {
    display: block;
    font-size: 25px;
    color: #000;
    margin-bottom: 2px;
}

.off-canvas-logo img {
    margin: 0 auto 20px;
    filter: brightness(0);
}

ul.off-canvas-contact-details {
    margin-top: 50px;
}

ul.off-canvas-contact-details em {
    /*width: 28px;*/
    margin-right: 5px;
    display: inline-block;
}

ul.off-canvas-contact-details li {
    margin-bottom: 15px;
}

ul.off-canvas-contact-details a:hover,
ul.off-canvas-smi a:hover,
p.off-canvas-address a:hover {
    color: #6fb5e4;
}

ul.off-canvas-smi li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

ul.off-canvas-smi li:last-child {
    margin-right: 0;
}

ul.off-canvas-smi li a {
    font-size: 20px;
}

ul.off-canvas-smi {
    margin-bottom: 15px;
}

body.off-canvas-open {
    overflow: hidden;
}

.qs-area {
    padding: 100px 0;
}

.aios-quick-style-9 {
    background: #000;
    padding: 60px 30px;
    font-size: 0;
}

.aios-quick-style-9 h2 {
    font-weight: 300;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    width: 16%;
    padding: 8px 0;
}

.aios-quick-style-9 h2 strong {
    font-weight: bold;
}

.aios-quick-style-9 form {
    display: inline-block;
    vertical-align: top;
    width: 84%;
}

.aios-quick-style-9 select {
    height: 45px;
    border: none;
    background: #fff;
    outline: none;
    color: #000;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
    display: inline-block;
    vertical-align: top;
    margin-left: 0.2%;
    width: 12.57%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    text-transform: uppercase;
}

.aios-quick-style-9 input[type="text"] {
    height: 45px;
    border: none;
    background: #fff;
    outline: none;
    color: #000;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
    display: inline-block;
    vertical-align: top;
    margin-left: 0.2%;
    width: 12.57%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
}

.aios-quick-style-9 select.long,
.aios-quick-style-9 input.long {
    width: 16.86%;
}

.aios-quick-style-9 input[type="submit"] {
    height: 45px;
    background-color: #fecc84;
    border: none;
    width: 12.8%;
    font-size: 13px;
    color: #fff;
    outline: none;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    display: inline-block;
    vertical-align: top;
    margin-left: 2%;
    text-transform: uppercase;
    font-weight: 700;
}

.aios-quick-style-9 input[type="submit"]:hover {
    background-color: #6fb5e4;
}

.aios-contact-wrap .aios-contact-cta .aios-ip-cta-list a.aios-site-button {
    width: 100%;
}

.aios-contact-wrap .aios-contact-main > div > span {
    margin-top: 0;
}


.aios-quick-style-9 button.btn.dropdown-toggle.btn-default {
    height: 45px;
    border: none;
    background: #fff;
    outline: none;
    color: #000;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
    display: inline-block !important;
    vertical-align: top;
    margin-left: 0.2%;
    width: 12.57%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
    border-radius: unset;
    width: 100%;
}

.aios-quick-style-9 .btn-group.bootstrap-select.show-tick.qs-select {
    margin-left: 0.2%;
    width: 12.57%;
}

.aios-quick-style-9 .bs-searchbox input {
    width: 100%;
}

.single-aios-communities #content .community-title {
    font-size: 40px;
    font-weight: 800;
}

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

#aios-testimonials .aios-testimonials-lists h3,
.aiosp-wrap div[class*=aios-testimonials-popup-] .aiosp-content h2 {
    display: none;
}

.flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.flex img {
    width: 50%;
    padding: 10px;
    margin: 0 !important;
}

.ftr-label.office-phone em {
    display: inline-block;
}

.ftr-label.office-phone em.ai-font-phone {
    display: none !important;
}

.ftr-label.office-phone {
    font-size: 9px;
}

.ftr-label.office-phone a {
    font-size: 10px;
}

.qs-area .bootstrap-select.btn-group .dropdown-menu.inner {
    max-height: 234px !important;
}

header.main-header.show-fixed nav.header-nav ul#nav > li > .sub-menu {
    padding-top: 18px;
}

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

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    bottom: 0;
    width: auto;
}

ul#off-canvas-nav a:hover {
    color: #6fb5e4;
}

#listings-details .listings-form span.wpcf7-not-valid-tip {
    font-size: 11px !important;
}

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

#listings-details .listings-form .listings-field.submit {
    right: 24px !important;
}

span.wpcf7-spinner {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    margin: auto;
}

section.qs-area .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    width: 100%;
    text-overflow: ellipsis;
}

.listings-poweredby {
    margin-bottom: 30px;
}

#nav .sub-menu.show-menu {
    display: block;
    opacity: 1;
}


body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}

.page-id-189 #breadcrumbs {
    padding-left: 15px;
    padding-right: 15px;
}

/*.aios-ip-cta-list {
    display: none !important;
}*/
.post-page-contact .aios-contact-wrap .aios-contact-cta .aios-ip-cta-list a.aios-site-button {
    width: 100%;
}

.ps-label {
    padding: 0 15px;
}


/* IHF */
ul#ihf-search-location-tabs {
    margin-left: 0 !important;
}

#ihf-main-search-form .chosen-results {
    margin-left: 0 !important;
}

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

#listings-results .listings-map .leaflet-map-pane .leaflet-div-icon {
    border: none;
    background: transparent;
}

.ihf-results-template #content-full #content .entry-title {
    width: 100%;
    padding: 0;
}