:root {
    /** Font default */
    --font-family-default: "Open Sans", sans-serif;
    --font-family-title: "Playfair Display", serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #010101;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #000000;
    --secondary: #ffffff;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --transition: all 0.4s ease-in-out;
}

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

#main-wrapper {
    overflow: clip;
}

section {
    position: relative;
}

a, em.ai-mobile-phone a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus,
em.ai-mobile-phone a:hover,
em.ai-mobile-phone a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

.default-container {
    margin: 0 auto;
    max-width: 1140px;
    width: calc((1140/1600)*100%);
}

.site-container {
    margin: 0 auto;
    max-width: 1400px;
    width: calc((1400/1600)*100%);
}

.site-content {
    font-size: clamp(0.62rem, 0rem + 1vw, 1rem);
}

.site-content p {
    color: inherit;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.786;
    text-align: justify;
    letter-spacing: 0.05em;
    margin: 1.786em 0;
}

.site-title {
    line-height: 1;
    font-weight: 400;
    font-size: 3.75em;
    letter-spacing: 0;
    text-transform: capitalize;
    font-variant-numeric: lining-nums;
    font-family: var(--font-family-title);
}

.site-title span {
    display: block;
    font-weight: 400;
    font-size: 0.25em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-family: var(--font-family-default);
    margin-bottom: 0.333em;
}

[class*='icon-']::before {
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: currentColor;
    position: relative;
    display: block;
    content: '';
    width: 1em;
}

.icon-phone::before {
    -webkit-mask-image: url('../images/icon-phone.svg');
    mask-image: url('../images/icon-phone.svg');
    height: 0.944em;
}

.icon-license::before {
    -webkit-mask-image: url('../images/icon-license.png');
    mask-image: url('../images/icon-license.png');
    height: 0.813em;
}

.icon-magnifying::before {
    -webkit-mask-image: url('../images/icon-magnifying.png');
    mask-image: url('../images/icon-magnifying.png');
    height: 1em;
}

.icon-magnifying-b::before {
    -webkit-mask-image: url('../images/icon-magnifying-b.png');
    mask-image: url('../images/icon-magnifying-b.png');
    height: 1em;
}

.icon-plane::before {
    -webkit-mask-image: url('../images/icon-plane.png');
    mask-image: url('../images/icon-plane.png');
    height: 0.938em;
}

.site-button {
    font-weight: 300;
    line-height: 1.923;
    font-size: 0.813em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    display: inline-block;
    position: relative;
    padding: 0 0 1.692em;
    z-index: 1;
}

.site-button:hover {
    opacity: 0.65;
    padding: 0.846em 0;
    transition-duration: 0.2s;
}

button.site-button {
    outline: none;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: var(--default-transition);
}

.site-arrow {
    margin: 0;
    padding: 0;
    opacity: 0.2;
    border: none;
    outline: none;
    color: #000;
    background: none;
    position: relative;
    transition: var(--default-transition);
}

.site-arrow::before {
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-image: url("../images/site-arrow.png");
    mask-image: url("../images/site-arrow.png");
    background: currentColor;
    position: relative;
    display: block;
    content: '';
    height: 1.25em;
    width: 2.563em;
}

.site-arrow.prev::before {
    transform: scaleX(-1);
}

.site-arrow:hover {
    opacity: 1;
}

.site-image {
    position: relative;
}

.site-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: var(--default-transition);
}

.site-image canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.site-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.site-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===/ Header /=== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
    transition: var(--default-transition);
}

.header::after {
    left: 0;
    right: 0;
    top: 100%;
    height: 1px;
    width: 100%;
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--default-transition);
    transform-origin: left;
    transform: scaleX(0);
    transition-duration: 2s;
    transition-delay: 0.5s;
}

