/*
Theme Name: Coastal Home Advisors
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: 'Roboto', sans-serif;
    --font-family-title: 'Palash', serif;
    --font-size-default: 15px;
    --font-size-title: 65px;
    --font-color-default: #7d7d7d;
    --font-color-title: #8c756a;

    /** Use for input, button, and any other element */
    --primary: #05234b;
    /*    --secondary: #3d839f;*/
    --secondary: #1f8190;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #ffffff;
    --dark: #000000;
}

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

/* Sub Menu */
#nav li {
    position: relative;
    display: inline-block;
}

#nav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: -10px;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
    position: absolute;
    min-width: 242px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

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

#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 var(--light);
    color: var(--font-color-default);
    text-decoration: none;
}

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

#nav li:focus-within > .sub-menu,
#nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

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


/*******************************************************
 *
 * 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:hover, a:focus {
    color: var(--primary);
    outline: none;
}

.full-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.outer-container {
    max-width: 1500px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.inner-container {
    max-width: 1180px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#main-wrapper {
    overflow: hidden;
}

.section-title {
    position: relative;
    max-width: max-content;
}

.section-title .small {
    display: flex;
    position: relative;
    align-items: center;
    font-size: 40px;
    color: var(--primary);
    width: 100%;
    margin-bottom: 26px;
    white-space: nowrap;
}

.section-title h2,
.section-title .custom-h2 {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    text-transform: uppercase;
    color: var(--font-color-title);
    margin-top: 0;
    margin-bottom: -8px;
    display: flex;
    align-items: center;
    position: relative;
}

.title-line {
    margin-left: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.title-line:before {
    width: 39px;
    height: 4px;
    content: '';
    background: var(--primary);
    margin-right: 6px;
}

.title-line:after {
    width: calc(100% - 45px);
    height: 2px;
    content: '';
    background: #e6dece;
}

.hp-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 65px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.hp-btn:hover {
    background: var(--primary);
    color: var(--light);
}

/* Mobile Logo */
.mobile-logo {
    background: var(--secondary);
    padding: 20px;
    text-align: center;
    display: none;
}

.mobile-logo a {
    max-width: 183px;
    margin: 0 auto;
    display: block;
    font-size: 0;
    position: relative;
}

.mobile-logo img {
    width: 100%;
    height: auto;
}

/* Header */
#main-header {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    max-height: 147px;
}

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

.main-logo {
    max-width: 287px;
    position: relative;
    width: 19.65753424657534%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-logo a {
    position: relative;
    font-size: 0;
    display: block;
}

.main-logo img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.main-logo .fixed-logo {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

#main-header.active .main-logo .fixed-logo {
    opacity: 1;
    visibility: visible;
}

#main-header.active .main-logo {
    max-width: 183px;
    width: 12.53424657534247%;
}

#main-header.active .main-logo img {
    opacity: 0;
    visibility: hidden;
}

#main-header.active {
    background: var(--secondary);
    max-height: 96px;
    padding: 12.5px 0px;
}

.header-right {
    position: relative;
}

.hr-top {
    position: relative;
    max-height: 35px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#main-header.active .hr-top {
    /*
    max-height: 0;
    opacity: 0;
    visibility: hidden;
*/
}

.hrt-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#main-header.active .header-flex {
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-contact {
    color: var(--light);
    padding: 0 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.hc-contact:first-child {
    border-left: 0;
}

.hc-contact a {
    color: var(--light);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.hc-contact a:hover {
    opacity: 0.7;
}

.hc-contact .ai-font-envelope-f {
    font-size: 11px;
}

.header-translate {
    max-width: 162px;
    position: relative;
    width: 100%;
    margin-left: 5px;
}

.header-translate select {
    width: 100%;
    border: none;
    outline: 0;
    font-size: 0;
    height: 35px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background: url(images/css_sprites.png) -10px -10px;
}

.header-translate select option {
    font-size: 14px;
}

.hr-bottom {
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.burger-menu {
    cursor: pointer;
    margin-left: 40px;
    width: 41px;
    position: relative;
}

.burger-icon {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--light);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.burger-icon span:first-child {
    max-width: 23px;
}

.burger-icon span:nth-child(2) {
    margin: 4px auto;
}

.burger-icon span:last-child {
    max-width: 31px;
}

.burger-menu:hover .burger-icon span {
    max-width: 100% !important;
}

.main-navigation {
    position: relative;
}

#nav {
    display: flex;
    align-items: center;
    position: relative;
}

#nav > li {
    margin-left: 30px;
}

#nav > li > a {
    font-size: 16px;
    color: var(--light);
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#nav > li:hover > a {
    opacity: 0.7;
}

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

