/*******************************************************
 *
 * Variables
 *
 *******************************************************/

 :root {
    /** Font default */
    --font-family-default: 'Rubik', sans-serif;
    --font-family-title: 'Old Standard TT', serif;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #1e283c;
    --primary-rgb: 30, 40, 60;
    --secondary: #ecd794;
    --secondary-rgb: 236, 215, 148;
    --tertiary: #8c7346;
    --tertiary-rgb: 140, 115, 70;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: all 0.3s ease-in-out;
}


/*******************************************************
 *
 * Global Styles
 *
 *******************************************************/

html {
    margin: 0 !important;
}

body {
    font-family: var(--font-family-default);
    font-size: 16px;
    /* font-size: 0.938vw; */
    font-weight: 400;
    color: #555;
    line-height: normal;
    background: #fff;
    margin: 0;
}
/*

::-webkit-scrollbar {
    display: none;
}
*/

*:focus {
    outline: none !important;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover {
    color: rgba(var(--secondary-rgb), 1);
}

a,
input,
button,
img,
canvas {
    transition: var(--default-transition);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    transition: var(--default-transition);
}

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

.img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

#main-wrapper {
    background: #000;
    overflow: hidden;
}

main {
    background: #fff;
}


/*** Header ***/

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 30px;
    padding: 0 1.875vw;
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    max-width: 90vw;
    margin: auto;
    padding: 28px 0;
    padding: 1.75vw 0;
}

.header-logo {}

.header-logo-inner {}

.header-logo-inner a {
    display: block;
}

.header-logo-inner a img {
    width: clamp(180px, 17.3125vw, 277px);
    width: clamp(130px, 11.25vw, 180px);
}

.header-contact-navigation {
    flex-grow: 1;
    margin: 4px 0 0;
    margin: 0.25vw 0 0;
}


/*** Header Contact ***/

.header-contact {
    margin: 0 0 17px;
    margin: 0 0 1.063vw;
}

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

.header-contact-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
}

.header-contact-inner a:hover {}

.header-contact-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 0;
    margin: 0 1.25vw 0 0;
    border-radius: 2px;
    border-radius: 0.125vw;
    overflow: hidden;
    color: rgba(var(--secondary-rgb), 1);
}


/*** Header Navigation ***/

.header-navigation {
    max-width: 733px;
    max-width: 45.813vw;
    margin: 0 0 0 auto;
}

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

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

.header-nav > li > a {
    display: block;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.05em;
}

.header-nav > li:hover > a {}
.header-nav li.custom_nav > a{
    position: relative;
    z-index: 0;
}
@keyframes shine {
    0% {
        background-position: -100%;
    }
    50% {
        background-position: 200%;
    }
    100% {
        background-position: -100%;
    }
}
.header-nav li.custom_nav > a:before{
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    right: -15%;
    bottom: -20%;
    background: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    z-index: -1;
}
.header-nav .sub-menu {
    width: 265px;
    width: 16.563vw;
    position: absolute;
    left: -200%;
    right: -200%;
    z-index: 2;
    margin: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transform: translateY(1.875vw);
    transition: var(--default-transition);
    padding: 14px 0 0;
    padding: 0.875vw 0 0;
}

.header-nav li:hover > .sub-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.header-nav .sub-menu .sub-menu {
    top: 0;
    left: 0;
    padding: 0 0 0 2px !important;
    /*    padding: 0 0 0 0.125vw !important;*/
    margin: 0 0 0 100%;
}

.header-nav .sub-menu li {
    background: rgba(255, 255, 255, 0.8);
    margin: 0 0 2px;
    /*    margin: 0 0 0.125vw;*/
    position: relative;
}

.header-nav .sub-menu li::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: var(--default-transition);
}

.header-nav .sub-menu li:hover::before {
    opacity: 1;
}

.header-nav .sub-menu li a {
    display: block;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(var(--primary-rgb), 1);
    text-transform: uppercase;
    text-align: center;
    padding: 17px 15px 17px calc(15px + 0.05em);
    padding: 1.063vw 0.938vw 1.063vw calc(0.938vw + 0.05em);
    position: relative;
    z-index: 1;
}

.header-nav .sub-menu li:hover > a {}