.header.animate-line::after {
    transform: scaleX(1);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.header-logo {
    width: calc((220/1600)*100%);
    margin-left: calc((56/1600)*100%);
}

.header-logo a {
    display: block;
}

.header-logo img {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
}

.header-menu {
    width: calc((900/1600)*100%);
    margin: 0 calc((80/1600)*100%);
}

.search-active .header-menu {
    margin: 0 calc((30/1600)*100%);
}

#header-nav {
    display: flex;
    justify-content: space-between;
}

#header-nav > li {
    margin: 2.938em 0 3.188em;
    transition: var(--default-transition);
    position: relative;
}

#header-nav > li > a {
    color: #fff;
    white-space: nowrap;
}

#header-nav > li > a:hover {
    opacity: 0.65;
}

#header-nav > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    opacity: 0;
    min-width: 14.313em;
    visibility: hidden;
    transform: translate(-50%, 0.625em);
    transition: var(--default-transition);
    transition-duration: 0.3s;
    padding-top: 3.188em;
}

#header-nav li a {
    font-weight: 400;
    font-size: 0.875em;
    line-height: 2.143;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#header-nav .sub-menu > li > a {
    display: block;
    line-height: 1;
    text-align: center;
    padding: 0.813em 1.25em;
    background: var(--secondary);
}

#header-nav .sub-menu > li > a:hover {
    color: var(--secondary);
    background: var(--primary);
}

#header-nav > li:hover > .sub-menu,
#header-nav > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

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

#header-nav .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    padding-top: 0;
    visibility: hidden;
    min-width: 14.313em;
    transform: translate(0%, 0.625em);
    transition: var(--default-transition);
}

#header-nav .sub-menu > li:hover .sub-menu,
#header-nav .sub-menu > li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0);
}

.header-search {
    margin-right: calc((56/1600)*100%);
}

.header-search,
.header-search > .textwidget {
    display: flex;
    align-items: center;
    gap: 0 3.25em;
}

.header-search a {
    color: #fff;
    line-height: 1;
    font-size: 1.125em;
    display: inline-block;
}

.header-search a:hover {
    opacity: 0.65;
}

.header-search-bar {
    display: flex;
    align-items: center;
    position: relative;
}

.header-search-bar button {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1.375em;
    background: none;
    color: #fff;
    z-index: 1;
}

.header-search-bar input {
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    background: none;
    font-size: 0.75em;
    font-style: italic;
    padding: 0 0.833em;
    line-height: 1.667;
    margin-left: 0.833em;
    border-bottom: 1px solid #fff;
}

.header-search-form {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--default-transition);
}

.search-active .header-search-form {
    width: 11.25em;
    opacity: 1;
}

.header-toggle {
    display: flex;
    align-items: center;
    align-self: stretch;
    position: relative;
    padding: 0 2.625em 0 2.688em;
}

.header-toggle::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--default-transition);
    transform-origin: top;
    transform: scaleY(0);
    transition-duration: 2s;
    transition-delay: 0.5s;
}

.header.animate-line .header-toggle::before {
    transform: scaleY(1);
}

.header-toggle button {
    margin: 0;
    padding: 0;
    z-index: 1;
    border: none;
    outline: none;
    width: 2.188em;
    height: 1.313em;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--default-transition);
    color: var(--secondary);
    position: relative;
    background: none;
}

.header-toggle button span {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: var(--default-transition);
    transition-delay: 0.3s;
}

.header-toggle button:hover {
    opacity: 0.65;
}

.burger-active .header-toggle button span {
    transition-delay: 0s;
}

.burger-active .header-toggle button span.line-1 {
    transform: translateY(0.625em) rotate(45deg);
    color: var(--primary);
}

.burger-active .header-toggle button span.line-2 {
    color: rgba(0, 0, 0, 0);
}

.burger-active .header-toggle button span.line-3 {
    transform: translateY(-0.625em) rotate(-45deg);
    color: var(--primary);
}

/* ===/ Header /=== */

/* ===/ Fixed Header /=== */
.fixed.header {
    background: var(--primary);
}

