:root {
    /** Font default */
    --font-family-default: 'Poppins', sans-serif;
    --font-family-title: 'Suranna', 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: #005e38;
    --secondary: #d2a786;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);

    --site-primary-color: #005e38;
    --site-accent-color: #d2a786;
    --site-button-border: #ce8f66, #d5a27f, #ce8f66;
    --site-gradient-background: linear-gradient(90deg, rgba(206, 143, 102, 1) 0%, rgba(213, 162, 127, 1) 50%, rgba(206, 143, 102, 1) 100%);
}


/*Globals*/

/*Site Links*/
.ldet-top {
    padding: 10px !important;
}

a {
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    color: var(--site-accent-color);
}

/*Site Links*/

/*Transitions*/

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

/*Transitions*/

/*Pojo*/

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;
    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 {
    display: none !important;
}

/*Pojo*/

/*Image Canvas OVerlay*/

.image-canvas-overlay {
    position: relative;
}

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

.image-canvas-overlay img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*Image Canvas OVerlay*/

/*Site BG*/
.site-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/*Site BG*/

/*Site Titles*/

.font-site-title {
    font-family: var(--font-family-title);
}

.site-title {}

.site-title h2 {
    letter-spacing: 0.02em;
    font-family: var(--font-family-title);
    font-size: 4.65vw;
    color: var(--site-primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.site-title.site-title-white h2 {
    color: #fff;
}

.site-title h2 span.site-subtitle {
    display: flex;
    align-items: center;
    gap: 1vw;
    text-transform: uppercase;
    color: #858585;
    font-family: var(--font-family-default);
    letter-spacing: 0.6em;
    font-size: 1.25vw;
}

.site-title.site-title-white h2 span.site-subtitle {
    color: #fff;
}

.site-title h2 span.site-subtitle em.site-title-accent-line,
em.site-title-accent-line {
    height: 2px;
    width: 5.2vw;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
}

.site-title h2 span.site-maintitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1vw;
    gap: 0.75vw;
}

.site-title h2 span.site-maintitle img {
    width: 2.45vw;
    height: auto;
}

/*Site Titles*/

/*Site Buttons*/

.site-button-border {
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, var(--site-button-border)) 1;
}

.site-button {
    height: 3vw;
    position: relative;
    width: 100%;
    max-width: 22.5vw;
    display: flex;
}

.site-button input,
.site-button a,
.site-button button,
.site-button span:not(.wpcf7-spinner) {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: 1;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
    line-height: 1.2;
    font-size: 0.87vw;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-decoration: none;
}

.site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.site-button:hover::before {
    opacity: 1;
}

/*Site Buttons*/

/*Globals*/

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


/*Header*/

header.header {
    position: fixed;
    z-index: 991;
    width: 100%;
    top: 0;
    left: 0;
}

.header-main-container {
    position: relative;
    padding: 0.75vw 3.7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-main-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header.header.fixed .header-main-container {
    padding: 0.75vw 1.4vw;
    background: var(--site-primary-color);
    border-bottom-color: transparent;
}

header.header.fixed .header-main-container .header-main-container-bg {
    opacity: 0.05;
}

/*Logo*/
.header-logo {
    width: 15.6vw;
}

.header-logo-inner img {
    filter: brightness(0) invert(1);
}

header.header.fixed .header-logo-inner img {
    filter: none;
}

/*Logo*/

/*Navigation*/
.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.9vw;
    padding: 1vw 0 0;
}

.header-navigation {}

.header-navigation-container>.menu-main-navigation-container>ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-navigation-container>.menu-main-navigation-container>ul>li {
    position: relative;
}

.header-navigation-container>.menu-main-navigation-container>ul>li>a {
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 0.87vw;
    line-height: 1.85;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1.26vw;
}

.header-navigation-container>.menu-main-navigation-container>ul>li>a:hover,
.header-navigation-container>.menu-main-navigation-container>ul>li:focus-within>a {
    color: var(--site-accent-color);
}

.header-navigation-container>.menu-main-navigation-container>ul>li>ul {
    display: block;
    position: absolute;
    width: 15vw;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    left: 50%;
    transform: translate(-50%, 20px);
    padding-top: 0.8vw;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.header-navigation-container>.menu-main-navigation-container>ul>li:hover>ul,
.header-navigation-container>.menu-main-navigation-container>ul>li:focus-within>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.header-navigation-container>.menu-main-navigation-container>ul>li>ul li a {
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 0.7vw;
    line-height: 1.25;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5vw;
    text-transform: uppercase;
    background: #fff;
    color: var(--site-primary-color);
    text-align: center;
    padding: 0.5vw;
}

.header-navigation-container>.menu-main-navigation-container>ul>li>ul li a:hover,
.header-navigation-container>.menu-main-navigation-container>ul>li>ul li:focus-within a:hover {
    background: var(--site-accent-color);
    color: #fff;
}

/*Navigation*/

/*Contact Information*/
.header-contact-info {
    padding-bottom: 0.75vw;
}

.header-contact-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -0.4vw;
}

.header-contact-info-inner ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-contact-info-inner ul li a {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.1em;
    font-size: 0.87vw;
    line-height: 1.25;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
    padding: 0 1.65vw;
}

.header-contact-info-inner ul li a:hover {
    color: var(--site-accent-color);
}

.header-contact-info-inner ul li a i {
    line-height: 1.25;
}

.header-contact-info-inner ul li a i.ai-font-whatsapp {
    font-size: 1.2vw;
    line-height: 0.85;
}

.header-contact-info-inner ul li a i.ai-font-envelope-f {
    font-size: 0.85vw;
    line-height: 1.25;
}

.header-contact-info-inner ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

/*Contact Information*/

/*Burger Menu*/
.header-burger-menu {}

.header-burger-menu button {
    width: 2.8vw;
    height: 2.9vw;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 0.75vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 0.35vw;
}

.header-burger-menu button:hover {
    border-color: #fff;
    background: #fff;
}

.header-burger-menu button span {
    width: 1.3vw;
    height: 0.1vw;
    background: var(--site-accent-color);
}

.header-burger-menu button span:first-child {
    width: 0.65vw;
}

/*Burger Menu*/

/*Header*/

/*Burger Menu*/
body.scroll-disable {
    overflow: hidden;
}

.burger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.burger-menu.active {
    right: 0;
}

.burger-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.burger-menu-container {
    height: 100vh;
    width: 24.4vw;
    margin-left: auto;
    position: relative;
    background: var(--site-primary-color);
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5vw 2vw 0;
}

.burger-menu-container .burger-menu-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    filter: grayscale(1);
    opacity: 0.22;
}

.burger-menu-close {
    position: absolute;
    top: 2.2vw;
    right: 3.2vw;
}

.burger-menu-close button {
    width: 2.8vw;
    height: 2.9vw;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.2vw;
}

.burger-menu-close button:hover {
    border-color: #fff;
    background: #fff;
}