#nav .sub-menu li {
    display: block;
    text-align: center;
    margin-bottom: 1px;
    position: relative;
}

#nav .sub-menu li a {
    background: rgb(5 35 75 / 85%);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 10px;
    color: var(--light);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#nav .sub-menu li a:hover {
    background: rgb(184 162 144 / 85%);
    color: var(--light);
}

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

#main-header.active #nav .sub-menu {
    padding-top: 32px;
}

#main-header.active #nav .sub-menu .sub-menu {
    padding-top: 0;
}

#nav > li > .sub-menu > li:first-child > a:before {
    position: absolute;
    content: '';
    width: 13px;
    height: 11px;
    border-bottom: 11px solid rgb(5 35 75 / 85%);
    top: -11px;
    left: 50%;
    margin-left: -6.5px;
    border-left: 6.5px solid transparent;
    border-right: 6.5px solid transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#nav > li > .sub-menu > li > a:hover:first-child:before {
    border-bottom-color: rgb(184 162 144 / 85%);
}

/* Slideshow */
#main-slideshow {
    position: relative;
    width: 100%;
    z-index: 11;
}

.slideshow-container {
    position: relative;
    width: 100%;
}

.slideshow-container:before {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #00000014;
}

.slideshow-book {
    position: absolute;
    left: 0;
    top: 144px;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.sb-btn {
    max-width: 298px;
    margin: 0 0 0 auto;
    position: relative;
    pointer-events: auto;
}

.sb-btn .hp-btn {
    height: 50px;
    border-color: var(--light);
    color: var(--light);
    font-size: 18px;
}

.sb-btn .hp-btn:hover {
    border-color: var(--primary);
}

.sb-btn:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -0.5px;
    width: 1000%;
    height: 1px;
    background: var(--light);
}

.slideshow-cta {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.scta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.scta-item-wrap {
    max-width: 360px;
    width: 31.57894736842105%;
    pointer-events: auto;
}

.scta-item {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    text-transform: uppercase;
    border: 2px solid var(--light);
    border-radius: 50px;
    background: transparent;
    font-size: 20px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.scta-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

/* Quick Search */
#main-qs {
    position: absolute;
    z-index: 10;
    width: 100%;
    left: 0;
    bottom: 44px;
}

.qs-title.section-title {
    margin: 0 auto -3px;
}

.qs-title.section-title h2 {
    font-size: 30px !important;
    color: var(--light);
}

.qs-container {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

#qs-form {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#qs-form label {
    display: none;
}

#qs-form select, #qs-form input, #qs-form .bootstrap-select button {
    width: 100%;
    padding: 11px 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    background: transparent url(images/arrow.png) no-repeat right 10px center;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    outline: 0;
}

.bs-searchbox .form-control {
    color: #000 !important;
}

#qs-form > div {
    max-width: 147px;
    width: 13.125%;
    margin-left: 0.4464285714285714%;
    margin-bottom: 16px;
}

#qs-form > .city {
    max-width: 395px;
    width: 35.26785714285714%;
    margin-left: 0;
    margin-top: 0;
}

#qs-form > .min-price select, #qs-form > .max-price select {
    background: transparent;
}

#qs-form > .qs-submit {
    width: 86px;
    margin-left: 2.719298245614035%;
    margin-bottom: 0;
}