.fixed #header-nav > li {
    margin: 2.063em 0 2.313em;
}

.fixed #header-nav > li > .sub-menu {
    padding-top: 2.3em;
}

/* ===/ Fixed Header /=== */

/* ===/ Burger /=== */
.burger-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    background: var(--secondary);
    transition: var(--default-transition);
    transition-duration: 0.8s;
    color: var(--primary);
}

.burger-active {
    overflow: hidden;
}

.burger-active .burger-wrap {
    transform: translateX(0%);
}

.burger-active #burger-nav::after {
    transform: scaleY(1);
    transition-delay: 0.6s;
}

.burger-menu {
    margin: 0 auto;
    padding: calc((90/1600)*100%) 0;
    width: calc((720/1600)*100%);
}

#burger-nav {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-right: auto;
    min-height: calc((614/1600)*100vw);
    padding-left: calc((12/720)*100%);
    width: calc((504/720)*100%);
}

#burger-nav::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    margin: auto;
    height: calc(100% - 2em);
    background: var(--primary);
    transition: var(--default-transition);
    transition-duration: 0.8s;
    transform-origin: top;
    transform: scaleY(0);
}

#burger-nav > li:nth-child(2) {
    position: relative;
}

#burger-nav > li > a {
    line-height: 1;
    font-size: 2.5em;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: var(--font-family-title);
    display: inline-block;
    margin: 0.25em 0;
    opacity: 0.5;
    transition-delay: 0.1s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#burger-nav > li:hover > a,
#burger-nav > li:focus-within > a {
    opacity: 1;
    font-size: 5em;
    color: var(--primary);
    transition-delay: 0s;
    margin: 0.288em 0 0.388em;
}

#burger-nav > li:hover > a.is-long,
#burger-nav > li:focus-within > a.is-long {
    opacity: 1;
    font-size: 3.75em;
    color: var(--primary);
    margin: 0.55em 0 0.683em;
}

#burger-nav > li > .sub-menu {
    position: absolute;
    top: 50%;
    left: 100%;
    opacity: 0;
    z-index: -1;
    overflow: hidden;
    visibility: hidden;
    min-width: 13.438em;
    padding-left: 2.75em;
    transition: var(--default-transition);
    transform: translateY(-50%) translateX(-16%);
}

#burger-nav > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0%);
    transition-delay: 0.28s;
}

#burger-nav .sub-menu > li > a {
    line-height: 1;
    font-weight: 400;
    font-size: 0.875em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1em 0 0.929em;
    display: block;
}

#burger-nav .sub-menu > li > a:hover {
    color: var(--primary);
    opacity: 0.5;
}

/* ===/ Burger /=== */

/* ===/ Floating Icons /=== */
#floating-smi {
    position: fixed;
    z-index: 12;
    color: var(--secondary);
    top: calc((233/800)*100%);
    right: calc((39/1600)*100%);
    transition: var(--default-transition)
}

#floating-smi.nav-active-section-footer-contact,
#floating-smi.nav-active-section-footer,
#floating-smi.nav-active-section-videos-bg {
    color: var(--primary);
}

#floating-smi .floating-icons {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#floating-smi .floating-icons a {
    color: inherit;
    font-size: 1.125em;
    margin-bottom: 1.889em;
    transition: inherit;
}

#floating-smi .floating-icons a:hover {
    opacity: 0.65;
}

#floating-smi .floating-icons a i {
    font-style: normal !important;
}

#floating-smi .floating-icons a i.ai-font-envelope {
    font-size: 0.75em;
    margin-bottom: 2.833em;
}

#floating-smi .floating-icons a i.ai-font-facebook {
    font-size: 1.222em;
}

#floating-smi .floating-icons a i.ai-font-linkedin {
    font-size: 1em;
}

#floating-smi .floating-icons a i.ai-font-instagram {
    font-size: 1.111em;
}

#floating-smi .floating-icons a i.ai-font-youtube {
    font-size: 1.222em;
}