.burger-menu-close button span {
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.burger-menu-navigation {
    text-align: center;
}

.burger-menu-navigation .menu-burger-menu-navigation-container>ul>li:not(:last-child) {
    padding-bottom: 2.3vw;
}

.burger-menu-navigation .menu-burger-menu-navigation-container>ul>li>a {
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 1.6vw;
    line-height: 1.4;
    text-decoration: none;
}

.burger-menu-navigation .menu-burger-menu-navigation-container>ul>li>a:hover {
    color: var(--site-accent-color);
}

.burger-menu-navigation .menu-burger-menu-navigation-container .sub-menu {}

.burger-menu-navigation .menu-burger-menu-navigation-container .sub-menu>li {}

.burger-menu-navigation .menu-burger-menu-navigation-container .sub-menu>li>a {
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 1vw;
    line-height: 1.4;
    text-decoration: none;
}

.burger-menu-navigation .menu-burger-menu-navigation-container .sub-menu>li:hover>a {
    color: var(--site-accent-color);
}

/*Burger Menu*/

/*Footer*/

footer.footer {}

.footer-wrapper {
    position: relative;
    overflow: hidden;
}

.footer-wrapper .footer-wrapper-container-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 8vw;
}

/*Rental Advice*/

section#footer-advice {
    position: relative;
}

.footer-advice-container {
    position: relative;
}

.footer-advice-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 3.8vw);
    height: 100%;
    background: var(--site-primary-color);
    opacity: 0.95;
}

.footer-advice-inner {
    padding: 5.4vw 0;
    position: relative;
    width: 100%;
    max-width: 77.2vw;
    margin: 0 auto;
}

.footer-advice-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1vw;
    padding-bottom: 2vw;
}

.footer-advice-verbiage {
    text-align: center;
    font-size: 1vw;
    line-height: 1.65;
    letter-spacing: 0.1em;
    font-weight: 200;
    width: 100%;
    max-width: 65.4vw;
    margin: 0 auto;
    color: #fff;
}

.footer-advice-form {
    display: flex;
    gap: 2.3vw;
    padding: 0 3.2vw;
}

.footer-advice-agent-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75vw;
    text-align: center;
}

.footer-advice-agent {
    width: 26%;
}

.footer-advice-agent-photo {
    width: 12vw;
}

.footer-advice-agent-info {
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.67;
    font-weight: 200;
    font-size: 1.02vw;
}

.footer-advice-agent-info em {
    font-style: normal;
    display: block;
    color: var(--site-accent-color);
    font-size: 1.25vw;
}

.footer-advice-agent-info a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-advice-agent-info a:hover {
    color: var(--site-accent-color);
}

.footer-advice-cf7 {
    width: calc(69% - 2.3vw);
    position: relative;
    padding: 1vw 0;
}

.footer-advice-form-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-advice-form-field {
    width: calc(50% - 1vw);
}

.footer-advice-form-field.full-field {
    width: 100%;
}

.footer-advice-form-field input[type="text"],
.footer-advice-form-field input[type="tel"],
.footer-advice-form-field input[type="email"],
.footer-advice-form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 0 1.5vw;
    height: 3vw;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.87vw;
}

.footer-advice-form-field textarea {
    padding: 1.5vw;
    height: 6.2vw;
    resize: none;
}

.footer-advice-form-field.full-field.submit-field .site-button {
    max-width: 14.6vw;
}

.footer-advice-form-field.full-field.submit-field .site-button .wpcf7-spinner {
    position: absolute;
    margin: 0;
    bottom: -30px;
}

.footer-advice-cf7 .wpcf7 form .wpcf7-response-output {
    text-align: center;
    color: #fff;
    margin: 0;
    position: absolute;
    width: 100%;
    bottom: -1vw;
    padding: 0.15vw;
    font-size: 0.65vw;
}

.footer-advice-form-field .wpcf7-not-valid-tip {
    padding: 0.15vw;
    font-size: 0.65vw;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    right: 0;
    width: auto;
    position: absolute;
}

.footer-advice-bottom {
    width: 100%;
    max-width: calc(100% - 3.8vw);
    margin-left: auto;
    position: relative;
}

.footer-advice-bottom-inner {
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    height: 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2vw;
    gap: 5vw;
}

.footer-advice-bottom-text {
    font-size: 2.25vw;
    color: #fff;
}

.footer-advice-bottom-button {
    width: 100%;
    /*max-width: 14.6vw;*/
    max-width: 17.6vw;
}

.footer-advice-bottom-button .site-button {
    border: 2px solid #fff;
}

.footer-advice-bottom-button .site-button::before {
    display: none;
}

.footer-advice-bottom-button .site-button:hover {
    border-color: var(--site-primary-color);
    ;
    background: var(--site-primary-color);
}

/*Rental Advice*/

/*Footer Main*/
.footer-main {
    padding-top: 5vw;
}

.footer-main-container {
    position: relative;
}

.footer-main-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 3.8vw);
    height: 100%;
}

.footer-main-container .footer-main-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 3.8vw);
    height: 100%;
    background-image: url(../../../../uploads/2024/01/footer-navigation-bg.jpg);
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
}

.footer-main-container::after {
    background: var(--site-primary-color);
    opacity: 0.87;
}

.footer-main-inner {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    max-width: 82.8vw;
    margin: 0 auto;
    padding: 3vw 0;
}

.footer-logo {}

.footer-logo-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.footer-logo-lists .footer-site-logo {
    width: 19vw;
}

.footer-logo-lists .footer-broker-logo {
    width: 19vw;
}

.footer-navigation {
    padding: 3vw 0 2vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-navigation-container .menu-footer-navigation-container>ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li {}

.footer-navigation-container .menu-footer-navigation-container>ul>li>a {
    font-weight: 300;
    color: var(--site-accent-color);
    letter-spacing: 0.02em;
    font-size: 1.473vw;
    text-decoration: none;
    line-height: 1.4;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li>a:hover {
    color: #ce9067;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li>ul {
    padding-top: 1vw;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a {
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.1em;
    font-size: 1vw;
    line-height: 1.85;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a:hover {
    color: var(--site-accent-color);
}

.footer-contact-info {}

.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li:not(:last-child) {
    padding-bottom: 0.7vw;
}

.footer-contact-info-inner ul li:not(:last-child) {
    padding-bottom: 0.7vw;
}

.footer-contact-info-inner ul li a {
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.1em;
    font-size: 0.9vw;
    line-height: 1.85;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
}

.footer-contact-info-inner ul li a i,
.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a i {
    line-height: 1.85;
    width: 1.4vw;
    text-align: center;
}

.footer-contact-info-inner ul li a i.ai-font-envelope-f,
.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a i.ai-font-envelope-f {
    font-size: 0.85vw;
    line-height: 1.85;
}

.footer-contact-info-inner ul li i.ai-font-whatsapp,
.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a i.ai-font-whatsapp {
    font-size: 1.18vw;
    line-height: 1.3;
}

.footer-contact-info-inner ul li i.ai-font-location-c,
.footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a i.ai-font-location-c {
    font-size: 1.3vw;
    line-height: 1.3;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li#menu-item-195 {
    margin-top: 3.125vw;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li#menu-item-195>ul {
    column-count: 4;
    column-gap: 3.125vw;
}

.footer-navigation-container .menu-footer-navigation-container>ul>li#menu-item-195>ul li a {
    line-height: 1.4;
}

/*Footer Main*/

/*Disclaimer*/

.footer-disclaimer {
    padding: 2vw 3.4vw 1.5vw;
    text-align: center;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 200;
    font-size: 0.75vw;
    line-height: 1.8;
}

.footer-disclaimer a {
    color: #fff;
    text-decoration: none;
}

.footer-disclaimer a:hover {
    color: var(--site-accent-color);
}

/*Disclaimer*/

/*Copyright*/

.footer-copyright {
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 200;
    font-size: 0.75vw;
    line-height: 1.8;
    text-align: center;
}

.footer-copyright a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright a[href="https://www.agentimage.com/"] {
    border-bottom: 1px solid;
}

.footer-copyright a:hover {
    color: var(--site-accent-color);
}

.footer-mls {
    padding-top: 0.75vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65vw;
}

.footer-mls span {
    font-size: 2vw;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.footer-mls span.ai-font-eho {
    font-size: 1.65vw;
}

/*Copyright*/
/*Footer*/


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

div#main-wrapper {
    overflow: hidden;
}


/* 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 .archive-subtitle,
#content .archive-title,
#content .entry-title {
    letter-spacing: 0.02em;
    font-family: var(--font-family-title);
    font-size: 70px;
    color: var(--site-primary-color);
    line-height: 1.25;
}

:before,
:after {
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

.img-cover {
    position: relative;
    z-index: 0;
}

.img-cover img {
    display: block;
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/*Communities Search*/

.home-communities-search-container {
    position: relative;
}

.home-communities-search-form {
    width: 100%;
    max-width: 70vw;
    margin: 0 auto;
    padding-top: 3.5vw;
}

.home-communities-search-form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 2vw;
}

.home-communities-search-form-title .font-site-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.6vw;
    width: 100%;
}

.home-communities-search-form-title h2 {
    color: #fff;
    letter-spacing: 0.02em;
    font-size: 2.45vw;
}

.home-communities-search-form-title .font-site-title em {
    flex-grow: 1;
}

.home-communities-search-form-wrapper {}

.home-communities-search-form-wrapper form {
    font-size: 0;
}

.home-communities-search-form-wrapper form>div {
    display: inline-block;
}

.home-communities-search-form-wrapper form>div.home-communities-search-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5vw;
}

