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

:root {
    /** Font default */
    --font-family-default: 'Poppins', sans-serif;
    --font-family-title: 'Poppins', sans-serif;
    --font-family-helvetica: 'Helvetica';
    --font-color-default: #000;
    --font-color-title: #000;
    /** Use for input, button, and any other element */
    --primary: #63110b;
    --secondary: #000;
    --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: 1vw;
    font-weight: 400;
    color: #000;
    line-height: normal;
    background: #fff;
    margin: 0;
}

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

*:focus {
    outline: none !important;
}

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

a:hover {
    color: var(--primary);
}

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

.img-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.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 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

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

.bg-wrapper.fixed canvas {
    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 15px;
    padding: 0 0.938vw;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1480px;
    max-width: 92.5vw;
    margin: auto;
    padding: 36px 0;
    padding: 2.25vw 0;
}

.header-logo {}

.header-logo-inner {}

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

.header-logo-inner a::before {
    content: '';
    width: 1px;
    width: 0.063vw;
    height: 80px;
    height: 5vw;
    background: #fff;
    margin: 0 19px;
    margin: 0 1.188vw;
}

.header-logo-inner a img {
    width: 124px;
    width: 7.75vw;
    order: -1;
}

.header-logo-inner a span {
    display: block;
    font-family: var(--font-family-helvetica);
    font-size: 14.27px;
    font-size: 0.892vw;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
}


/*** Header Navigation ***/

.header-navigation {
    flex-grow: 1;
    max-width: 888px;
    max-width: 55.5vw;
}

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

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

.header-nav > li::after {
    content: '';
    width: 100%;
    height: 1px;
    height: 0.063vw;
    background: #fff;
    opacity: 0.5;
    position: absolute;
    bottom: -5px;
    bottom: -0.313vw;
    left: 0;
    transform: scaleX(0);
    opacity: 0;
    transition: var(--default-transition);
}

.header-nav > li:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.header-nav > li > a {
    display: block;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.08em;
}

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

.header-nav .sub-menu {
    width: 200px;
    width: 12.5vw;
    position: absolute;
    left: -200%;
    right: -200%;
    z-index: 1;
    margin: auto;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transform: translateY(1.875vw);
    transition: var(--default-transition);
    padding: 30px 0 0;
    padding: 1.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 !important;
    margin: 0 0 0 calc(100% + 1px);
    margin: 0 0 0 calc(100% + 0.063vw);
}

.header-nav .sub-menu > li {
    background: #000;
    margin: 0 0 1px;
    margin: 0 0 0.063vw;
    transition: var(--default-transition);
    position: relative;
}

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

.header-nav .sub-menu li a {
    display: block;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 10px 10px calc(10px + 0.08em);
    padding: 0.625vw 0.625vw 0.625vw calc(0.625vw + 0.08em);
}

.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 15px;
    padding: 0 0.938vw;
    background: var(--primary);
}

.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::before {
    height: 57px;
    height: 3.563vw;
    margin: 0 14px;
    margin: 0 0.875vw;
}

.header.fixed .header-logo-inner a img {
    width: 87px;
    width: 5.438vw;
}

.header.fixed .header-logo-inner a span {
    font-size: 14px;
    font-size: 0.875vw;
}

.header.fixed .header-nav .sub-menu {
    padding: 34px 0 0;
    padding: 2.125vw 0 0;
}


/*** Site Title ***/

.site-title {
    display: flex;
}

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

.site-title > div {
    position: relative;
    padding: 0 0 0 30px;
    padding: 0 0 0 1.875vw;
}

.site-title > div::before {
    content: '';
    width: 79px;
    width: 4.938vw;
    height: 215px;
    height: 13.438vw;
    background: linear-gradient(to bottom, rgba(221, 221, 221, 1) 0%, rgba(221, 221, 221, 0) 100%);
    position: absolute;
    top: -52px;
    top: -3.25vw;
    left: 0;
    z-index: 1;
}

.site-title h2 {
    font-size: 60px;
    font-size: 3.75vw;
    font-weight: 600;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

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

.site-title h2 span {
    display: block;
    font-size: 30px;
    font-size: 1.875vw;
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--primary);
    text-transform: uppercase;
    margin: 0 0 5px;
    margin: 0 0 0.313vw;
}

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


/*** Site Button ***/

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