/*** Fixed Header ***/

.header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--default-transition);
    padding: 0 30px;
    padding: 0 1.875vw;
    background: rgba(var(--primary-rgb), 1);
    box-shadow: 7px 11px 13px 0 rgba(var(--primary-rgb), 0.26);
    box-shadow: 0.438vw 0.813vw 0.813vw 0 rgba(var(--primary-rgb), 0.26);
}

.header.fixed::after {
    content: '';
    width: 100%;
    height: 1px;
    height: 0.063vw;
    background: linear-gradient(to right, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}

.header.fixed.show-fixed {
    transform: translateY(0);
    opacity: 1;
}

.header.fixed .header-inner {
    padding: 15px 0;
    padding: 0.938vw 0;
}

.header.fixed .header-logo-inner a img {
    width: 331px;
    width: 86px;
}

.header.fixed .header-contact-navigation {
    margin: 0;
}

.header.fixed .header-nav .sub-menu {
    padding: 37px 0 0;
    padding: 2.313vw 0 0;
}


/*** Fixed Contact & SMIs ***/

.fixed-smis {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    position: fixed;
    top: 50vh;
    right: 28px;
    right: 1.75vw;
    z-index: 100;
    transform: translateY(-50%)
}

.fixed-smis-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.fixed-smis-inner::after {
    content: '';
    width: 1px;
    width: 0.063vw;
    height: 97px;
    height: 6.063vw;
    background: #fff;
    opacity: 0.3;
    transition: var(--default-transition);
}

body[sidebar-active-section="hp-ajm"] .fixed-smis-inner::after,
body[sidebar-active-section="hp-rfs"] .fixed-smis-inner::after,
body[sidebar-active-section="hp-wocs"] .fixed-smis-inner::after,
body[sidebar-active-section="hp-fc"] .fixed-smis-inner::after,
body[sidebar-active-section="inner-page-wrapper"] .fixed-smis-inner::after {
    background: rgba(var(--primary-rgb), 1);
}

.fixed-smis-inner a {
    display: block;
    color: #fff;
    margin: 0 0 35px;
    margin: 0 0 2.188vw;
    text-shadow: 0 2px 3px rgba(0,0,0,.50);
}

body[sidebar-active-section="hp-ajm"] .fixed-smis-inner a, body[sidebar-active-section="hp-rfs"] .fixed-smis-inner a, body[sidebar-active-section="hp-wocs"] .fixed-smis-inner a, body[sidebar-active-section="hp-fc"] .fixed-smis-inner a {
    color: rgba(var(--primary-rgb), 1);
    text-shadow: none;
}

.fixed-smis-inner a:hover {
    color: rgba(var(--secondary-rgb), 1) !important;
}

.fixed-smis-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-size: 1.625vw;
}


/*** Site Title ***/

.site-title {
    display: flex;
}

.site-title span {
    display: flex;
    align-items: center;
    font-family: var(--font-family-default);
    font-size: 18px;
    font-size: 1.125vw;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(var(--primary-rgb), 1);
    text-transform: uppercase;
    margin: 0 0 16px;
    margin: 0 0 1vw;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.site-title.center span {
    justify-content: center;
}

.site-title.light span {
    color: #fff;
}

.site-title span::after {
    content: '';
    width: 70px;
    width: 4.375vw;
    height: 1px;
    height: 0.063vw;
    background: rgba(var(--primary-rgb), 1);
    margin: 0 0 2px 18px;
    margin: 0 0 0.125vw 1.125vw;
}

.site-title.light span::after {
    background: rgba(var(--tertiary-rgb), 1);
}

.site-title h1,
.site-title h2 {
    font-family: var(--font-family-title);
    font-size: 70px;
    font-size: 4.375vw;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-title.center h1,
.site-title.center h2 {
    text-align: center;
}


/*** Site Button ***/

.site-button {
    display: flex;
    max-width: 100%;
}

.site-button a,
.site-button button {
    display: block;
    width: 198px;
    width: 15.375vw;
    height: 52px;
    height: 3.25vw;
    background: transparent;
    border: none;
    appearance: none;
    position: relative;
}

.site-button a::before,
.site-button button::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    border-style: solid;
    border-width: 2px;
    /*    border-width: 0.125vw;*/
    border-image: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    border-image-slice: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.site-button a::after,
.site-button button::after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: var(--default-transition);
}

.site-button a:hover::after,
.site-button button:hover::after {
    opacity: 1;
}

.site-button a span,
.site-button button span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(var(--primary-rgb), 1);
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.1em;
    transition: var(--default-transition);
    position: relative;
    z-index: 2;
}