.home-communities-search-form-fields {
    width: 66.5%;
    font-size: 0;
}

.home-communities-search-form-field {
    display: inline-block;
    vertical-align: middle;
    padding-right: 0.5vw;
    width: 27.25%;
}

.home-communities-search-form-field.long-field {
    width: 45.5%;
}

.home-communities-search-form-field.select-field {
    position: relative;
}

.home-communities-search-form-field.select-field::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5vw;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0.27vw 0.21vw 0 0.21vw;
    border-color: #fff transparent transparent transparent;
}

.home-communities-search-form-field:last-child {
    padding-right: 0;
}

.home-communities-search-form-field input,
.home-communities-search-form-field select {
    padding: 0 0.9vw;
    width: 100%;
    height: 2.35vw;
    outline: none;
    font-size: 0.87vw;
    font-weight: 200;
    letter-spacing: 0.02em;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    appearance: none;
}

.home-communities-search-form-field select option {
    color: #000;
}

body:not(.page-template-quick-search) .home-communities-search-form-range {
    width: 33.5%;
    vertical-align: middle;
}

.page-template-quick-search .home-communities-search-form-range {
    width: 25.5%;
    padding-right: 10px;
}

.home-communities-search-form-range-inner .irs--flat .irs-handle {
    width: 1vw;
    height: 1vw;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.home-communities-search-form-range-inner .irs--flat .irs-handle i {
    display: none;
}

.home-communities-search-form-range-inner .irs-grid {
    bottom: unset;
    top: 0;
    height: 100%;
}

.home-communities-search-form-range-inner .irs--flat .irs-bar {
    height: 0.15vw;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}

.home-communities-search-form-range-inner .irs--flat .irs-line {
    background: var(--site-accent-color);
    height: 0.15vw;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%;
    left: 0;
}

.home-communities-search-form-range-inner .irs>.irs>span:not(.irs-line):not(.irs-from):not(.irs-to) {
    display: none;
}

.home-communities-search-form-range-inner .irs--flat .irs-from,
.home-communities-search-form-range-inner .irs--flat .irs-to {
    top: 50%;
    transform: translateY(-50%);
    width: 2.6vw;
    background: transparent;
    color: #fff;
    font-size: 0.87vw;
    font-weight: 200;
    letter-spacing: 0.02em;
    visibility: visible !important;
    padding: 0;
}

.home-communities-search-form-range-inner .irs--flat .irs-from::before,
.home-communities-search-form-range-inner .irs--flat .irs-to::before {
    display: none;
}

.home-communities-search-form-range-inner .irs--flat .irs-from {
    left: -3vw !important;
    text-align: right;
}

.home-communities-search-form-range-inner .irs--flat .irs-to {
    left: unset !important;
    right: -3vw;
    text-align: left;
}

.home-communities-search-form-range-inner .irs--flat {
    height: 2.35vw;
    margin: 0 3vw 0 3.25vw;
}

.home-communities-search-form-range-inner {
    position: relative;
}

.home-communities-search-form-range-inner .irs>.irs {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
}

.home-communities-search-form-range-inner .irs-grid-text {
    padding: 0;
    bottom: unset;
    top: 0;
    letter-spacing: 0.02em;
    font-weight: 200;
    font-size: 0.85vw;
    line-height: 1;
    color: #fff;
    font-family: var(--font-family-default);
}

.home-communities-search-form-range-inner .irs-grid-text::before {
    content: '$';
}

.home-communities-search-form-range-inner .irs-grid-text::after {
    content: 'K';
}

.home-communities-search-form-range-inner .irs--flat .irs-grid-pol {
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    height: 0.25vw;
    background: var(--site-accent-color);
    width: 2px;
}

.home-communities-search-form-range-inner .irs--flat .irs-grid-pol.small {
    display: none;
}

.home-communities-search-form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 200;
    font-size: 0.8vw;
    letter-spacing: 0.05em;
    padding-top: 1.5vw;
}

/*Communities Search*/

/*Rentals*/

.home-rentals-container {
    padding: 5.2vw 2vw 3vw;
}

.home-rentals-inner {
    display: block;
    width: 100%;
    max-width: 88.3vw;
    margin: 0 auto;
}


.home-rentals-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2vw;
}


.home-rentals-feed {
    padding: 0 3vw;
    position: relative;
}

.home-rentals-feed-slider {
    margin: 0 -1vw;
}

.home-rentals-feed-item {
    padding: 0 1vw;
}

.home-rentals-feed-item a {
    display: block;
    position: relative;
    outline: none;
}

.home-rentals-feed-item-photo {
    overflow: hidden;
}

.home-rentals-feed-item a:hover .home-rentals-feed-item-photo img {
    transform: scale(1.28);
}

.home-rentals-feed-item-text {
    position: relative;
    width: 100%;
    max-width: calc(100% - 3vw);
    margin: 0 auto;
    height: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75vw;
    padding: 0 2.5vw;
    margin-top: -3.8vw;
}

.home-rentals-feed-item-text::before,
.home-rentals-feed-item-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.home-rentals-feed-item-text::before {
    background: var(--site-primary-color);
}

.home-rentals-feed-item-text::after {
    background-image: url(../../../../uploads/2024/01/hp-rentals-item-bg.jpg);
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.22;
}