.qs-submit button {
    width: 100%;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    border: none;
    font-size: 36px;
    color: var(--primary);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.qs-submit button i {
    transform: scaleX(-1);
}

.qs-submit button:hover {
    background: var(--primary);
    color: var(--light);
}

.qs-text {
    position: absolute;
    right: 10.44642857142857%;
    top: 100%;
    color: var(--light);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

#qs-form select option {
    color: var(--font-color-default);
}

/* About */
#main-about {
    padding: 100px 0 110px;
    position: relative;
    background: url(images/about-bg.jpg) no-repeat center center/ cover;
}

.about-container {
    position: relative;
    width: 100%;
}

.ac-item-wrap {
    width: 85.625%;
    position: relative;
    margin: 0 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ac-item-wrap:nth-child(even) {
    margin: 0 auto 0 0;
    flex-direction: row-reverse;
    margin-bottom: 0;
}

.ac-left {
    max-width: 570px;
    width: 41.60583941605839%;
    margin-top: 15px;
}

.about-title.section-title {
    margin-bottom: 30px;
}

.about-title.section-title .small {
    font-size: 100px;
    font-family: 'Gistesy';
    margin-bottom: 5px;
}

.about-title.section-title h2,
.about-title.section-title .custom-h2 {
    font-size: 85px;
    color: var(--secondary);
}

.about-title.section-title h2 .title-line,
.about-title.section-title .custom-h2 .title-line {
    margin-left: 0;
    min-width: 124px;
    margin-right: 10px;
}

.about-title.section-title h2 .title-line:before,
.about-title.section-title .custom-h2 .title-line:before {
    height: 6px;
}

.about-title.section-title h2 .title-line:after,
.about-title.section-title .custom-h2 .title-line:after {
    height: 4px;
}

.about-desc {
    margin-bottom: 20px;
}

.about-desc p {
    font-size: 15px;
    line-height: 25px;
}

.about-btn {
    max-width: 219px;
}

.ac-right {
    width: 46.71532846715328%;
    position: relative;
}

.about-agent {
    position: relative;
    font-size: 0;
}

.about-agent canvas {
    width: 100%;
    display: block;
}

.about-agent.about-bg1 canvas {
    /*    background: url(images/agent-bg1.jpg) no-repeat center center/ cover;*/
    background: url(images/welcome-bg-new.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

.safari-true .about-agent.about-bg1 canvas,
.mobile .about-agent.about-bg1 canvas {
    background-attachment: scroll;
}

.about-agent img {
    position: absolute;
    left: -13.4375%;
    bottom: 0;
    width: 87.5%;
    height: auto;
}

.ac-item-wrap:nth-child(even) .ac-left {
    max-width: 620px;
    width: 45.25547445255474%;
    margin-top: 70px;
}

.ac-item-wrap:nth-child(even) .ac-right {
    width: 47.37226277372263%;
}

.about-agent.about-bg2 canvas {
    /*    background: url(images/agent-bg2.jpg) no-repeat center center/ cover;*/
    background: url(images/welcome-bg-new.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

.safari-true .about-agent.about-bg2 canvas,
.mobile .about-agent.about-bg2 canvas {
    background-attachment: scroll;
}

.about-agent.about-bg2 img {
    left: unset;
    right: -6.00924499229584%;
    width: 77.50385208012327%;
}

/* Featured Properties */
#main-fp {
    padding: 90px 0 0;
}

.fp-title.section-title {
    margin: 0 auto 65px;
}

.fp-title.section-title .small {
    margin-left: -170px;
}

.fp-title.section-title .title-line {
    max-width: 297px;
}

.fp-slider-wrap {
    position: relative;
    width: 100%;
}

.fp-slider {
    position: relative;
    width: 100%;
}

.fp-slider .slick-slide {
    position: relative;
}

.fp-slider .fp-item-wrap:before {
    position: absolute;
    left: 0;
    top: 9.300595238095238%;
    width: 100%;
    content: '';
    height: 63.91369047619048%;
    background: url(images/fp-bg.jpg) no-repeat center center/ cover;
    z-index: 0;
}

.fp-slider .slick-slide > div {
    font-size: 0;
}

.fp-item-wrap {
    position: relative;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}

.fpi-item {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
    width: 85.625%;
}


.fp-item {
    display: block;
    position: relative;
    width: 100%;
}

.slick-slide > div:nth-child(even) .fp-item-wrap .fpi-item {
    margin: 0 0 5.952380952380952% auto;
}

.fp-img {
    position: relative;
    font-size: 0;
    overflow: hidden;
    width: 100%;
}

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

.fp-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.fp-desc {
    position: absolute;
    left: 16.78832116788321%;
    bottom: -80px;
    max-width: 350px;
    width: 100%;
    background: rgb(61 131 159 / 95%);
    height: 349px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    padding: 30px 20px;
    flex-direction: column;
}

.slick-slide > div:nth-child(even) .fp-item-wrap .fpi-item .fp-desc {
    left: unset;
    right: 16.78832116788321%;
    background: rgb(255 255 255 / 95%);
    color: var(--font-color-default);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.slick-slide > div:nth-child(even) .fp-item-wrap .fpi-item:hover .fp-desc {
    background: rgb(61 131 159 / 95%);
    color: #fff;
}

.starfish {
    width: 140px;
    height: 132px;
    display: block;
    margin: 0 auto 15px;
    background: url(images/starfish.png) no-repeat center center/ contain;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.fp-desc h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.fp-desc .address {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.fp-desc .details {
    max-width: 147px;
    width: 100%;
    height: 44px;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fp-item:hover .fp-desc .details {
    border-color: #e6dece;
    background: #e6dece;
    color: var(--dark) !important;
}

a.fp-item:hover .starfish {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

.slick-slide > div:nth-child(even) .fp-item-wrap .fpi-item .fp-desc .details {
    color: var(--primary);
}

/* Areas of Expertise */
#main-aoe {
    padding: 0 0 60px;
    position: relative;
}

#main-aoe .outer-container {
    max-width: 1270px;
}

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

.aoe-left {
    max-width: 535px;
    width: 42.1259842519685%;
    margin-top: 100px;
}

.aoe-title.section-title {
    margin: 0 0 75px;
}

.aoe-title.section-title .small {
    left: 180px;
}

.aoe-title.section-title .title-line {
    min-width: 262px;
}

.aoel-inner {
    max-width: 353px;
    margin: 0 0 0 auto;
    margin-left: 180px;
}

.aoe-right {
    max-width: 642px;
    width: 52.19512195121951%;
    position: relative;
}

.map-properties {
    margin-bottom: 25px;
    position: relative;
}

.map-properties li {
    display: block;
    position: relative;
    padding: 18px 0;
    border-top: 1px solid #e4dbc8;
}

.map-properties li:first-child {
    border-top: 0;
}

.map-properties li a {
    display: block;
    position: relative;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--font-color-default);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-properties li a:hover, .map-properties li.active a {
    color: #8a746a;
}

.aoe-btn {
    max-width: 186px;
}

.aoe-btn .hp-btn {
    height: 55px;
    color: var(--font-color-default);
    border-color: #8a746a;
}

.aoe-btn .hp-btn:hover {
    border-color: var(--primary);
    color: var(--light);
}

.map-container {
    width: 642px;
}

#map-transparent {
    width: 642px;
    height: 769px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

#trueMap {
    display: block;
    width: 100%;
    max-width: 100%;
}

.map-hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.map-hovers > div {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-pin {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 5;
    display: block;
    text-align: center;
}

.map-hovers > div.active .map-pin {
    opacity: 1;
}

.map-img {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.map-img img {
    width: 100%;
}

.map-hovers > div.active .map-img {
    opacity: 1;
}

.map-text > div {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
}

.map-text > div > div {
    position: absolute;
    width: max-content;
}

.map-pin h3 {
    text-transform: uppercase;
    font-size: 20px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--font-color-default);
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.map-line {
    width: 27px;
    height: 2px;
    position: relative;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--light);
}

.gulfport .map-pin {
    left: 504px;
    top: 233px;
}

.gulfport .map-pin .map-line {
    margin-right: 6px;
}

.isla-del-sol .map-pin {
    left: 470px;
    top: 406px;
}

.isla-del-sol .map-pin .map-line {
    margin-right: 6px;
}

.tierra-verde .map-pin {
    left: 439px;
    top: 551px;
}

.tierra-verde .map-pin .map-line {
    margin-right: 6px;
}

.madeira-beach .map-pin {
    left: 5px;
    top: 66px;
}

.madeira-beach .map-pin .map-line {
    margin-left: 8px;
}

.pass-a-grille-st-pete-beach .map-pin {
    left: 185px;
    top: 331px;
}

.pass-a-grille-st-pete-beach .map-pin .map-line {
    margin-left: 10px;
}

.pass-a-grille-st-pete-beach .map-pin .pass-a-grille {
    position: absolute;
    left: 36px;
    top: 135px;
    white-space: nowrap;
}

.treasure-island .map-pin {
    left: 70px;
    top: 173px;
}

.treasure-island .map-pin .map-line {
    margin-left: 10px;
}

/* CTA */
#main-cta {
    position: relative;
    padding: 0 0 75px;
}

.cta-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 374px;
}

.cta-bg:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 0;
    background: url(images/cta-bg.jpg) no-repeat center center/ cover;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.cta-bg:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    background: rgba(255, 255, 255, 0.89);
}

.cta-flex {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cta-item-wrap {
    width: 25%;
    margin-left: 17px;
}

.cta-item-wrap:first-child {
    margin-left: 0;
}

.cta-item {
    max-width: 352px;
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.cta-img {
    font-size: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cta-img canvas {
    width: 100%;
    display: block;
}

.cta-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.cta-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    background: rgb(5 35 75 / 84%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-item:hover .cta-hover {
    opacity: 1;
}

.cta-hover:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 322px;
    max-height: 444px;
    width: 91.47727272727273%;
    height: 93.67088607594937%;
    border: 2px solid #fff;
    content: '';
    z-index: 0;
}

.cta-hover .learn-more {
    max-width: 186px;
    width: 100%;
    height: 55px;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #e6dece;
    border-radius: 50px;
}

.cta-desc {
    text-align: center;
    padding-top: 20px;
}

.cta-desc h3 {
    text-transform: uppercase;
    font-size: min(1.46vw, 22px);
    font-family: var(--font-family-title);
    color: #ccb095;
    letter-spacing: 0.1em;
}

.cta-desc h3 span {
    display: block;
    font-size: min(1.2vw, 18px);
    font-weight: 700;
    font-family: var(--font-family-default);
    color: var(--primary);
    margin-bottom: 9px;
}

/* Why Work With Us */
#main-wwwu {
    padding: 90px 0 105px;
    position: relative;
    background: url(images/wwwu-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

.safari-true #main-wwwu,
.mobile #main-wwwu {
    background-attachment: scroll;
}

#main-wwwu:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 0;
    background: rgba(0, 0, 0, 0.55);
}

.wwwu-title.section-title {
    margin: 0 auto 75px;
}

.wwwu-title.section-title h2 {
    color: var(--light);
}

.wwwu-title.section-title .small {
    color: var(--light);
}

.wwwu-title.section-title .title-line:before, .wwwu-title.section-title .title-line:after {
    background: var(--light);
}

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

.wwwu-item {
    width: 25%;
    text-align: center;
    color: var(--light);
    position: relative;
    padding: 15px 15px 0;
}

.wwwu-item:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 149px;
    content: '';
    background: rgba(255, 255, 255, 0.35);
}

.wwwu-item h3 {
    font-size: min(4.33vw, 65px);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wwwu-item h3 i {
    font-style: normal;
}

.wwwu-item span {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 20px;
}

.wwwu-item:first-child:before {
    display: none;
}

/* Testimonials */
#main-testimonials {
    padding: 170px 0 20px;
    position: relative;
}

.testi-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.6875%;
    font-size: 0;
    overflow: hidden;
}

.testi-img canvas {
    width: 100%;
    display: block;
}

.testi-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.testi-title.section-title {
    margin: 0 auto 70px;
    left: 7.017543859649123%;
}

.testi-box {
    padding: 60px 30px 70px;
    background: #e6dece;
    text-align: center;
}

.quote-icon {
    width: 63px;
    height: 51px;
    display: block;
    margin: 0 auto 45px;
    background: url(images/css_sprites.png) -10px -65px;
}

.testi-slider-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto 55px;
}

.testi-slider {
    max-width: 830px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.testi-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}

.testi-item p {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 25px;
    color: var(--font-color-default);
}

.testi-item .author {
    font-size: 23px;
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--font-family-title);
}

.testi-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-buttons button {
    font-size: 45px;
    padding: 0;
    border: none;
    background: transparent;
    outline: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.testi-buttons .prev-slick {
    left: 0;
}

.testi-buttons .next-slick {
    right: 0;
}

.testi-buttons button:hover {
    color: var(--primary);
}

.testi-btn {
    max-width: 219px;
    margin: 0 auto;
}

/* Social */
#main-social {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

#main-social .inner-container {
    max-width: 1440px;
}



#main-social:before {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    /*background: rgba(255,255,255,0.88);*/
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(228, 213, 172, 0) 25%, rgba(219, 200, 146, 0) 50%, rgba(227, 212, 170, 0) 75%, rgba(255, 255, 255, 1) 100%);
}