.site-button.center {
    justify-content: center;
}

.site-button a,
.site-button button,
.site-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #000;
    text-align: center;
    text-transform: uppercase;
}

.site-button.light a,
.site-button.light button,
.site-button.light span {
    color: #fff;
}

.site-button a:hover,
.site-button button:hover,
.site-button span:hover {}

.site-button a i,
.site-button button i,
.site-button span i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-size: 0.625vw;
    font-weight: 700;
    margin: 0 0 0 15px;
    margin: 0 0 0 0.938vw;
}

.site-button a:hover i,
.site-button button:hover i,
.site-button span:hover i {
    animation: animate 2s infinite;
}

@keyframes animate {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-10px);
        transform: translateX(-0.625vw);
    }
    60% {
        transform: translateX(-5px);
        transform: translateX(-0.313vw);
    }
}


/*** Footer ***/

.footer {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    padding: 0 0.938vw;
    background: var(--primary);
}

.footer::before {
    content: '';
    width: 1103px;
    width: 68.938vw;
    height: 720px;
    height: 45vw;
    background-image: url('../images/watermark.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.05;
    position: absolute;
    top: 0;
    right: -299px;
    right: -18.688vw;
    z-index: 1;
}

.footer-inner {
    max-width: 1140px;
    max-width: 71.25vw;
    margin: auto;
    padding: 90px 0 25px;
    padding: 5.625vw 0 1.563vw;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin: 0 0 44px;
    margin: 0 0 2.75vw;
}

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

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

.footer-logo-inner a::before {
    content: '';
    width: 1px;
    width: 0.063vw;
    height: 77px;
    height: 4.813vw;
    background: #fff;
    margin: 0 19px;
    margin: 0 1.188vw;
}

.footer-logo-inner a img {
    width: 118px;
    width: 7.375vw;
    order: -1;
}

.footer-logo-inner a span {
    display: block;
    font-family: var(--font-family-helvetica);
    font-size: 13.7px;
    font-size: 0.856vw;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
}

.footer-contact-smi-navigation {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.footer-contact-smi {
    margin: 10px 0 0;
    margin: 0.625vw 0 0;
}

.footer-contact {}

.footer-contact-inner {}

.footer-contact-inner ul {
    display: flex;
    flex-flow: row wrap;
}

.footer-contact-inner ul:nth-child(2) {
    margin: 0 0 12px;
    margin: 0 0 0.75vw;
}

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

.footer-contact-inner ul li:not(:last-child)::after {
    content: '';
    width: 1px;
    width: 0.063vw;
    height: 14px;
    height: 0.875vw;
    background: #fff;
    margin: 0 18px;
    margin: 0 1.125vw;
}

.footer-contact-inner ul li a {
    display: block;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.714;
    color: #fff;
}

.footer-contact-inner ul li a:hover {
    opacity: 0.5;
}

.footer-smi,
.ihf-details-template .footer-smi {
    margin: 14px 0 0;
    margin: 0.875vw 0 0;
}

.footer-smi-inner {
    display: flex;
    flex-flow: row wrap;
}

.footer-smi-inner a {
    display: block;
    color: #fff;
}

.footer-smi-inner a:hover {
    opacity: 0.5;
}

.footer-smi-inner a:not(:last-child) {
    margin: 0 24px 0 0;
    margin: 0 1.5vw 0 0;
}

.footer-smi-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-size: 1.063vw;
}

.footer-navigation {}

.footer-nav {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.footer-nav li {}

.footer-nav li:not(:last-child) {
    margin: 0 0 1px;
    margin: 0 0 0.063vw;
}

.footer-nav li a {
    display: block;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.08em;
}

.footer-nav li:hover a {
    opacity: 0.5;
}

.footer-copyright-eho-realtor-mls-logos {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright-eho-realtor-mls-logos::before {
    content: '';
    width: 100%;
    height: 1px;
    height: 0.063vw;
    background: #fff;
    opacity: 0.2;
    margin: 37px 0 24px;
    margin: 2.313vw 0 1.5vw;
}

.footer-copyright {}

.footer-copyright p {
    font-size: 12px;
    font-size: 0.75vw;
    font-weight: 400;
    line-height: 2.083;
    color: #e0e0e0;
}

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

.footer-copyright p a:hover {
    opacity: 0.5;
}

.footer-eho-realtor-mls-logos {}

.footer-eho-realtor-mls-logos img {
    width: 113px;
    width: 7.063vw;
}

.footer-contact-disclaimer {
    color: #fff;
    font-size: 0.875vw;
    margin-top: 40px;
}

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

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

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

.ip-banner:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 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: 20px 0 0;
    margin: 1.250vw 0 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 {
    font-size: 60px;
    font-size: 3.75vw;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
    text-transform: uppercase;
}


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

#content .archive-subtitle {}


/* Others */

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

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

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

#inner-page-wrapper {
    margin: 0;
    padding: 0 0 30px;
    padding: 0 0 1.875vw;
}

#inner-page-wrapper > .container {
    width: 1170px;
    width: 73.125vw;
    max-width: 100%;
    padding: 0 15px;
    padding: 0 0.938vw;
}

.ihf-results-template #inner-page-wrapper > .container, .aios-listings-template-default #inner-page-wrapper > .container {
    width: 100% !important;
}