.home-rentals-feed-item-text span {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85vw;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.home-rentals-feed-item-text span.home-rentals-feed-item-text-price {
    width: 100%;
    text-align: center;
    padding-top: 0.75vw;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 2vw;
}

.home-rentals-feed-item-text span.home-rentals-feed-item-text-title,
.home-rentals-feed-item-text span.home-rentals-feed-item-text-price {
    text-transform: none;
    font-size: 1.67vw;
    font-weight: 200;
}

.home-rentals-feed-item-text span.home-rentals-feed-item-text-title {
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    filter: brightness(0) invert(1);
}

.home-rentals-feed-item a:hover .home-rentals-feed-item-text span.home-rentals-feed-item-text-title {
    filter: none;
}

.home-rentals-feed-item-text span.home-rentals-feed-item-text-subtitle {
    letter-spacing: 0.2em;
    font-size: 1vw;
}

.home-rentals-feed-item-text span em {
    font-style: normal;
    color: var(--site-accent-color);
}

.home-rentals-feed-navigation {}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow {
    position: absolute;
    top: 9vw;
    z-index: 2;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow.feed-navigation-arrow-prev {
    left: 0;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow.feed-navigation-arrow-next {
    right: 0;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button {
    width: 3vw;
    height: 6vw;
    border: none;
    background: var(--site-primary-color);
    font-size: 2vw;
    color: var(--site-);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: relative;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    top: 0;
    left: 0;
    opacity: 0;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button:hover::before {
    opacity: 1;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button span {
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button:hover span {
    filter: brightness(0) invert(1);
}


.home-rentals-feed-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2vw;
}

.home-rentals-feed-button .site-button {
    max-width: 18.5vw;
}

.home-rentals-feed-button .site-button a {
    color: var(--site-primary-color);
}

.home-rentals-feed-button .site-button a:hover {
    color: #fff;
}

/*Rentals*/

/*Neighborhoods*/

section#home-neighborhood,
#home-neighborhood {
    padding: 5.2vw 0 0.75vw;
    position: relative;
}

.home-neighborhood-container-bg {
    position: absolute;
    width: 100%;
    height: 59%;
    left: 0;
    top: 0;
    background-image: url(../../../../uploads/2024/01/hp-neighborhood-bg.jpg);
    opacity: 0.2;
    pointer-events: none;
}

.home-neighborhood-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3vw;
}

.home-neighborhood-feed {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.1vw;
}

.home-neighborhood-map {
    width: calc(50% - 0.15vw);
}

.home-neighborhood-feed-slider {
    width: calc(50% + 0.01vw);
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.1vw;
}

.home-neighborhood-feed-item {
    width: calc(50% - 0.05vw);
}

.home-neighborhood-feed-item a {
    display: block;
    position: relative;
    outline: none;
}

.home-neighborhood-feed-item-photo {}

.home-neighborhood-feed-item-photo canvas {
    background: #000;
}

.home-neighborhood-feed-item-photo img {
    opacity: 0.7;
}

.home-neighborhood-feed-item.home-neighborhood-feed-item-explore .home-neighborhood-feed-item-photo canvas {
    background: var(--site-primary-color);
}

.home-neighborhood-feed-item.home-neighborhood-feed-item-explore .home-neighborhood-feed-item-photo img {
    filter: grayscale(1);
    opacity: 0.24;
}

.home-neighborhood-feed-item:not(.home-neighborhood-feed-item-explore) a:hover .home-neighborhood-feed-item-photo img,
.home-neighborhood-feed-item:not(.home-neighborhood-feed-item-explore) a.map-hover .home-neighborhood-feed-item-photo img {
    opacity: 1;
}

.home-neighborhood-feed-item-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    opacity: 0;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.home-neighborhood-feed-item:not(.home-neighborhood-feed-item-explore) a:hover .home-neighborhood-feed-item-photo::after,
.home-neighborhood-feed-item:not(.home-neighborhood-feed-item-explore) a.map-hover .home-neighborhood-feed-item-photo::after {
    opacity: 0.8;
}

.home-neighborhood-feed-item-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 0 2vw; */
    padding: 0 0.5vw;
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.04em;
    line-height: 1.167;
    font-size: 1.5vw;
}

.home-neighborhood-feed-item-text.hover-phase {
    opacity: 0;
    flex-direction: column;
    gap: 1.5vw;
}

.home-neighborhood-feed-item.home-neighborhood-feed-item-explore .home-neighborhood-feed-item-text.hover-phase {
    opacity: 1;
}

.home-neighborhood-feed-item-text.hover-phase .site-button {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    max-width: 13.6vw;
    font-size: 0.85vw;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.home-neighborhood-feed-item:not(.home-neighborhood-feed-item-explore) .home-neighborhood-feed-item-text.hover-phase .site-button {
    border: 2px solid #fff;
}

.home-neighborhood-feed-item a:hover .default-phase {
    opacity: 0;
}

.home-neighborhood-feed-item a:hover .hover-phase {
    opacity: 1;
}

.home-neighborhood-feed-item.home-neighborhood-feed-item-explore a:hover .home-neighborhood-feed-item-text.hover-phase .site-button::before,
.home-neighborhood-feed-item.home-neighborhood-feed-item-explore a.map-hover .home-neighborhood-feed-item-text.hover-phase .site-button::before {
    opacity: 1;
}

.home-neighborhood-button {
    padding-top: 2.65vw;
    padding-bottom: 2.65vw;
}

.home-neighborhood-button .site-button {
    margin: 0 auto;
}

.home-neighborhood-button .site-button a:not(:hover, :focus) {
    color: var(--site-primary-color);
}

/*map*/
div#fc-map-wrap {
    position: relative;
}

#fc-map {
    position: relative;
    width: 798px;
}

#fc-map-transparent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

#trueMap {
    z-index: 1;
}

#fc-map .hovers div,
#fc-map .hovers div span {
    position: absolute;
}

#fc-map .hovers div>img {
    opacity: 0;
    position: relative;
    z-index: 2;
}

span.map-label {
    font-size: 15px;
    font-weight: 300;
    z-index: 5;
    text-shadow: rgb(187, 137, 104) 2px 0px 0px,
        rgb(187, 137, 104) 1.75517px 0.958851px 0px,
        rgb(187, 137, 104) 1.0806px 1.68294px 0px,
        rgb(187, 137, 104) 0.141474px 1.99499px 0px,
        rgb(187, 137, 104) -0.832294px 1.81859px 0px,
        rgb(187, 137, 104) -1.60229px 1.19694px 0px,
        rgb(187, 137, 104) -1.97998px 0.28224px 0px,
        rgb(187, 137, 104) -1.87291px -0.701566px 0px,
        rgb(187, 137, 104) -1.30729px -1.5136px 0px,
        rgb(187, 137, 104) -0.421592px -1.95506px 0px,
        rgb(187, 137, 104) 0.567324px -1.91785px 0px,
        rgb(187, 137, 104) 1.41734px -1.41108px 0px,
        rgb(187, 137, 104) 1.92034px -0.558831px 0px;
    pointer-events: none;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
    letter-spacing: 1.6px;
    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;
}

.hover span.map-label {
    opacity: 1;
}

div#map1 {
    bottom: 323px;
    left: 332px;
}

div#map1 span.map-label {
    top: -41px;
    left: -86px;
}

div#map2 {
    bottom: 258px;
    left: 390px;
}

div#map2 span.map-label {
    top: 67px;
    left: 90px;
}

div#map3 {
    bottom: 217px;
    left: 330px;
}

div#map3 span.map-label {
    top: 11px;
    left: -65px;
}

div#map3 span.map-label.map-label-2 {
    top: 56px;
    left: -58px;
}

div#map4 {
    bottom: 27px;
    left: 176px;
}

div#map4 span.map-label {
    top: 38px;
    left: -39px;
}