#main-social:after {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(images/social-bg.jpg) no-repeat top center;
    background-size: cover;
    opacity: 0.12;
}

.social-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin: 0 -20px;
}

.social-col {
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 3);
    position: relative;
    padding: 0 20px;
}


.social-col .section-title h2 {
    font-size: 60px;
}

.social-col .section-title .small {
    font-size: 35px;
}

.social-col .section-title {
    overflow: hidden;
    padding-bottom: 10px;
}

/* .social-left {
    position: relative;
} */

.social-right {
    /* max-width: 509px; */
    width: 50%;
    margin-left: 30px;
    position: relative;
}

.social-title.section-title h2 {
    font-size: 48px;
    margin-bottom: -6px;
}

.social-title.section-title .title-line {
    min-width: 198px;
}

.social-title.section-title {
    margin-bottom: 27.5px;
}

.social-slider-wrap {
    position: relative;
    margin-bottom: 36.5px;
}

.fb-slider, .ig-slider, .yt-slider {
    position: relative;
    width: 100%;
}


.fb-slider:not(.slick-initialized) .si-item:nth-child(n+4) ~ div,
.ig-slider:not(.slick-initialized) .si-item:nth-child(n+4) ~ div,
.yt-slider:not(.slick-initialized) .si-item:nth-child(n+4) ~ div {
    display: none;
}