.site-button a:hover span,
.site-button button:hover span {
    font-weight: 600;
}


/*** Footer ***/

.footer {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 0 30px;
    padding: 0 1.875vw;
}

.footer-inner {
    max-width: 1140px;
    max-width: 71.25vw;
    margin: auto;
    padding: 99px 0 62px;
    padding: 6.188vw 0 3.875vw;
    position: relative;
}

.footer-bg {
    width: calc(100% + calc(100vw - 100%));
    left: calc(calc(-100vw + 100%) / 2);
    background: #000;
}

.footer-bg canvas {
    opacity: 0.25;
}


/*** Footer Logo ***/

.footer-logo {
    position: relative;
    z-index: 1;
}

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

.footer-logo-inner a {
    display: block;
}




/*** Footer Contact ***/

.footer-contact {
    position: relative;
    z-index: 1;
    margin: 28px 0 0;
    margin: 1.75vw 0 0;
}

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

.footer-contact-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-contact-inner a:hover {
    color: rgba(var(--secondary-rgb), 1);
}

.footer-contact-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 0;
    margin: 0 1.25vw 0 0;
    border-radius: 2px;
    border-radius: 0.125vw;
    overflow: hidden;
    color: rgba(var(--secondary-rgb), 1);
}


/*** Footer SMIs ***/

.footer-smis {
    position: relative;
    z-index: 1;
    margin: 34px 0 0;
    margin: 2.125vw 0 0;
}

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

.footer-smis-inner a {
    display: block;
    color: rgba(var(--secondary-rgb), 1);
}

.footer-smis-inner a:not(:last-child) {
    margin: 0 50px 0 0;
    margin: 0 3.125vw 0 0;
}

.footer-smis-inner a:hover {
    color: #fff;
}

.footer-smis-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-size: 1.625vw;
}

.footer-navigation-accessibility-copyright-footer-eho-realtor-mls-logos {
    position: relative;
    z-index: 1;
    margin: 41px 0 0;
    margin: 2.563vw 0 0;
    padding: 38px 0 0;
    padding: 2.375vw 0 0;
}

.footer-navigation-accessibility-copyright-footer-eho-realtor-mls-logos::before {
    content: '';
    width: calc(100% + calc(100vw - 100%));
    height: 1px;
    height: 0.063vw;
    background: rgba(var(--secondary-rgb), 1);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: calc(calc(-100vw + 100%) / 2);
    z-index: 1;
}

.footer-navigation {
    max-width: 733px;
    max-width: 45.813vw;
    margin: auto;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav li {}

.footer-nav li a {
    display: block;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.05em;
}

.footer-nav li:hover a {
    color: rgba(var(--secondary-rgb), 1);
}

.footer-accessibility {
    margin: 30px 0 0;
    margin: 1.875vw 0 0;
}

.footer-accessibility p {
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.733;
    color: #fff;
    text-align: center;
    padding: 0 0 0 0.05em;
}

.footer-accessibility p span {
    font-weight: 700;
}

.footer-accessibility p a {
    font-weight: 700;
    color: #fff;
}

.footer-accessibility p a:hover {
    color: rgba(var(--secondary-rgb), 1);
}

.footer-copyright {
    margin: 11px 0 0;
    margin: 0.688vw 0 0;
}

.footer-copyright p {
    font-size: 13px;
    font-size: 0.813vw;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.733;
    color: #fff;
    text-align: center;
    padding: 0 0 0 0.05em;
}

.footer-copyright p span {
    font-weight: 700;
}

.footer-copyright p a {
    color: #fff;
}

.footer-copyright p a:hover {
    color: rgba(var(--secondary-rgb), 1);
}

.footer-eho-realtor-mls-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 27px 0 0;
    margin: 1.688vw 0 0;
}