#floating-smi .floating-icons a i.ai-font-pinterest {
    font-size: 1.222em;
}

#floating-smi .floating-tagline {
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    font-size: 0.75em;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* ===/ Floating Icons /=== */

/* ===/ Contact /=== */
.contact {
    background: #ebeef3;
}

.contact-wrap {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.contact-photo {
    align-self: flex-end;
    width: calc((632/1140)*100%);
    margin-left: calc((-108/1140)*100%);
}

.contact-photo img {
    object-position: top;
}

.contact-tabs {
    margin-top: 1.938em;
}

.contact-text {
    width: calc((544/1140)*100%);
    padding: 2.375em 3.625em 6.5em 0;
    margin: 6.25em 0 0;
    position: relative;
    margin-left: auto;
}

.contact-text::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    transition: var(--default-transition);
    transform-origin: top;
    transform: scaleY(0);
    transition-duration: 2s;
    transition-delay: 0.5s;
    background: var(--primary);
}

.contact-text.aos-animate::before,
.mobile .contact-text::before {
    transform: scaleY(1);
}

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

.contact-tabs-content:not(.active) {
    display: none;
}

.contact-field {
    width: 100%;
    margin-bottom: 1px;
    position: relative;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    line-height: 1;
    font-size: 0.938em;
    font-weight: 400;
    letter-spacing: 0.05em;
    border: none;
    outline: none;
    padding: 1.667em 0;
    background: none;
    border-bottom: 1px solid currentColor;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder,
.contact-field input::-webkit-input-placeholder,
.contact-field textarea::-webkit-input-placeholder {
    color: #767676;
}

.contact-field textarea {
    height: 6.667em;
    resize: none;
    padding-right: 2em;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.contact-field textarea::-webkit-scrollbar {
    background: transparent;
    width: 0px;
}

.contact-field button {

    position: absolute;
    right: 0;
    opacity: 0.25;
    bottom: 0.875em;
    font-size: 1.5em;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    transition: var(--default-transition)
}

.contact-field button:hover {
    opacity: 1;
}

.contact-form .wpcf7 form {
    position: relative;
}

.contact-form .wpcf7 form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 0.75em;
    line-height: 1;
    padding: 0.25em;
    width: auto;
    right: 0;
    left: auto;
    top: 3.5em;
}

.contact-form .wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
    line-height: 1;
    font-size: 0.75em;
    padding: 0.5em 0.1em;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 1em;
}

.contact-form .wpcf7 form .wpcf7-spinner {
    position: absolute;
    right: 0%;
    top: 105%;
    margin: 0;
}

.contact-tabs-toggler {
    display: flex;
    margin-top: 3.563em;
}

.contact-tabs-toggler button {
    line-height: 1;
    font-weight: 400;
    font-size: 0.813em;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 2.308em 3.077em 2.154em;
    background: none;
    outline: none;
    border: none;
    width: 19.462em;
    color: rgba(0, 0, 0, 0.7);
    border-top: 1px solid var(--primary);
    transition: var(--default-transition);
}

.contact-tabs-toggler button:not(.active):hover {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.85);
}

.contact-tabs-toggler button:first-child {
    border-right: 1px solid var(--primary);
}