.social-item-wrap {
    position: relative;
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.si-item {
    padding: 7.5px 6.5px;
    width: 50%;
}

.fb-slider .slick-list, .ig-slider .slick-list {
    margin: 0 -6.5px;
}

.social-item {
    max-width: 248px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.social-img {
    position: relative;
    font-size: 0;
    overflow: hidden;
    width: 100%;
    background-color: #1f8190;
}

.social-img canvas {
    width: 100%;
    display: block;
    height: 100%;
    position: relative;
    min-height: 186px;
}

.social-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.01);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.social-img img[src*="fixed-logo1-1.png"] {
    object-fit: contain;
}

.social-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.social-item:hover .social-img:before {
    opacity: 1;
}

.social-btn {
    max-width: 271px;
    margin: 0 auto;
}

/* News */
#main-news {
    padding: 0 0 90px;
    position: relative;
    display: none;
}

.news-title.section-title {
    margin: 0 auto 55px;
}

.news-title.section-title .small {
    margin-left: -260px;
}

.news-title.section-title .title-line {
    min-width: 84px;
}

.news-slider-wrap {
    position: relative;
    margin: 0 auto 55px;
    width: 100%;
}

.news-btn {
    max-width: 219px;
    margin: 0 auto;
}

.news-slider {
    position: relative;
    width: 100%;
}