.footer-eho-realtor-mls-logos img {
    width: 118px;
    width: 7.375vw;
}


/*** Fixed Popup ***/

.contact-popup {
    width: 100%;
    max-width: 444px;
    max-width: 22.2vw;
    background: #fff;
    position: fixed;
    bottom: 62px;
    bottom: 1.375vw;
    right: 80px;
    right: 1vw;
    z-index: 1000;
    box-shadow: 7px 11px 13px 0 rgba(var(--primary-rgb), 0.26);
    box-shadow: 0.438vw 0.688vw 0.813vw 0 rgba(var(--primary-rgb), 0.26);
    animation: bounce-in 1s ease;
    animation-fill-mode: both;
    animation-delay: 2s;
}

.contact-popup.inactive {
    animation: bounce-out 1s ease;
    animation-fill-mode: both;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce-out {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(.9);
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.contact-popup-inner {
    position: relative;
    padding: 35px 30px 51px;
    padding: 2.188vw 1.875vw 3.188vw;
}

.contact-popup-inner::after {
    content: '';
    width: 100%;
    height: 11px;
    height: 0.688vw;
    background: linear-gradient(to right, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.contact-popup-inner .contact-popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-size: 1vw;
    color: rgba(var(--secondary-rgb), 1);
    position: absolute;
    top: 20px;
    top: 1.25vw;
    right: 20px;
    right: 1.25vw;
    z-index: 1;
    cursor: pointer;
    transition: var(--default-transition);
}

.contact-popup-inner .contact-popup-close:hover {
    transform: rotate(90deg);
}

.contact-popup-inner p.heading {
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.533;
    color: #1c1c1c;
    text-align: center;
    padding: 0 0 0 0.05em;
    margin: 0 0 21px;
    margin: 0 0 1.313vw;
}

.contact-popup-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(var(--tertiary-rgb), 1);
}

.contact-popup-inner a:hover {
    color: rgba(var(--secondary-rgb), 1);
}

.contact-popup-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 0;
    margin: 0 1.25vw 0 0;
    border-radius: 2px;
    border-radius: 0.125vw;
    overflow: hidden;
    color: rgba(var(--tertiary-rgb), 1);
}

.contact-popup-inner p:not(.heading) {
    font-size: 13px;
    font-size: 0.813vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.538;
    color: #1c1c1c;
    text-align: center;
    padding: 0 0 0 0.05em;
    opacity: 0.56;
    margin: 20px 0 0;
    margin: 1.25vw 0 0;
}


/*******************************************************
 *
 * IP Styles
 *
 *******************************************************/

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

.ip-banner:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ip-banner:after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 42, 73, 0) 0%, rgba(7, 42, 73, 1) 100%);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    min-height: 15.625vw;
    background-color: #000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.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;
    font-size: 2vw;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

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


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    min-height: 31.250vw;
    margin: 30px 0;
    margin: 1.875vw 0;
}


/** 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: 0 15px;
    padding: 0 0.938vw;
}

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


/* Adjust line height of page elements */

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


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

#content .entry-title,
#content .archive-title {
/*    display: inline-block;*/
    font-family: var(--font-family-title);
    font-size: 90px;
    font-size: 5.625vw;
    font-weight: 400;
    line-height: 1;
    background: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 30px 0;
    margin: 1.875vw 0;
    text-align: center;
}


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

#content .archive-subtitle {}


/* Others */

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

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

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

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

#inner-page-wrapper {
    margin-bottom: 0;
}

#inner-page-wrapper > .container {
    width: 1170px;
    width: 73.125vw;
    max-width: 100%;
    padding: 0 15px;
    padding: 0 0.938vw;
}
.footer-logo-inner a img{
    filter: brightness(0) invert(1);
}

.frame-canvas {
    position: relative;
    max-width: 640px;
}

.frame-center {
    margin: 0 auto;
}

.frame-canvas iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.single-aios-communities #content .community-title {
    display: block;
}