.contact-tabs-toggler button.active {
    cursor: default;
    border-top: none;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

.contact-bg {
    right: 0;
    z-index: 0;
    margin: 0 auto;
    max-width: 1600px;
}

.contact-bg canvas {
    opacity: 0.2;
    /*background-attachment: fixed;*/
    -webkit-mask: linear-gradient(to right, transparent, #fff 10%, 95%, transparent);
    mask: linear-gradient(to right, transparent, #fff 10%, 95%, transparent);
    /*-webkit-filter: blur(6px);
    filter: blur(6px);*/
}

.page-template-brochure .contact-bg canvas {
    opacity: 0.2;
    /*background-attachment: fixed;*/
    /* -webkit-mask: linear-gradient(to right, transparent, #fff 10%, 95%, transparent);
    mask: linear-gradient(to right, transparent, #fff 10%, 95%, transparent);
    -webkit/*-filter: blur(2px);
    filter: blur(2px);*/
}

.safari-true .contact-bg canvas {
    background-attachment: scroll;
}

/* ===/ Contact /=== */

/* ===/ Footer /=== */
.footer {
    color: var(--secondary);
    background: var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer a:hover {
    opacity: 0.65;
    color: var(--secondary);
}

.footer-wrap {
    padding: min(135px, 8.4375vw) 0 min(120px, 7.5vw);
}

.footer-top {
    margin-bottom: calc((58/1140)*100%);
}

.footer-top,
.footer-top > .textwidget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-top img {
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
    display: block;
    height: 100%;
    width: 100%;
}

.footer-logo {
    width: calc((300/1140)*100%);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    padding-left: 0.5em;
}

.footer-contact-info span {
    font-weight: 400;
    line-height: 2.167;
    font-size: 1.125em;
    letter-spacing: 0.1em;
    font-variant-numeric: lining-nums;
    font-family: var(--font-family-title);
    display: flex;
    align-items: center;
}

.footer-contact-info span i {
    position: relative;
    margin-right: 1em;
}

.footer-contact-info span i.ai-font-envelope {
    line-height: 1;
    font-size: 0.667em;
    margin-right: 1.5em;
}

.footer-brokerage {
    width: calc((141/1140)*100%);
}

.footer-bottom {
    text-align: center;
}

.footer-menu {
    position: relative;
    padding: 2.875em 0 2.688em;
}

.footer-menu::before,
.footer-menu::after {
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    width: 100%;
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--default-transition);
    transform-origin: left;
    transform: scaleX(0);
    transition-duration: 2s;
    transition-delay: 0.5s;
}

.footer-menu::after {
    top: auto;
    bottom: 0;
}

.footer-bottom.aos-animate .footer-menu::before,
.footer-bottom.aos-animate .footer-menu::after,
.mobile .footer-bottom .footer-menu::before,
.mobile .footer-bottom .footer-menu::after  {
    transform: scaleX(1);
}

#footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-nav li {
    margin: 0 1.313em;
}

#footer-nav li a {
    font-weight: 400;
    font-size: 0.875em;
    line-height: 2.143;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-disclaimer {
    padding-top: 3.25em;
}

.footer-disclaimer p {
    font-size: 0.8em;
    font-weight: 300;
    line-height: 2.167;
    letter-spacing: 0.05em;
    text-align-last: center;
    color: #acacac;
    margin: 0;
}

.footer-disclaimer p a:hover {
    color: #fff;
    opacity: 1;
}

.footer-copyright {
    font-size: 0.8em;
    font-weight: 300;
    line-height: 1.667;
    letter-spacing: 0.05em;
    margin: 1.667em 0;
}

.footer-realtor {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.813em;
}

.footer-realtor i.ai-font-eho {
    font-size: 0.724em;
    margin-right: 0.524em;
}

.footer-bg {
    /*max-width: 1600px;*/
    margin: 0 auto;
    right: 0;
}

.footer-bg canvas {
    position: absolute;
    left: max(calc((-126 / 1600)* 100%), -126px);
    bottom: calc((-130 / 705)* 100%);
    width: min(calc((418/1600)*100%), 418px);
    height: min(calc((421/705)*100%), 421px);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/exp-mask.png');
    mask-image: url('../images/exp-mask.png');
    background-position: 28% 30%;
    background-size: 200%;
    opacity: 0.25;
}

/* ===/ Footer /=== */

/* ===/ Popup /=== */
.aiosp-wrap .aiosp-ref-\#newsletter-popup .aios-popup-body {
    width: calc((827/1570)*100%);
    min-height: 0;
    padding: 0;
}

.aiosp-wrap .aiosp-ref-\#newsletter-popup .aios-popup-body .aiosp-close {
    color: transparent;
    font-size: clamp(0.62rem, 0rem + 1vw, 1rem);
    width: 2.25em;
    height: 2.25em;
    margin: 2.375em;
    opacity: 0.2;
    transition: var(--default-transition);
}