div#map4 span.map-label.map-label-2 {
    top: 83px;
    left: 74px;
}

/* div#map5 {
    bottom: 469px;
    left: 450px;
}

    div#map5 span.map-label {
        top: 0;
        left: 24px;
    }

        div#map5 span.map-label.map-label-2 {
            top: 30px;
            left: 29px;
        } */

div#map5 {
    bottom: 362px;
    left: 322px;
}

div#map5 span.map-label {
    top: 236px;
    left: -78px;
}

div#map5 span.map-label.map-label-2 {
    top: 195px;
    left: -62px;
}

div#map5 span.map-label.map-label-3 {
    top: 147px;
    left: -22px;
}

div#map6 {
    bottom: 559px;
    left: 422px;
}

div#map6 span.map-label {
    top: 17px;
    left: -30px;
}

div#map6 span.map-label.map-label-2 {
    top: 44px;
    left: 33px;
}

div#map7 {
    top: 43px;
    left: 333px;
}

div#map7 span.map-label {
    top: 145px;
    left: 58px;
}

div#map8 {
    top: 256px;
    left: 253px;
}

div#map8 span.map-label {
    top: 127px;
    left: 172px;
}

div#map8 span.map-label.map-label-2 {
    top: 193px;
    left: 169px;
}

/*end*/

/*Neighborhoods*/


/*Rental Tips*/

section#home-tips {
    padding: 5.2vw 2vw 5vw;
    position: relative;
    background: var(--site-primary-color);
}

section#home-tips .home-tips-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../../../uploads/2024/01/hp-tips-bg.jpg);
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.24;
}


.home-tips-container {
    position: relative;
}

.home-tips-inner {
    width: 100%;
    max-width: 72.2vw;
    margin: 0 auto;
    max-width: 87.5vw;
}

.home-tips-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1vw;
    padding-bottom: 2vw;
}

.home-tips-verbiage {
    color: var(--site-accent-color);
    letter-spacing: 0.05em;
    font-size: 1.12vw;
    line-height: 1.2;
    font-weight: 200;
    /* border-bottom: 1px solid; */
}

.home-tips-verbiage span {
    text-decoration: underline;
    text-underline-offset: 0.27em;
}

.home-tips-feed {}

.home-tips-feed-slider {}

.home-tips-feed-item {
    padding: 0 1vw;
}

.home-tips-feed-item a {
    display: block;
    outline: none;
}

.home-tips-feed-item a .home-tips-feed-item-photo {
    overflow: hidden;
}

.home-tips-feed-item a:hover .home-tips-feed-item-photo img {
    transform: scale(1.15);
}

.home-tips-feed-item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.04em;
    font-weight: 200;
    color: #fff;
    font-size: 1.7vw;
    padding: 2vw 1.3vw;
    line-height: 1.1;
}

.home-tips-feed-item a:hover .home-tips-feed-item-text {
    color: var(--site-accent-color);
}

.home-tips-feed-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.home-tips-feed-v2 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -27px 27px;
    margin: 0 -1.688vw 1.688vw;
}

.home-tips-feed-item-v2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: calc(100% / 3);
    padding: 1.688vw;
}

.home-tips-feed-item-v2:first-child {
    flex-direction: row;
    width: 100%;
    margin-bottom: 22px;
    margin-bottom: 1.375vw;
}

.home-tips-feed-item-v2:first-child .home-tips-feed-item-photo-v2 {
    width: 48.572%;
}

.home-tips-feed-item-v2:first-child .home-tips-feed-item-content-v2 {
    width: 51.428%;
    padding: 35px 0 0 38px;
    padding: 2.188vw 0 0 2.375vw;
}

.home-tips-feed-item-v2:first-child .home-tips-feed-item-content-text-v2 {
    margin-bottom: 47px;
    margin-bottom: 2.9375vw;
}

.home-tips-feed-item-photo-v2 a {
    display: block;
    position: relative;
    background: #000;
}

.home-tips-feed-item-photo-v2 a img {
    aspect-ratio: 680 / 320;
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.home-tips-feed-item-photo-v2 a:hover img {
    opacity: .8;
}

.home-tips-feed-item-content-title-v2 {
    font-size: 25px;
    color: #d2a786;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
    font-size: 1.563vw;
    margin-bottom: 1vw;
}

.home-tips-feed-item-content-text-v2 {
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    font-weight: 200;
    letter-spacing: 0.04em;
    margin-bottom: 23px;
    font-size: 1.125vw;
    margin-bottom: 1.4375vw;
}

.home-tips-feed-item-content-text-v2 strong {
    font-weight: 600;
}

.home-tips-feed-item-content-text-v2 ul {
    margin-top: 10px;
    margin-left: 26px;
}

.home-tips-feed-item-content-text-v2 ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    letter-spacing: 0.1em;
    list-style-type: disc;
    text-transform: uppercase;
    font-size: 1vw;
    list-style: none;
    position: relative;
}

.home-tips-feed-item-content-text-v2 ul li:before {
    position: absolute;
    content: '';
    width: 0.678em;
    height: 0.625em;
    background-image: url(/wp-content/uploads/2026/06/icon-list.png);
    background-size: cover;
    background-position: center;
    left: -1.2em;
    top: 0.5em;
}

.home-tips-feed-item-content-text-v2 ul li::marker {
    color: #d2a786;
}

.home-tips-feed-item-content-text-v2 ul li a {
    color: inherit;
    text-decoration: underline;
}

.home-tips-feed-item-content-text-v2 ul li a:hover,
.home-tips-feed-item-content-text-v2 ul li a:focus {
    /*text-decoration: none;*/
    outline: none;
    border: none;
    color: #d2a786;
}

.home-tips-feed-item-content-text-v2 ul li a strong {
    font-weight: 600;
}

.home-tips-feed-item-content-v2 .site-button {
    max-width: 240px;
    max-width: 15vw;
    display: none;
}

.home-tips-feed-item-v2:first-child .site-button {
    display: flex;
}

/*Rental Tips*/


/*About*/

section#home-about {
    padding: 5.2vw 0;
    position: relative;
}

section#home-about::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.home-about-container-bg {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    top: 2vw;
    opacity: 0.14;
    height: 86%;
    filter: grayscale(1);
    z-index: -3;
}

section#home-about::after {
    bottom: 0;
    height: 35%;
    z-index: -2;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
}

.home-about-inner {
    display: block;
    width: 100%;
    max-width: 82.4vw;
    margin: 0 auto;
    position: relative;
}

.home-about-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70.6vw;
    height: calc(100% - 1px);
    margin-top: 3vw;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, var(--site-button-border)) 1;
    pointer-events: none;
    z-index: -1;
}

.home-about-feed {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-about-photo {
    width: 41.5%;
}

.home-about-photo .image-canvas-overlay {
    margin-left: -2vw;
}

.home-about-photo .image-canvas-overlay::after {
    content: '';
    position: absolute;
    bottom: -3vw;
    left: -3vw;
    width: 16.8vw;
    height: 91%;
    background: rgb(206, 143, 102);
    background: var(--site-gradient-background);
    z-index: -1;
}

.home-about-text {
    width: 55.7%;
    padding: 6.8vw 1.2vw 0;
}

.home-about-title {
    padding-bottom: 2vw;
}

.home-about-text .site-title h2 span.site-maintitle {
    padding-left: 0;
}

.home-about-blurb {
    padding-left: 3.3vw;
}

.home-about-blurb p {
    color: #565656;
    letter-spacing: 0.025em;
    font-size: 0.88vw;
    line-height: 1.7;
}

.home-about-blurb p:not(:last-child) {
    margin-bottom: 1.63vw;
}

.home-about-blurb p a {
    color: inherit;
    text-decoration: underline;
}

.home-about-button {
    padding-top: 2.65vw;
    padding-left: 3.3vw;
}

.home-about-button .site-button {
    max-width: 14.7vw;
}

.home-about-button .site-button a {
    color: var(--site-primary-color);
}

.home-about-button .site-button a:hover {
    color: #fff;
}

/*About*/

/*blog layout*/
#content .post a {
    color: var(--site-primary-color);
}