#ai-minimalist-testimonials-wrap .aios-testimonials-content .addtoany_share_save_container {
    display: none;
}

.testi-page-button {
    justify-content: center;
}
.listings-seller-rep.aos-init.aos-animate {
    display: none !important;
}
.fp-button.site-button.bottom.aos-init.aos-animate {
    width: 100%;
    text-align: center;
}
.fp-button.site-button.bottom.aos-init.aos-animate a {
    width: 100%;
   
}

#inner-page-wrapper #breadcrumbs a,
#inner-page-wrapper .entry-content a {
    color: inherit;
}
#inner-page-wrapper #breadcrumbs a:hover,
#inner-page-wrapper .entry-content a:hover {
    color: var(--primary);
}

.post-page-about .aios-about-inner .aios-about-form span.wpcf7-not-valid-tip,
.post-page-contact-us .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form span.wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
}
.post-page-contact-us .aios-cu-bottom {
    max-width: 1026px;
    margin: 0 auto;
}
.post-page-contact-us .aios-cu-inner .aios-cu-map {
    margin-left: calc((100vw - 1026px) / -2);
    margin-right: calc((100vw - 1026px) / -2);
}
.post-page-contact-us .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact em {
    min-width: 22px;
    display: inline-block;
    margin-right: 3px;
}
.post-page-contact-us .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-contact span span.info {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
}

.post-page-testimonials .ai-minimalist-testimonials-pagination ul li span.current,
.post-page-communities .aios-communities-royale .ai-communities-pagination ul li span.current {
    color: var(--primary);
}

.listing-module-page #listings-results .listings-sort .sort-dropdown button:after {
    display: none;
}
.page-id-2409 #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}
.post-page-communities .aios-communities-royale .ai-communities-pagination {
    width: 100%;
}

#ihf-main-container #areaPickerClearAll .glyphicon {
    color: #ffffff !important;
}
.page-id-0.aios-custom-ihomefinder-results-template #content-full .entry-title,
.single-aios-communities.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100%;
    padding: 0;
}
#listings-details .listings-hero-single::before {
    width: 100%;
    height: 30%;
    content: '';
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    pointer-events: none;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0.4;
}
body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    width: auto;
    font-size: 12px;
    right: auto;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
    width: auto;
    position: absolute;
}
.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

.aios-custom-ihomefinder-printable-template #inner-page-wrapper {
    padding: 0;
}

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

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

.ihf-results-template .ip-banner > .container,
.ihf-results-template #content #breadcrumbs {
    width: 100%;
}

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

.ihf-details-template .wpcf7-not-valid-tip {
    font-size: 12px;
    right: auto;
}

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

.ihf-details-template #listings-details .listings-form .wpcf7-not-valid-tip {
  font-size: 12px;
  left: auto;
}

.ihf-details-template #listings-details .listings-form .wpcf7-spinner {
  position: absolute;
  right: 0%;
  top: 105%;
  margin: 1em 0.5em 0 0;
}

#content .aios-communities-royale .ai-communities-pagination {
    width: 100%;
}

#content .aios-communities-royale .ai-communities-pagination ul li span,
#content .aios-communities-royale .ai-communities-pagination ul li .current {
    color: var(--primary);
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-content img {
    height: auto;
}

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

@media only screen and (max-width: 1199px) {
    .post-page-contact-us .aios-cu-inner .aios-cu-map {
        margin-left: 0;
        margin-right: 0;
    }
}


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