#content .ip-img-buttons{}
#content .ip-img-button{}
#content .ip-img-button a{
    display: block;
    position: relative;
}
#content .ip-img-button a .ip-img-button_photo{
    background: linear-gradient(142deg, rgba(var(--tertiary-rgb), 1) 0%, rgba(var(--secondary-rgb), 1) 50%, rgba(var(--tertiary-rgb), 1) 100%);
    position: relative;
    z-index: 0;
}
#content .ip-img-button a .ip-img-button_photo img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 800/533;
    opacity: 1;
}
#content .ip-img-button a:hover .ip-img-button_photo img{
    opacity: 0.6;
}
#content .ip-img-button a .ip-img-button_label{
    font-family: var(--font-family-title);
    font-size: 1.3em;
    text-align: center;
    margin: 20px 0 0;
}

ul.sitemap-list li.page_item.page-item--3,
ul.sitemap-list li.page_item.page-item--1 {
    display: none;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    right: auto;
    width: auto;
    font-size: 11px;
    line-height: 1;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    font-size: 12px;
    line-height: 1;
    margin: 10px auto 0;
}

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


body .aios-roadmaps-default-wrapper .aios-roadmaps-default-headings {
    justify-content: center;
}


.safari-true .footer-bg canvas,
.safari-true .fc-bg canvas,
.safari-true .sm-bg canvas,
.safari-true .cis-bg canvas{
    background-attachment: scroll;
}

/*
.cash-offer-wrap .site-title > div {
	width: 100%;
	text-align: center;
}
*/

.cash-offer-wrap .site-title h1 span {
	max-width: 390px;
	text-align: left;
	position: relative;
	margin: 0 auto 15px;
}

.cash-offer-wrap .ajm-button a {
	display: block;
	margin: 0 auto 80px;
}

.cash-offer-form input {
	max-width: 1170px;
	width: 100%;
	display: block;
	border: 0 none;
	background: #f9f9f9;
	padding: 15px 20px;
	font-size: 18px;
	margin: 0 auto;
}

.cash-offer-wrapper .ai-default-cf7wrap input, .cash-offer-wrapper .ai-default-cf7wrap select {
  border: 0 none;
  font-size: 16px;
  padding: 10px !important;
  height: auto;
  background: #f9f9f9;
}

.cash-offer-wrapper .ai-contact-wrap span {
	font-size: 18px;
	font-weight: 400;
}

.gyco-flex {
	display: flex;
	padding-left: 10px;
}