.news-slider .slick-list {
    margin: 0 -15px;
}

.news-slider .slick-slide {
    margin: 0 15px;
}

.news-item-wrap {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}

.news-item {
    display: block;
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.news-img {
    position: relative;
    font-size: 0;
    width: 100%;
    overflow: hidden;
}

.news-img canvas {
    width: 100%;
    display: block;
}

.news-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.news-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.news-item:hover .news-img:before {
    opacity: 1;
}

.news-desc {
    padding: 15px 0 0;
}

.news-desc h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.news-desc p {
    font-size: 15px;
    line-height: 25px;
    color: var(--font-color-default);
    margin-bottom: 20px;
}

.news-desc .read-more {
    font-size: 15px;
    color: var(--primary);
}

/* Footer */
#main-footer {
    padding: 90px 0 55px;
    position: relative;
    background: url(images/footer-bg.jpg) no-repeat center center/ cover;
    background-attachment: fixed;
}

.safari #main-footer {
    background-attachment: unset;
}

#main-footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.3);
}

.contact-title.section-title {
    margin: 0 auto 50px;
}

.contact-title.section-title .small, .contact-title.section-title h2 {
    color: var(--light);
}

.contact-title.section-title .title-line:before, .contact-title.section-title .title-line:after {
    background: var(--light);
}