@media only screen and (max-width: 991px) {
    /* 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: 16px;
    }
    body::-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 {}
    .bg-wrapper.fixed canvas {}
    #main-wrapper {
        padding: 52px 0 0;
    }
    main {}
    /*** Header ***/
    .header {
        position: relative;
        padding: 0 15px;
        background: var(--primary);
    }
    .header-inner {
        justify-content: center;
        max-width: 720px;
        padding: 40px 0;
    }
    .header-logo {}
    .header-logo-inner {}
    .header-logo-inner a {}
    .header-logo-inner a::before {
        width: 1px;
        height: 80px;
        margin: 0 19px;
    }
    .header-logo-inner a img {
        width: 124px;
    }
    .header-logo-inner a span {
        font-size: 14.27px;
    }
    /*** Header Navigation ***/
    .header-navigation {
        max-width: 888px;
    }
    .header-nav {}
    .header-nav > li {}
    .header-nav > li::after {
        height: 1px;
        bottom: -5px;
    }
    .header-nav > li:hover::after {}
    .header-nav > li > a {
        font-size: 14px;
    }
    .header-nav > li:hover > a {}
    .header-nav .sub-menu {
        width: 200px;
        transform: translateY(30px);
        padding: 30px 0 0;
    }
    .header-nav li:hover > .sub-menu {}
    .header-nav .sub-menu .sub-menu {
        margin: 0 0 0 calc(100% + 1px);
    }
    .header-nav .sub-menu > li {
        margin: 0 0 1px;
    }
    .header-nav .sub-menu > li:hover {}
    .header-nav .sub-menu li a {
        font-size: 14px;
        padding: 10px 10px 10px calc(10px + 0.08em);
    }
    .header-nav .sub-menu > li:hover > a {}
    /*** Fixed Header ***/
    .header.fixed {
        padding: 0 15px;
    }
    .header.fixed.show-fixed {}
    .header.fixed .header-inner {
        padding: 15px 0;
    }
    .header.fixed .header-logo-inner a::before {
        height: 57px;
        margin: 0 14px;
    }
    .header.fixed .header-logo-inner a img {
        width: 87px;
    }
    .header.fixed .header-logo-inner a span {
        font-size: 14px;
    }
    .header.fixed .header-nav .sub-menu {
        padding: 34px 0 0;
    }
    /*** Site Title ***/
    .site-title {
        justify-content: center;
    }
    .site-title.center {}
    .site-title > div {
        padding: 0;
    }
    .site-title > div::before {
        width: 79px;
        height: 215px;
        top: -52px;
        display: none;
    }
    .site-title h2 {
        font-size: 60px;
        text-align: center;
    }
    .site-title.light h2 {}
    .site-title h2 span {
        font-size: 30px;
        margin: 0 0 5px;
        padding: 0 0 0 0.5em;
    }
    .site-title.light h2 span {}
    /*** Site Button ***/
    .site-button {
        justify-content: center;
    }
    .site-button.center {}
    .site-button a,
    .site-button button,
    .site-button span {
        font-size: 14px;
    }
    .site-button.light a,
    .site-button.light button,
    .site-button.light span {}
    .site-button a:hover,
    .site-button button:hover,
    .site-button span:hover {}
    .site-button a i,
    .site-button button i,
    .site-button span i {
        font-size: 10px;
        margin: 0 0 0 15px;
    }
    .site-button a:hover i,
    .site-button button:hover i,
    .site-button span:hover i {}
    @keyframes animate {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(0);
        }
        40% {
            transform: translateX(-10px);
        }
        60% {
            transform: translateX(-5px);
        }
    }
    /*** Footer ***/
    .footer {
        padding: 0 15px;
    }
    .footer::before {
        width: 1103px;
        height: 720px;
        right: -299px;
    }
    .footer-inner {
        max-width: 720px;
        padding: 90px 0 40px;
    }
    .footer-logo {
        margin: 0 0 40px;
    }
    .footer-logo-inner {
        justify-content: center;
    }
    .footer-logo-inner a {}
    .footer-logo-inner a::before {
        width: 1px;
        height: 77px;
        margin: 0 19px;
    }
    .footer-logo-inner a img {
        width: 118px;
    }
    .footer-logo-inner a span {
        font-size: 13.7px;
    }
    .footer-contact-smi-navigation {}
    .footer-contact-smi {
        margin: 0;
    }
    .footer-contact {}
    .footer-contact-inner {}
    .footer-contact-inner ul {}
    .footer-contact-inner ul:nth-child(2) {
        margin: 0 0 12px;
    }
    .footer-contact-inner ul li {}
    .footer-contact-inner ul li:not(:last-child)::after {
        width: 1px;
        height: 14px;
        margin: 0 18px;
    }
    .footer-contact-inner ul li a,
    .footer-contact-disclaimer {
        font-size: 14px;
    }
    .footer-contact-inner ul li a:hover {}
    .footer-smi,
    .ihf-details-template .footer-smi {
        margin: 14px 0 0;
    }
    .footer-smi-inner {}
    .footer-smi-inner a {}
    .footer-smi-inner a:hover {}
    .footer-smi-inner a:not(:last-child) {
        margin: 0 24px 0 0;
    }
    .footer-smi-inner a i {
        font-size: 17px;
    }
    .footer-navigation {}
    .footer-nav {}
    .footer-nav li {}
    .footer-nav li:not(:last-child) {
        margin: 0 0 1px;
    }
    .footer-nav li a {
        font-size: 14px;
    }
    .footer-nav li:hover a {}
    .footer-copyright-eho-realtor-mls-logos {}
    .footer-copyright-eho-realtor-mls-logos::before {
        height: 1px;
        margin: 37px 0 24px;
    }
    .footer-copyright {}
    .footer-copyright p {
        font-size: 12px;
    }
    .footer-copyright p a {}
    .footer-copyright p a:hover {}
    .footer-eho-realtor-mls-logos {}
    .footer-eho-realtor-mls-logos img {
        width: 113px;
    }
    /*******************************************************
 *
 * IP Styles
 *
 *******************************************************/
    .ip-banner {}
    .ip-banner:before {}
    .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: 20px 0 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;
    }
    /* 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 {}
    button:focus-visible,
    a:focus-visible {
        outline: 5px solid red !important;
    }
    #inner-page-wrapper {
        padding: 0 0 30px;
    }
    #inner-page-wrapper > .container {
        width: 1170px;
        padding: 0 15px;
    }
    #listings-results .listings-list.active,
    #listings-results .listings-grid.active,
    #listings-results .listings-table.active {
        display: block !important;
    }

    .single-aios-communities #content #listings-results {
        padding-top: 30px;
    }
}


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

@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }
    .site-title h2 {
        font-size: 40px !important;
    }
    .site-title h2 span {
        font-size: 20px;
    }
    .footer-contact-smi {
        width: 100%;
    }
    .footer-contact-inner ul {
        flex-flow: column;
        align-items: center;
    }
    .footer-contact-inner ul li:not(:last-child)::after {
        display: none;
    }
    .footer-contact-inner ul li a,
    .footer-contact-disclaimer {
        text-align: center;
    }
    .footer-smi,
    .ihf-details-template .footer-smi {
        margin: 40px 0 0;
    }
    .footer-smi-inner {
        justify-content: center;
    }
    .footer-navigation {
        width: 100%;
        margin: 40px 0 0;
    }
    .footer-nav {
        align-items: center;
    }
    .footer-copyright-eho-realtor-mls-logos {
        flex-flow: column;
    }
    .footer-copyright-eho-realtor-mls-logos::before {
        margin: 40px 0;
    }
    .footer-copyright p {
        text-align: center;
    }
    .footer-eho-realtor-mls-logos {
        margin: 40px 0 0;
    }
    #content .entry-title,
    #content .archive-title {
        font-size: 40px;
    }
}


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

@media only screen and (max-width: 480px) {
    .post-page-about #content .aios-about-fields,
    .post-page-contact-us .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form .cu-fields {
        width: 100%;
    }

    .post-page-about .aios-about-inner .aios-about-form span.wpcf7-not-valid-tip, 
    .post-page-contact-us .aios-cu-inner .aios-cu-left .aios-cu-main .aios-cu-form form span.wpcf7-not-valid-tip {
        top: 0.5em;
        left: auto;
        right: 0.5em;
    }

    .post-page-about .aios-about-inner .aios-about-form div.wpcf7-response-output {
        font-size: 12px;
    }
}