.aiosp-wrap .aiosp-ref-\#newsletter-popup .aios-popup-body .aiosp-close::before {
    width: 1em;
    height: 1em;
    content: "\b0247";
    position: absolute;
    font-size: 2.25em;
    top: 0;
    right: 0;
    font-family: agentimage !important;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aiosp-wrap .aiosp-ref-\#newsletter-popup .aios-popup-body .aiosp-close:hover {
    opacity: 1;
}

#newsletter-popup {
    width: calc((580/827)*100%);
    margin: 0 auto;
    text-align: center;
    padding: min(99px, 6.1875vw) 0 min(108px, 6.75vw);
}

.newsletter-title .site-title {
    font-size: 2.813em;
    margin-bottom: 0.622em;
}

.newsletter-title .site-title span {
    font-size: 0.333em;
    margin-bottom: 1em;
}

.newsletter-field input,
.newsletter-field textarea {
    width: 100%;
    line-height: 1;
    font-size: 0.938em;
    font-weight: 400;
    letter-spacing: 0.05em;
    border: none;
    outline: none;
    padding: 1.667em 0;
    background: none;
    border-bottom: 1px solid currentColor;
}

.newsletter-field input::placeholder,
.newsletter-field textarea::placeholder,
.newsletter-field input::-webkit-input-placeholder,
.newsletter-field textarea::-webkit-input-placeholder {
    color: #999999;
}

.newsletter-field textarea {
    height: 6.667em;
    resize: none;
    padding-right: 2em;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.newsletter-field textarea::-webkit-scrollbar {
    background: transparent;
    width: 0px;
}

.newsletter-button {
    margin-top: 3.313em;
}

.newsletter-form .wpcf7 form {
    position: relative;
}

.newsletter-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 0.75em;
    line-height: 1;
    padding: 0.25em;
    width: auto;
    right: unset;
    left: 1em;
    top: 0.5em;
}

.newsletter-form .wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
    line-height: 1;
    font-size: 0.75em;
    padding: 0.5em 0.1em;
}

.newsletter-form .wpcf7 form .wpcf7-spinner {
    position: absolute;
    right: 0%;
    top: 105%;
    margin: 0;
}

/* ===/ Popup /=== */