#content #breadcrumbs {
    display: none;
}

#content .entry-title,
#content .archive-title {
    font-family: var(--font-family-title);
    color: var(--site-primary-color);
    font-size: 33px;
    text-transform: uppercase;
}

#content .archive-subtitle {
    color: var(--site-primary-color);
    font-family: var(--font-family-title);
}

#content .entry-thumbnail img {
    width: 100%;
    margin: 0 auto;
}

#content .archive-list {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
}

#content .archive-list .post {
    width: 50%;
    padding: 15px;
    border: none;
}

#content .archive-list .post a {
    display: block;
    width: 100%;
    position: relative;
}

#content .archive-subtitle a {
    font-size: 24px;
    text-decoration: none;
}

#content .archive-list .post .archive-thumbnail {
    width: 100%;
    float: none;
}

#content .archive-list .post .archive-thumbnail canvas {
    width: 100%;
    height: auto;
}

#content .archive-list .post .archive-thumbnail img {
    display: block;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
}

#content .archive-list .post .archive-content {
    width: 100%;
    float: none;
}

#content .archive-list .post .archive-content .archive-more {
    font-style: normal;
    text-decoration: none;
    display: inline-block;
    width: auto;
}

#content .archive-list .post .archive-content .archive-more:hover {
    color: #fff !important;
}

#content .archive-list .post:first-child {
    width: 100%;
}

#content .archive-list .post:first-child .entry {
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list .post:first-child .entry .archive-thumbnail {
    width: 60%;
}

#content .archive-list .post:first-child .entry .archive-content {
    width: 37%;
    margin-left: 3%;
    font-size: 22px;
}

#content .archive-list .post:first-child .entry .archive-content .archive-subtitle {
    margin: 0;
}

.category-rental-tips #inner-page-wrapper .container {
    /* width: 100%;*/
}

#content .archive-list .site-button a {
    display: flex;
}

#content .archive-list .site-button a:hover {
    color: #fff;
}

.archive-list .site-button {
    max-width: 160px;
}

/*end*/


.aios-custom-ihomefinder-results-template #content .entry-title {
    text-align: center;
    font-size: 43px;
    margin: 50px 0;
}

body #ai-modern-about .ai-modern-about-smi li a {
    text-decoration: none;
}

.ip-cstmcntr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ai-modern-properties-results .ai-modern-properties-results-grid .ai-modern-properties-results-item:hover .ai-modern-properties-results-info {
    background: none !important;
}

/* #ai-modern-about #content .ai-modern-about-title {
    margin-top: 0;
} */
#ai-modern-about #content .ai-modern-about-photo {
    margin-bottom: 22px;
}

#ai-modern-about #content .ai-modern-about-title .site-title h2 {
    display: flex;
    font-weight: 400;
    font-size: 4.65vw;
    text-transform: none;
}

#ai-modern-about #content .ai-modern-about-title .site-title h2 span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.home-about-img::before {
    display: none !important;
}

.home-about-feed {
    align-items: center !important;
}

.ocomm-top {
    padding: min(8.3125vw, 181px) 0 65px !important;
}

.home-about-img img {
    aspect-ratio: 584/773 !important;
}

body #ai-modern-about .ai-modern-about-photo:after {
    top: 0;
}



@media only screen and (max-width: 1199px) {

    /* Blog */
    #content .archive-list .post:first-child .entry .archive-thumbnail {
        width: 100%;
    }

    #content .archive-list .post:first-child .entry .archive-content {
        width: 100%;
        margin-left: 0;
    }

    #content .archive-list .post:first-child .entry .archive-content .archive-subtitle {
        margin: 0.75em 0;
    }
}