.gyco-flex > span {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.gyco-flex .ai-default-cf7wrap > div > span {
	display: flex !important;
	align-items: center;
}

.cash-offer-wrapper strong {
	font-size: 20px;
	color: #000;
	margin: 10px 0 10px;
	display: block;
}

.cash-offer-wrapper .wpcf7-submit {
	max-width: 200px;
	margin: 50px 0 !important;
}

.cash-offer-wrapper {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.aios-home-valuation-form-header {
    font-weight: 500;
    text-transform: uppercase;
    padding: 30px 0 10px;
    color: #fff;
    font-size: 1.4em;
}

body .aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row .aios-home-valuation-form-col select,
body .aios-home-valuation-step-wrap .aios-home-valuation-form .aios-home-valuation-form-row .aios-home-valuation-form-col input{
    font-size: 14px;
}











.header.mh .header-navigation .menu-primary-menu-container {
    display: flex;
    justify-content: space-between;
    justify-content: space-around;
    align-items: flex-start;
}


header.header.mh .header-nav > li {
    margin: 0 clamp(16px, 2.625vw , 42px);
}

header.header.mh .header-nav {
    padding-top: 34px;
}

header.header.mh .header-contact {
    position: absolute;
    right: 0;
    margin-right: clamp(16px, 2.625vw , 42px);
}

header.header.mh .header-inner {
    position: relative;
}





header.header.mh .header-navigation {
    max-width: 100%;
}




.footer-logo-inner a img {
    width: 200px !important;
    filter: none;
}

.header-contact-inner > span {
    margin-right: 30px;
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */

@media only screen and (min-width: 992px) {
    body[class*="single-aios-rm"] #content .entry-title{
        font-size: 3.625vw;
    }

    .footer-logo-inner a img {
        width: min(40.917vw,491px);
    }
    .contact-popup-inner {
        padding: 3.188vw 1.2vw 2.188vw;
    }
}
@media only screen and (max-width: 1199px) {
    body .aiosCommunitiesEndeavor__content h3 {
        font-size: 15px;
    }
    .footer-bg canvas,
    .fc-bg canvas,
    .sm-bg canvas,
    .cis-bg canvas{
        background-attachment: scroll;
    }
}


/* iPad(portrait) | Galaxy Tab 4(portrait)  */

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












  header.header.mh .header-contact-navigation {
      display: block !important;!i;!;
  }


  header.header.mh .header-nav {
      display: none !important;
  }

  header.header.mh .header-contact {
      display: none;
  }

  header.header.mh .header-logo-inner a img {
      width: 100%;
      max-width: 150px;
  }

  .header.mh .header-navigation .menu-primary-menu-container {
      justify-content: center;
  }













    /* 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%;
    }
    /*******************************************************
 *
 * Global Styles
 *
 *******************************************************/
    html {}
    body {
        font-size: 15px;
    }
    ::-webkit-scrollbar {}
    *:focus {}
    a,
    a:hover,
    a:focus {}
    a:hover {}
    a,
    input,
    button,
    img,
    canvas {}
    .img-wrapper {}
    .img-wrapper canvas {}
    .img-wrapper img {}
    .bg-wrapper {}
    .bg-wrapper canvas {}
    #main-wrapper {
        padding: 52px 0 0;
    }
    main {}
    /*** Header ***/
    .header {
        position: relative;
        padding: 0 30px;
        background: #fff;
    }
    .header-inner {
        max-width: 720px;
        padding: 30px 0;
    }
    .header-logo {}
    .header-logo-inner {}
    .header-logo-inner a {}
    .header-logo-inner a img {
        width: 381px;
        filter: none;
    }
    .header-contact-navigation {
        margin: 4px 0 0;
    }
    /*** Header Contact ***/
    .header-contact {
        margin: 0 0 17px;
    }
    .header-contact-inner {}
    .header-contact-inner a {
        font-size: 15px;
    }
    .header-contact-inner a:hover {}
    .header-contact-inner a i {
        margin: 0 20px 0 0;
        border-radius: 2px;
    }
    /*** Header Navigation ***/
    .header-navigation {
        max-width: 733px;
    }
    .header-nav {}
    .header-nav > li {}
    .header-nav > li > a {
        font-size: 15px;
    }
    .header-nav > li:hover > a {}
    .header-nav .sub-menu {
        width: 265px;
        transform: translateY(30px);
        padding: 14px 0 0;
    }
    .header-nav li:hover > .sub-menu {}
    .header-nav .sub-menu .sub-menu {
        padding: 0 0 0 2px !important;
    }
    .header-nav .sub-menu li {
        margin: 0 0 2px;
    }
    .header-nav .sub-menu li::before {}
    .header-nav .sub-menu li:hover::before {}
    .header-nav .sub-menu li a {
        font-size: 15px;
        padding: 17px 15px 17px calc(15px + 0.05em);
    }
    .header-nav .sub-menu li:hover > a {}
    /*** Fixed Header ***/
    .header.fixed {
        padding: 0 30px;
        box-shadow: 7px 11px 13px 0 rgba(var(--primary-rgb), 0.26);
    }
    .header.fixed::after {
        height: 1px;
    }
    .header.fixed.show-fixed {}
    .header.fixed .header-inner {
        padding: 15px 0;
    }
    .header.fixed .header-logo-inner a img {
        width: 331px;
    }
    .header.fixed .header-contact-navigation {}
    .header.fixed .header-nav .sub-menu {
        padding: 37px 0 0;
    }
    /*** Fixed Contact & SMIs ***/
    .fixed-smis {
        right: 28px;
    }
    .fixed-smis-inner {}
    .fixed-smis-inner::after {
        width: 1px;
        height: 97px;
    }
    body[sidebar-active-section="hp-ajm"] .fixed-smis-inner::after,
    body[sidebar-active-section="hp-rfs"] .fixed-smis-inner::after,
    body[sidebar-active-section="hp-wocs"] .fixed-smis-inner::after,
    body[sidebar-active-section="hp-fc"] .fixed-smis-inner::after,
    body[sidebar-active-section="inner-page-wrapper"] .fixed-smis-inner::after {}
    .fixed-smis-inner a {
        margin: 0 0 35px;
    }
    body[sidebar-active-section="hp-ajm"] .fixed-smis-inner a,
    body[sidebar-active-section="hp-rfs"] .fixed-smis-inner a,
    body[sidebar-active-section="hp-wocs"] .fixed-smis-inner a,
    body[sidebar-active-section="hp-fc"] .fixed-smis-inner a,
    body[sidebar-active-section="inner-page-wrapper"] .fixed-smis-inner a {}
    .fixed-smis-inner a:hover {}
    .fixed-smis-inner a i {
        font-size: 26px;
    }
    /*** Site Title ***/
    .site-title {
        justify-content: center;
    }
    .site-title span {
        font-size: 18px;
        margin: 0 0 16px;
        justify-content: center;
    }
    .site-title.center span {}
    .site-title.light span {}
    .site-title span::after {
        width: 70px;
        height: 1px;
        margin: 0 0 2px 18px;
    }
    .site-title.light span::after {}
    .site-title h2 {
        font-size: 70px;
        text-align: center;
    }
    .site-title.center h2 {}
    /*** Site Button ***/
    .site-button {
        justify-content: center;
    }
    .site-button a,
    .site-button button {
        width: 198px;
        height: 52px;
    }
    .site-button a::before,
    .site-button button::before {
        border-width: 2px;
    }
    .site-button a::after,
    .site-button button::after {}
    .site-button a:hover::after,
    .site-button button:hover::after {}
    .site-button a span,
    .site-button button span {
        font-size: 14px;
    }
    .site-button a:hover span,
    .site-button button:hover span {}
    /*** Footer ***/
    .footer {
        padding: 0 30px;
    }
    .footer-inner {
        max-width: 720px;
        padding: 90px 0;
    }
    .footer-bg {}
    .footer-bg canvas {}
    /*** Footer Logo ***/
    .footer-logo {}
    .footer-logo-inner {}
    .footer-logo-inner a {}
    .footer-logo-inner a img {
        width: 400px;
    }
    /*** Footer Contact ***/
    .footer-contact {
        margin: 30px 0 0;
    }
    .footer-contact-inner {}
    .footer-contact-inner a {
        font-size: 15px;
    }
    .footer-contact-inner a:hover {}
    .footer-contact-inner a i {
        margin: 0 20px 0 0;
        border-radius: 2px;
    }
    /*** Footer SMIs ***/
    .footer-smis {
        margin: 30px 0 0;
    }
    .footer-smis-inner {}
    .footer-smis-inner a {}
    .footer-smis-inner a:not(:last-child) {
        margin: 0 50px 0 0;
    }
    .footer-smis-inner a:hover {}
    .footer-smis-inner a i {
        font-size: 26px;
    }
    .footer-navigation-accessibility-copyright-footer-eho-realtor-mls-logos {
        margin: 30px 0 0;
        padding: 30px 0 0;
    }
    .footer-navigation-accessibility-copyright-footer-eho-realtor-mls-logos::before {
        height: 1px;
    }
    .footer-navigation {
        max-width: 733px;
    }
    .footer-nav {}
    .footer-nav li {}
    .footer-nav li a {
        font-size: 15px;
    }
    .footer-nav li:hover a {}
    .footer-accessibility {
        margin: 30px 0 0;
    }
    .footer-accessibility p {
        font-size: 15px;
    }
    .footer-accessibility p span {}
    .footer-accessibility p a {}
    .footer-accessibility p a:hover {}
    .footer-copyright {
        margin: 30px 0 0;
    }
    .footer-copyright p {
        font-size: 13px;
    }
    .footer-copyright p span {}
    .footer-copyright p a {}
    .footer-copyright p a:hover {}
    .footer-eho-realtor-mls-logos {
        margin: 30px 0 0;
    }
    .footer-eho-realtor-mls-logos img {
        width: 118px;
    }
    /*** Fixed Popup ***/
    .contact-popup {
        max-width: 444px;
        bottom: 62px;
        right: 80px;
        box-shadow: 7px 11px 13px 0 rgba(var(--primary-rgb), 0.26);
    }
    .contact-popup.inactive {}
    .contact-popup-inner {
        padding: 35px 30px 51px;
    }
    .contact-popup-inner::after {
        height: 11px;
    }
    .contact-popup-inner .contact-popup-close {
        font-size: 16px;
        top: 20px;
        right: 20px;
    }
    .contact-popup-inner .contact-popup-close:hover {}
    .contact-popup-inner p.heading {
        font-size: 15px;
        margin: 0 0 21px;
    }
    .contact-popup-inner a {
        font-size: 15px;
    }
    .contact-popup-inner a:hover {}
    .contact-popup-inner a i {
        margin: 0 20px 0 0;
        border-radius: 2px;
    }
    .contact-popup-inner p:not(.heading) {
        font-size: 13px;
        margin: 20px 0 0;
    }
    /*******************************************************
 *
 * IP Styles
 *
 *******************************************************/
    .ip-banner {}
    .ip-banner:before {}
    .ip-banner:after {}
    .ip-banner canvas {
        min-height: 250px;
    }
    .ip-banner .container {}
    .ip-banner h1 {
        font-size: 32px;
    }
    .ip-banner h1 span {
        font-size: 24px;
    }
    /* Adjust minimum height of page area */
    #content-sidebar,
    #content-full {
        min-height: 500px;
        margin: 30px 0;
    }
    /** Adjust width of content columns **/
    #content-sidebar #content {}
    #content-full #content {}
    /* Adjust width of sidebar */
    .sidebar {}
    /* fullwidth template */
    .page-template-template-fullwidth #content {
        padding: 0 15px;
    }
    .page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
        margin: 0 -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 {}
    /* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
    #content .entry-title,
    #content .archive-title {
        font-size: 60px;
        margin: 30px 0;
    }
    /* Styles for category/archive/search/etc subheadings (h2) */
    #content .archive-subtitle {}
    /* Others */
    #pojo-a11y-toolbar {}
    #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {}
    #pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
    #pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {}
    button:focus-visible,
    a:focus-visible {
        outline-width: 5px !important;
    }
    #inner-page-wrapper {}
    #inner-page-wrapper > .container {
        width: 1170px;
        padding: 0 15px;
    }

    body #content .aios-roadmaps-default-wrapper .aios-roadmaps-default-content.popup-video a {
        margin: 0 auto 10px;
        width: 100%;
        float: none;
        padding: 0;
        max-width: 768px;
    }

    body #content .aios-roadmaps-default-wrapper .aios-roadmaps-default-content.popup-video a::after {
        width: 100%;
        height: 100%;
        left: 0;
    }

    body #content .aios-roadmaps-default-wrapper .aios-roadmaps-default-content.popup-video a i {
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        right: auto;
        margin: 0 auto;
    }

    body .aios-roadmaps-default-wrapper .aios-roadmaps-default-content img {
        margin: 0 auto 10px;
        max-width: 768px;
    }

    body .aiosCommunitiesEndeavor__content h3 {
        font-size: 16px;
    }

    body.single-aios-communities #content .community-featured-image img {
        max-width: 100%!important;
    }

    body.page-id-27 .calendly-inline-widget {
        min-width: 100%!important;
    }
    #pojo-a11y-toolbar{
        display: none;
    }
}


/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */

@media only screen and (max-width: 767px) {
    #content .entry-title, #content .archive-title {
        font-size: 45px;
    }

    .ip-banner .container {
        width: 100%;
    }
    .header {
        padding: 0 15px;
    }
    .site-title h2 {
        font-size: 60px !important;
    }
    .footer {
        padding: 0 15px;
    }
    .footer-nav {
        flex-flow: column;
    }
    .footer-nav li:not(:last-child) {
        /* margin: 0 0 10px; */
    }

    .footer-nav li a {
        padding: 15px 0;
    }
}


/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */

@media only screen and (max-width: 480px) {
     #content .entry-title, #content .archive-title {
        font-size: 35px;
    }

    .site-title span::after {
        display: none;
    }

    .site-title span {
        font-size: 16px;
    }
    .site-title h2 {
        font-size: 35px !important;
    }
    .footer-smis-inner a:not(:last-child) {
        margin: 0 30px 0 0;
    }
}

.single-aios-communities .community-wrap .wpcf7 {
    clear: left;
}