/* Global */
/*******************************************************
 *
 * 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, 0.6);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center 42%;
    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;
}

#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
    line-height: 1;
    font-weight: 400;
    font-size: max(min(60px, 3.75vw), 42px);
    letter-spacing: 0;
    text-transform: capitalize;
    font-family: var(--font-family-title);
}

#content h3,
#content h4,
#content h5 {
    font-size: 1.2em;
    font-weight: 400;
    font-family: var(--font-family-title);
}

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;
}

body.pojo-a11y-readable-font [class*="ai-font"] {
    font-family: agentimage !important;
}

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

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background {
    display: none !important;
}

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    text-align: center;
}

#breadcrumbs {
    line-height: 1;
    margin: 2.5em 0;
    font-weight: 400;
    font-size: 0.75em;
    color: #525252;
    letter-spacing: 0.160em;
    text-transform: uppercase;
}

#breadcrumbs > span > span {
    margin: 0 0.5em;
}

#breadcrumbs > span > span:first-child {
    margin-left: 0;
}

#breadcrumbs .breadcrumb_last {
    color: var(--primary);
}

.aiosCommunitiesPurist .aiosCommunitiesPurist__title {
    font-family: var(--font-family-title);
    letter-spacing: 0.2em;
}

.single-aios-communities.aios-custom-ihomefinder-results-template .ip-banner,
.single-aios-communities.aios-custom-ihomefinder-results-template #content #breadcrumbs {
    display: block;
}

.page-id-77 .ip-banner canvas,
.single-aios-communities.aios-custom-ihomefinder-results-template .ip-banner canvas {
    background-position: center 45%;
}

.single-aios-communities.aios-custom-ihomefinder-results-template #content-full #content {
    padding: 0 15px;
}

.single-aios-communities.aios-custom-ihomefinder-results-template #content-full .entry-title {
    display: none;
}

.page-id-564 #content {
    position: relative;
}

.page-id-564 #content #breadcrumbs {
    max-width: 1500px;
    margin: 0 auto;
    width: calc((1500 / 1600)* 100%);
}

.page-id-564 #content .entry-title {
    display: none;
}

.page-id-564 #content .listings-header .site-title {
    font-size: 3.75em;
    font-weight: 400;
    margin: 0;
}

.page-id-564 #content i {
    font-style: normal;
}

#inner-page-wrapper ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 0.875em;
    padding-left: 0;
    position: relative;
    width: 100%;
}

#inner-page-wrapper ul.page-numbers li {
    padding: 0;
    margin: 0;
}

#inner-page-wrapper ul.page-numbers li + li {
    border-left: none;
}

#inner-page-wrapper ul.page-numbers li > span,
#inner-page-wrapper ul.page-numbers li > a:not(.site-arrow) {
    width: 2.857em;
    height: 2.857em;
    line-height: 1;
    font-size: 0.875em;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

#inner-page-wrapper ul.page-numbers .current {
    color: var(--secondary);
    background: var(--primary);
}

#inner-page-wrapper ul.page-numbers li a:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #000;
}

#inner-page-wrapper ul.page-numbers a.site-arrow i {
    display: none;
}

#inner-page-wrapper ul.page-numbers a.site-arrow {
    opacity: 1;
    width: auto;
    height: auto;
    font-size: inherit;
    text-transform: uppercase;
    position: static;
    font-weight: 400;
    color: #000;
}

#inner-page-wrapper ul.page-numbers a.site-arrow span {
    font-size: 0.875em;
    font-weight: 300;
    line-height: 1.429em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    bottom: 0;
    color: inherit;
}

#inner-page-wrapper ul.page-numbers li.aios-testimonialsPrev {
    padding-right: 3.75em;
    left: 3.429em;
    position: absolute;
}

#inner-page-wrapper ul.page-numbers li.aios-testimonialsNext {
    padding-left: 3.75em;
    right: 3.429em;
    position: absolute;
}

#inner-page-wrapper ul.page-numbers a.site-arrow.prev span {
    right: 0;
}

#inner-page-wrapper ul.page-numbers a.site-arrow.next span {
    left: 0;
}

#inner-page-wrapper ul.page-numbers a.site-arrow::before {
    opacity: 0.5;
}

#inner-page-wrapper ul.page-numbers a.site-arrow:hover::before {
    opacity: 1;
}

#inner-page-wrapper ul.page-numbers li.aios-testimonialsNext a,
#inner-page-wrapper ul.page-numbers li.aios-testimonialsPrev a {
    background: transparent;
}

section#footer-contact {
    z-index: 0;
}

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


.page-id-0 .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: auto;
    top: 20%;
}

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

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 2px;
    width: auto;
}

.page-id-0.ihf-results-template.ip-container #main-wrapper {
    z-index: unset;
}

.post-page-properties #ip-section-3,
.post-page-properties #ip-section-2 {
    display: none;
}


.post-page-property-search #ihf-main-search-form #ihf-map-canvas {
    min-height: 400px;
}

.post-page-property-search .listings-header {
    margin-bottom: 60px;
}

.post-page-property-search #ip-section-4 .listings-map {
    display: none;
}

.post-page-property-search .listings-text,
.post-page-property-search .listings-search-filter {
    width: 100%;
}

.post-page-property-search .listings-search-button {
    justify-content: center;
}

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

.ihf-map-info-window-photo img.media-object.map-infobox-img{
    position: relative !important;
}

.ihf-map-info-window-detail img{
    display: none;
}


@media screen and (max-width: 1199px) {
    .contact-bg canvas {
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 991px) {
    #pojo-a11y-toolbar {
        display: none;
    }

    .aios-mobile-header-2 .amh-fixed-header-nav .amh-header-buttons {
        background: var(--primary);
        color: var(--secondary) !important;
    }

    .site-content {
        font-size: clamp(0.875rem, 0.8154rem + 0.2981vw, 1rem);
    }

    .site-content p {
        text-align-last: center;
    }

    .default-container,
    .site-container {
        width: 80%;
        margin: 0 auto;
        min-width: 280px;
        padding: max(8vw, 55px) 0 !important;
    }

    .header, .fixed.header {
        background: var(--primary);
        position: relative;
        z-index: 1002;
        margin-top: 52px;
    }

    .header-wrap {
        padding: 20px 15px;
    }

    .header-logo {
        width: 80%;
        max-width: 300px;
    }

    .header-menu,
    .header-search,
    .header-toggle {
        display: none;
    }

    .burger-active {
        overflow: auto;
    }

    .burger-active .burger-wrap {
        display: none;
    }

    #floating-smi {
        display: none;
    }

    .contact-photo {
        display: none;
    }

    .contact-text {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .contact-text::before {
        content: unset;
        display: none;
    }

    .contact-title {
        text-align: center;
    }

    .contact-tabs-toggler {
        justify-content: center;
    }

    .footer-top, .footer-top > .textwidget {
        flex-direction: column;
        justify-content: center;
    }

    .footer-logo {
        width: 80%;
        max-width: 300px;
    }

    .footer-contact-info {
        align-items: center;
        margin: 2em;
    }

    .footer-brokerage {
        width: 100%;
        max-width: 125px;
    }

    .footer-menu {
        padding: 2em 0;
        margin-top: 2em;
    }

    #footer-nav {
        flex-direction: column;
    }

    #footer-nav li {
        margin: 0.25em 0;
    }

    .footer-disclaimer p {
        color: #888;
    }

    .footer-bg {
        display: none;
    }

    .aiosp-wrap .aiosp-ref-\#newsletter-popup .aios-popup-body {
        width: 80%;
        padding: 0;
        min-width: 280px;
        max-width: 700px;
    }

    #newsletter-popup {
        width: 80%;
        padding: max(8vw, 55px) 0;
    }

    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

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

    .outer {
        width: 100%;
        min-width: 100%;
    }

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

    .page-id-564 #content #breadcrumbs {
        width: 80%;
    }

}

@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }

    #inner-page-wrapper ul.page-numbers {
        max-width: 350px;
    }

    #inner-page-wrapper ul.page-numbers li.aios-testimonialsPrev {
        position: relative;
        order: 1;
        top: 1em;
        left: -2em;
    }
    
    #inner-page-wrapper ul.page-numbers li.aios-testimonialsNext {
        position: relative;
        order: 2;
        top: 1em;
        right: -2em;
    }
}

@media only screen and (max-width: 567px) {
    .contact-tabs-toggler {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-tabs-toggler button {
        border-top: none;
        border-right: none;
        border-left: 1px solid var(--primary);
    }

    .contact-tabs-toggler button:first-child {
        border-right: none;
    }

    .contact-tabs-toggler button.active {
        border-left: none;
        border-bottom: none;
        border-right: 1px solid var(--primary);
    }

    .contact-tabs-toggler button:first-child {
        border-bottom: 1px solid var(--primary);
    }

    .contact-field button {
        font-size: 1.85em;
    }

    .footer-contact-info {
        font-size: 0.85em;
    }
}

@media only screen and (max-width: 480px) {
    .site-button {
        font-size: 0.75em;
    }
}