.contact-box {
    max-width: 946px;
    margin: 0 auto 30px;
    min-height: 572px;
    background: url(images/contact-bg.png) no-repeat top center/ cover;
    padding: 75px 30px 240px;
}

.contact-wrap {
    max-width: 731px;
    margin: 0 auto;
    position: relative;
}

.git-form {
    position: relative;
    width: 100%;
}

.git-form input {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: var(--light);
    font-size: 15px;
    outline: 0;
}

.git-form textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: var(--light);
    font-size: 15px;
    outline: 0;
    height: 103px;
    padding-right: 50px;
    resize: none;
}

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

.git-flex > div {
    width: 100%;
    margin-left: 19px;
    margin-bottom: 25px;
}

.git-flex > div:first-child {
    margin-left: 0;
}

.git-message-send {
    position: relative;
}

.git-message {
    font-size: 0;
}

.git-send {
    position: absolute;
    right: -64px;
    bottom: 7px;
}

.git-send input {
    width: 28px;
    height: 24px;
    font-size: 0;
    border: none;
    background: url(images/css_sprites.png) -93px -65px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.git-send .ajax-loader {
    position: absolute;
}

.git-send input:hover {
    opacity: 0.7;
}

.cb-contact {
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--light);
}

.contact-wrap .wpcf7-response-output {
    color: var(--light);
    font-size: 13px;
    padding: 5px !important;
    position: absolute;
    width: 100%;
    left: 0;
    margin: 5px auto 0 !important;
    text-align: center;
}

.fc-contact {
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.fc-contact:first-child {
    border-left: 0;
}

.fc-contact i {
    font-size: 15px;
    margin-right: 8px;
}

.fc-contact .ai-font-envelope-f {
    font-size: 11px;
}

.fc-contact a {
    color: var(--light);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fc-contact a:hover {
    opacity: 0.7;
}

.contact-wrap .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
    width: max-content;
    max-width: 100%;
}

.footer-top {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-logo {
    max-width: 365px;
    font-size: 0;
    position: relative;
    width: 32.01754385964912%;
}

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

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--light);
}

.footer-mls {
    font-size: 27px;
    color: var(--light);
    display: flex;
    align-items: center;
}

.footer-mls .ai-font-eho {
    font-size: 21px;
    margin-right: 10px;
}

.footernav {
    columns: 4;
    max-height: 215px;
    column-gap: 65px;
}

.footernav > li {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.footer-navigation {
    max-width: 737px;
    margin-left: 30px;
    width: 100%;
}

.footernav > li > a {
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
    text-transform: uppercase;
    white-space: nowrap;
}

.footernav .sub-menu li {
    margin-top: 15px;
}

.footernav .sub-menu li a {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--light);
    white-space: nowrap;
}

.footernav a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footernav a:hover {
    opacity: 0.7;
}

.footernav > li:nth-child(2) {
    left: -72.32472324723247%;
}

.footernav > li:nth-child(3) {
    left: -47.97047970479705%;
}

/* POJO */
/*body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
    background: #fff;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}

html body.pojo-a11y-focusable a:focus {
    outline-style: initial !important;
    outline-width: 1px !important;
    outline-color: #FF0000 !important;
}

body #pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    background: var(--primary);
    color: #fff;
}*/

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

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