/* Styles for category/archive/search/etc subheadings (h2) */
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    #content .archive-list {
        margin: 0;
    }

    #content .archive-list .post {
        width: 100%;
        padding: 15px 0;
    }

    #content .archive-list .post .archive-content .archive-subtitle {
        text-align: left;
    }

    #content .archive-list .post:first-child .entry .archive-thumbnail {
        width: 100%;
    }

    #content .archive-list .post:first-child .entry .archive-content {
        width: 100%;
        margin-left: 0;
    }

    /*Globals*/

    /*Site Titles*/

    .site-title h2 {
        font-size: 55px;
        gap: 5px;
    }

    #content .archive-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: 55px;
    }

    .site-title h2 span.site-subtitle em.site-title-accent-line,
    em.site-title-accent-line {
        width: 65px;
    }

    .site-title h2 span.site-subtitle {
        gap: 15px;
        font-size: 13px;
    }

    .site-title h2 span.site-maintitle {
        gap: 5px;
        padding-left: 15px;
    }

    .site-title h2 span.site-maintitle img {
        width: 31px;
    }


    /*Site Titles*/

    /*Site Button*/

    .site-button {
        height: 45px;
        max-width: 300px;
    }

    .site-button input,
    .site-button a,
    .site-button button,
    .site-button span:not(.wpcf7-spinner) {
        font-size: 15px;
    }

    /*Site Button*/

    /*Pojo*/

    #pojo-a11y-toolbar {
        display: none;
    }

    /*Pojo*/

    /*Globals*/

    /*Header*/

    header.header {
        position: relative;
        padding-top: 52px;
    }

    header.header .header-main-container::before {
        opacity: 0.05;
    }

    header.header .header-main-container {
        background: var(--site-primary-color);
        border-bottom-color: transparent;
        padding: 30px 15px;
    }

    .header-logo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    header.header .header-logo-inner img {
        filter: none;
    }

    /*Header*/

    /*Footer*/

    /*Advice*/
    section#home-socials {
        padding: 45px 0;
    }

    .home-socials-title {
        padding-bottom: 25px;
    }

    .home-socials-feed-slider {
        flex-wrap: wrap;
        gap: 5px;
    }

    .home-socials-feed-item {
        width: calc((100% / 3) - 3.4px);
    }

    .footer-wrapper::before {
        top: 60px;
    }

    .footer-advice-container::before {
        width: calc(100% - 30px);
    }

    .footer-advice-inner {
        padding: 45px 0;
        max-width: calc(100% - 100px);
    }

    .footer-advice-title {
        gap: 15px;
        padding-bottom: 20px;
    }

    .footer-advice-verbiage {
        font-size: 12px;
        max-width: 100%;
        padding: 0 35px;
    }

    .footer-advice-form {
        gap: 25px;
        flex-direction: column;
        padding: 0 15px;
    }

    .footer-advice-agent {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-advice-agent-inner {
        gap: 10px;
    }

    .footer-advice-agent-photo {
        width: 100%;
        max-width: 150px;
    }

    .footer-advice-agent-info {
        font-size: 14px;
    }

    .footer-advice-agent-info em {
        font-size: 14px;
    }

    .footer-advice-cf7 {
        width: 100%;
        max-width: calc(100% - 50px);
        padding: 15px 0;
        margin: 0 auto;
    }

    .footer-advice-form-field input[type="text"],
    .footer-advice-form-field input[type="tel"],
    .footer-advice-form-field input[type="email"],
    .footer-advice-form-field textarea {
        height: 40px;
        font-size: 15px;
        padding: 0 15px;
        border-bottom: 1px solid;
    }

    .footer-advice-form-groups {
        gap: 5px;
    }

    .footer-advice-form-field textarea {
        height: 80px;
        padding: 15px;
    }

    .footer-advice-form-field.full-field.submit-field .site-button {
        max-width: 300px;
    }

    .footer-advice-form-field.full-field.submit-field {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 15px;
    }

    .footer-advice-form-field .wpcf7-not-valid-tip,
    .footer-advice-cf7 .wpcf7 form .wpcf7-response-output {
        font-size: 13px;
        padding: 2px;
    }

    .footer-advice-cf7 .wpcf7 form .wpcf7-response-output {
        bottom: -18px;
    }

    .footer-advice-form-field.full-field.submit-field .site-button .wpcf7-spinner {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-advice-bottom {
        max-width: calc(100% - 30px);
    }

    .footer-advice-bottom-inner {
        padding: 35px 15px;
        gap: 25px;
        height: auto;
        flex-direction: column;
    }

    .footer-advice-bottom-text {
        font-size: 30px;
        text-align: center;
    }

    .footer-advice-bottom-button {
        max-width: 300px;
    }

    /*Advice*/

    /*Main Footer*/
    .footer-main {
        padding-top: 45px;
    }

    .footer-main-container .footer-main-container-bg,
    .footer-main-container::after {
        width: calc(100% - 30px);
    }

    .footer-main-inner {
        max-width: calc(100% - 100px);
        padding: 30px 0;
    }

    .footer-logo-lists {
        gap: 25px;
        flex-direction: column;
    }

    .footer-logo-lists .footer-site-logo,
    .footer-logo-lists .footer-broker-logo {
        width: 100%;
        max-width: 250px;
    }

    .footer-navigation {
        padding: 35px 0 25px;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li {
        text-align: center;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li>a {
        font-size: 20px;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li.append-contact-tab ul li.footer-contact-items {
        display: none;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li>ul>li>a {
        font-size: 15px;
        align-items: center;
        justify-content: center;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li#menu-item-195 {
        margin-top: 0;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li#menu-item-195>ul {
        column-count: 1;
        column-gap: auto;
    }

    .footer-navigation-container .menu-footer-navigation-container>ul>li#menu-item-195>ul li a {
        line-height: 1.85;
    }

    .footer-contact-info {
        padding: 25px 0;
    }

    .footer-contact-info-inner ul li a {
        font-size: 15px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-contact-info-inner ul li a i {
        width: auto;
        font-size: 15px !important;
    }

    .footer-contact-info-inner {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact-info-inner ul li a i.ai-font-whatsapp {
        font-size: 20px !important;
    }

    .footer-contact-info-inner ul li a i.ai-font-location-c {
        font-size: 30px !important;
    }

    .footer-disclaimer {
        padding: 15px 25px;
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 13px;
        padding: 0 25px;
    }

    .footer-mls {
        gap: 10px;
        padding-top: 20px;
    }

    .footer-mls span {
        font-size: 30px;
    }

    .footer-mls span.ai-font-eho {
        font-size: 35px;
    }

    /*Main Footer*/

    /*Footer*/

    .home-communities-search-form {
        width: 100%;
        max-width: 600px;
        padding-top: 45px;
    }

    .home-communities-search-form-title {
        padding-bottom: 15px;
    }

    .home-communities-search-form-title .font-site-title {
        gap: 25px;
        flex-wrap: nowrap;
    }

    .home-communities-search-form-title h2 {
        font-size: 29px;
    }

    .home-communities-search-form-fields {
        width: 100%;
    }

    .home-communities-search-form-field {
        width: 50%;
        padding: 5px !important;
    }

    .home-communities-search-form-field.long-field {
        width: 100%;
    }

    .home-communities-search-form-field input,
    .home-communities-search-form-field select {
        padding: 0 10px;
        height: 40px;
        font-size: 15px;
    }

    .home-communities-search-form-field.select-field::after {
        border-width: 4px 3px 0 3px;
        right: 15px;
    }

    .home-communities-search-form-range {
        width: 100%;
    }

    .home-communities-search-form-range-inner .irs--flat {
        height: 40px;
        margin: 0 50px;
    }

    .home-communities-search-form-range-inner .irs--flat .irs-line {
        height: 5px;
    }

    .home-communities-search-form-range-inner .irs--flat .irs-bar {
        height: 5px;
    }

    .home-communities-search-form-range-inner .irs--flat .irs-handle {
        width: 15px;
        height: 15px;
    }

    .home-communities-search-form-range-inner .irs--flat .irs-from,
    .home-communities-search-form-range-inner .irs--flat .irs-to {
        font-size: 15px;
        width: 45px;
    }

    .home-communities-search-form-range-inner .irs--flat .irs-to {
        right: -50px;
    }

    .home-communities-search-form-range-inner .irs--flat .irs-from {
        left: -50px !important;
    }

    .home-communities-search-form-range-inner {
        width: 100%;
        max-width: 400px;
        margin: 10px auto 0;
    }

    .home-communities-search-form-wrapper form>div.home-communities-search-form-submit {
        padding-top: 15px;
    }

    .home-communities-search-form-disclaimer {
        font-size: 13px;
        padding-top: 15px;
    }

    /*Rentals*/
    .home-rentals-container {
        padding: 45px 15px;
    }

    .home-rentals-title {
        padding-bottom: 15px;
    }

    .home-rentals-feed-slider {
        margin: 0 auto;
        max-width: 500px;
    }

    .home-rentals-feed {
        padding: 0;
    }

    .home-rentals-inner {
        max-width: 100%;
    }

    .home-rentals-feed-item {
        padding: 0;
    }



    .home-rentals-feed-item-text {
        max-width: calc(100% - 90px);
        height: 250px;
        margin-top: -74px;
        gap: 7px;
        padding: 0 15px;
    }

    .home-rentals-feed-item-text span.home-rentals-feed-item-text-subtitle {
        font-size: 14px;
    }

    .home-rentals-feed-item-text span.home-rentals-feed-item-text-title,
    .home-rentals-feed-item-text span.home-rentals-feed-item-text-price {
        font-size: 25px;
    }

    .home-rentals-feed-item-text span {
        font-size: 11px;
    }

    .home-rentals-feed-item-text span.home-rentals-feed-item-text-price {
        margin-top: 10px;
        padding-top: 15px;
    }

    .home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button {
        width: 40px;
        height: 40px;
        border: none;
        background: var(--site-accent-color);
        color: #fff;
        font-size: 15px;
    }

    .home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button span {
        filter: brightness(0) invert(1);
    }

    .home-rentals-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow {
        position: relative;
        top: unset;
        left: unset;
        right: unset;
    }

    .home-rentals-feed-navigation .feed-navigation-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding-top: 15px;
    }

    .home-rentals-feed-button {
        padding-top: 15px;
    }

    .home-rentals-feed-button .site-button {
        max-width: 300px;
    }

    /*Rentals*/

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

    /*Neighborhoods*/
    section#home-neighborhood {
        padding: 45px 0;
    }

    .home-neighborhood-title {
        padding: 25px;
    }

    .home-neighborhood-map {
        width: 100%;
    }

    .home-neighborhood-feed-slider {
        width: 100%;
        gap: 5px;
        flex-direction: column;
        align-items: center;
    }

    .home-neighborhood-feed {
        gap: 25px;
    }

    .home-neighborhood-feed-item {
        width: 100%;
        max-width: 500px;
    }

    .home-neighborhood-feed-item-text {
        padding: 0 15px;
        font-size: 30px;
    }

    .home-neighborhood-feed-item-text.hover-phase {
        gap: 20px;
    }

    .home-neighborhood-feed-item-text.hover-phase .site-button {
        font-size: 13px;
        max-width: 300px;
    }

    /*Neighborhoods*/

    /*Tips*/
    section#home-tips {
        padding: 45px 15px;
    }

    .home-tips-title {
        padding-bottom: 25px;
        gap: 15px;
    }

    .home-tips-verbiage {
        font-size: 16px;
        text-align: center;
    }

    .home-tips-verbiage span {
        text-underline-offset: 0.15em;
    }

    .home-tips-feed-item {
        padding: 0;
    }

    .home-tips-feed {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .home-tips-feed-item-text {
        padding: 25px 0 0;
        font-size: 20px;
    }

    .home-tips-feed-navigation {}

    .home-tips-feed-navigation .feed-navigation-wrapper {
        padding: 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .home-tips-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button {
        width: 40px;
        height: 40px;
        border: none;
        background: var(--site-accent-color);
        color: #fff;
        font-size: 15px;
        position: relative;
    }

    .home-tips-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgb(206, 143, 102);
        background: var(--site-gradient-background);
        top: 0;
        left: 0;
        opacity: 0;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .home-tips-feed-navigation .feed-navigation-wrapper .feed-navigation-arrow button:hover::before {
        opacity: 1;
    }

    .home-tips-feed-button {
        padding-top: 0;
    }

    /*Tips*/
    /*About*/
    section#home-about {
        padding: 45px 0;
    }

    .home-about-inner {
        max-width: 100%;
        padding: 0 15px;
    }

    .home-about-inner::before {
        display: none;
    }

    .home-about-title {
        padding-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-about-photo {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .home-about-photo .image-canvas-overlay {
        margin-left: 0;
    }

    .home-about-photo .image-canvas-overlay::after {
        left: -50px;
        bottom: -50px;
        width: 50%;
        height: 90%;
    }

    .home-about-text {
        width: 100%;
        max-width: 600px;
        padding: 95px 0 0;
        margin: 0 auto;
    }

    .home-about-blurb {
        padding: 0;
        text-align: center;
    }

    .home-about-blurb p {
        font-size: 14px;
    }

    .home-about-blurb p:not(:last-child) {
        margin-bottom: 20px;
    }

    .home-about-button {
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home-about-button .site-button {
        max-width: 300px;
    }

    /*About*/

}

.aios-custom-ihomefinder-results-template #inner-page-wrapper .container {
    width: 100%;
}

.single-post .entry-thumbnail {
    display: none;
}


@media only screen and (max-width: 991px) {
    div#fc-map-wrap {
        height: auto !important;
    }

    #fc-map {
        width: 100%;
        transform: none !important;
        transform-origin: unset !important;
    }

    #fc-map>img,
    map#myMap,
    .hovers {
        display: none !important;
    }

    .ip-cstmcntr-row {
        flex-direction: column;
    }

    .home-neighborhood-button {
        padding-top: 32px;
        padding-bottom: 0;
    }

    .home-tips-feed-item-v2 {
        flex-direction: column !important;
        text-align: center;
        width: 100% !important;
        padding: 15px;
        margin-bottom: 30px !important;
    }

    .home-tips-feed-item-v2 .home-tips-feed-item-photo-v2 {
        width: 100% !important;
    }

    .home-tips-feed-item-v2 .home-tips-feed-item-photo-v2 img {
        width: 100%;
    }

    .home-tips-feed-item-v2 .home-tips-feed-item-content-v2 {
        width: 100% !important;
        padding: 30px 0 0 !important;
    }

    .home-tips-feed-item-content-title-v2 {
        font-size: 20px;
    }

    .home-tips-feed-item-content-text-v2 {
        font-size: 15px;
    }

    .home-tips-feed-item-content-v2 .site-button {
        display: flex !important;
        max-width: 240px;
        width: 100%;
        margin: 0 auto;
    }

    .home-tips-feed-item-content-text-v2 ul {
        width: 80%;
        text-align: left;
        margin: 15px auto 0;
        max-width: 400px;
    }

    .home-tips-feed-item-content-text-v2 ul li {
        font-size: 14px;
        line-height: 1.4;
        padding: 0.25em 0;
    }

    #ai-modern-about #content .ai-modern-about-title .site-title h2 {
        font-size: 55px;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {

    .site-title h2 {
        font-size: 40px;
    }

    #content .archive-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: 40px;
    }

    .footer-advice-container::before,
    .footer-advice-bottom,
    .footer-main-container .footer-main-container-bg,
    .footer-main-container::after {
        width: 100%;
        max-width: 100%;
    }

    .footer-advice-inner {
        padding: 45px 15px;
        max-width: 100%;
    }

    .footer-advice-cf7 .wpcf7 form .wpcf7-response-output {
        bottom: -30px;
    }

    .footer-main-inner {
        max-width: 100%;
    }

    .ip-banner .container {
        width: 100%;
    }

    #ai-modern-about #content .ai-modern-about-title .site-title h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 567px) {
    .site-title h2 {
        font-size: 35px;
    }

    .site-title h2 span.site-subtitle {
        letter-spacing: 0.3em;
    }

    #ai-modern-about #content .ai-modern-about-title .site-title h2 {
        font-size: 35px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .site-title h2 span.site-subtitle {
        letter-spacing: 0.2em;
    }

    .footer-advice-form-field {
        width: 100%;
    }

    .footer-advice-form-field input[type="text"],
    .footer-advice-form-field input[type="tel"],
    .footer-advice-form-field input[type="email"],
    .footer-advice-form-field textarea {
        font-size: 13px;
    }

    .footer-advice-verbiage {
        padding: 0 15px;
    }

    .footer-advice-cf7 {
        max-width: 100%;
    }

    .home-communities-search-form-field {
        width: 100%;
    }

    .home-communities-search-form-field input,
    .home-communities-search-form-field select {
        font-size: 13px;
    }

    .home-rentals-feed-item-text {
        max-width: calc(100% - 20px);
    }


    .home-about-button {
        padding: 25px 0 15px;
    }

    .home-neighborhood-feed-item-text {
        font-size: 20px;
    }

    .home-neighborhood-feed-item-text.hover-phase .site-button {
        font-size: 12px;
        max-width: 200px;
    }
}

@media only screen and (max-width: 400px) {

    .site-title h2 {
        font-size: 30px;
    }

    #content .archive-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: 30px;
    }

    .site-title h2 span.site-subtitle {
        font-size: 10px;
    }

    .site-title h2 span.site-maintitle {
        padding-left: 10px;
    }

    .site-title h2 span.site-maintitle img {
        width: 20px;
    }

    .header-logo {
        max-width: 200px;
    }

    #ai-modern-about #content .ai-modern-about-title .site-title h2 {
        font-size: 30px;
    }

}