button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

/*******************************************************
 *
 * 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: 45px;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    color: var(--font-color-title);
    margin-top: 0;
    /*margin-bottom: -8px;*/
    display: flex;
    align-items: center;
    position: relative;
}

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


#content .community-title {
    width: auto !important;
    padding: 0 !important;
}

.post-page-testimonials #aios-testimonials.aios-testimonials-page .aios-testimonials-content {
    padding: 0;
}

#listings-details .listings-seller-rep,
#listings-results .listings-grid .listings-footer span.listings-num + span {
    display: none !important;
}

#main-qs .dropdown-menu {
    max-height: 250px !important;
    max-width: unset !important;
    min-width: unset !important;
}

#main-qs .dropdown-menu.open {
    overflow: unset !important;
}

body .aios-communities-legacy .aioscomu-label {
    text-shadow: 0 2px 3px #000;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

body .aios-communities-legacy .aioscomu-list a:hover .aioscomu-label {
    text-shadow: none;
}

body .aios-communities-legacy .aioscomu-list.aios-communities-show-overlay a .aioscomu-photo::after {
    opacity: 0.1;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    font-size: 11px;
    width: auto;
    right: auto;
    left: 20%;
    top: 20%;
}

body #listings-details .listings-form div.wpcf7-response-output {
    font-size: 12px;
}

body #listings-details .listings-form textarea {
    padding-right: 45px;
}

body.aios-custom-ihomefinder-printable-template p#breadcrumbs {
    display: none;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-header span {
    display: none;
}

body #agents-single .agents-smi {
    margin: 10px auto;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    font-size: 12px;
}

body.error404 .wpcf7 form .wpcf7-response-output {
    margin: 10px auto 0;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: #05234b;
}

.opt-txt {
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
    line-height: 18px;
}

.footer-contact-info {
    margin-top: 80px;
}

.footer-gt-form .opt-txt {
    color: #fff;
}

#content .cu-fields.cu-textarea {
    height: 160px;
}

#content .about-fields.about-textarea {
    height: 160px;
}

.git-form .opt-txt p {
    color: #fff;
}

.aios-contact-form .opt-txt p {
    display: block;
    color: #000;
    font-size: 12px;
}

#listings-results .listings-grid .listings-info {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute !important;
    width: 200px;
    top: 15px !important;
    left: 0 !important;
}

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

.page-id-369 #inner-page-wrapper #breadcrumbs {
    padding: 0;
}

.page-id-369 #content .entry {
    display: flex;
    flex-direction: column;
}

.page-id-369 .addtoany_content {
    margin-left: 0;
    order: 2;
}

.page-id-369 #agents-results .agents-contact {
    background: #eee;
}

.page-id-369 #agents-results .agent-top {
    margin: 0;
}

.page-id-369 #agents-results .agents-contact {
    justify-content: center;
}

.page-id-369 #agents-results .agents-pagination {
    display: flex;
    justify-content: center;
}

.page-id-369 #agents-results .agents-col:nth-child(2n) .agents-name {
    text-align: right;
}

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

.single-aios-agents #agents-popup-form .wpcf7-not-valid-tip {
    right: 0;
    width: auto;
    line-height: 1;
    font-size: 12px;
    padding: 0.5em 1em;
    top: 0px !important;
    left: auto !important;
}

.single-aios-agents #agents-popup-form .wpcf7-response-output {
    margin: 0;
    text-align: center;
    padding: 0.5em 1em;
}

.single-aios-agents #agents-popup-form .wpcf7-spinner {
    position: absolute;
    right: 0;
    margin: 0 5px;
}

.single-aios-agents #agents-single .agents-img,
.single-aios-agents #agents-single .agents-right .agents-description-line {
    background: #eee;
}

.single-aios-agents #agents-single .agents-contact li.agent-contact-centered > div > div {
    text-align: center;
}

.single-aios-agents #agents-single .agents-contact li.agent-contact-centered > div > div span.ai-font-location-c {
    font-size: 1.25em;
    line-height: 1.5;
    align-self: flex-start;
}

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