/*******************************************************
 *
 * Variables
 *
 *******************************************************/
 :root {
    /** Font default */
    --font-family-default: 'Outfit', sans-serif;
    --font-family-title: 'Sainte Colombe';
    --font-color-default: #000;
    --font-color-title: #000;
    /** Use for input, button, and any other element */
    --primary: #000;
    --secondary: #000;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --ip-link: #fff;
    --default-transition: all 0.3s ease-in-out;
}

/*******************************************************
 *
 * Global Styles
 *
 *******************************************************/
html {
    margin: 0 !important;
}

body {
    font-family: var(--font-family-default);
    font-size: 18px;
    font-size: 1.125vw;
    font-weight: 300;
    color: #000;
    line-height: normal;
    background: #fff;
    margin: 0;
}

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

:before,
:after{
    pointer-events: none;
}

*:focus {
    outline: none !important;
}

a, a:hover, a:focus {
    text-decoration: none;
    color: var(--ip-link);
}

a:hover {
    color: #DED6CB;
}

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

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

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

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

canvas.fixed-bg{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.safari-true canvas.fixed-bg,
.mobile canvas.fixed-bg{
    background-attachment: scroll;
}

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

main {
    background: #fff;
}

section {
    position: relative;
    background: #000;
}

/*** 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: space-between;
    align-items: flex-start;
    max-width: 1476px;
    /*max-width: 92.25vw;*/
    max-width: 88vw;
    margin: auto;
    padding: 40px 0;
    padding: 2.5vw 0;
}

.header-navigation, .header-cta-off-canvas-trigger {
    width: calc(50% - 125.5px);
    width: calc(50% - 7.844vw);
}

.header-logo {
}

.header-logo-inner {
}

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

.header-logo-inner a img {
    width: 175px;
    width: 10.98vw;
    filter: brightness(0) invert(1);
}

/*** Header Navigation ***/
.header-navigation {
    margin: 15px 0 0;
    margin: 0.938vw 0 0;
}

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

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

.header-nav > li:not(:last-child) {
    margin: 0 55px 0 0;
    margin: 0 3.438vw 0 0;
}

.header-nav > li.contact-us {
    display: none;
}

.header-nav > li > a {
    display: block;
    font-size: 12px;
    font-size: 0.75vw;
    font-weight: 300;
    letter-spacing: 0.075em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0 0 0.075em;
}

.header-nav > li:hover > a {
    color: #cac7bf;
}

.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;
    /*display: none;*/
}

.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: #fff;
    margin: 0 0 1px;
    margin: 0 0 0.063vw;
    transition: var(--default-transition);
    position: relative;
}

.header-nav .sub-menu > li:hover {
    background: #ded6cb;
}

.header-nav .sub-menu li a {
    display: block;
    font-size: 12px;
    font-size: 0.75vw;
    font-weight: 300;
    letter-spacing: 0.075em;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 10px 10px calc(10px + 0.075em);
    padding: 0.625vw 0.625vw 0.625vw calc(0.625vw + 0.075em);
}

.header-nav .sub-menu > li:hover > a {
    color: #000;
}

/*** Header CTA ***/
.header-cta-off-canvas-trigger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 13px 0 0;
    margin: 0.813vw 0 0;
}

.header-cta {
}

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

.header-cta-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-size: 0.75vw;
    font-weight: 300;
    letter-spacing: 0.075em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.header-cta-inner a:not(:last-child) {
    margin: 0 42px 0 0;
    margin: 0 2.625vw 0 0;
}

.header-cta-inner a:hover {
    color: #cac7bf;
}

.header-cta-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-size: 0.938vw;
}

.header-cta-inner a i.ai-font-envelope-f {
    font-size: 13px;
    font-size: 0.813vw;
}

.header-cta-inner a i.ai-font-magnifying-glass-h {
    font-size: 18px;
    font-size: 1.125vw;
}

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

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

.header.fixed .header-inner {
    align-items: center;
    padding: 10px 0;
    padding: 0.625vw 0;
}

.header.fixed .header-logo-inner a img {
    width: 175px;
    width: 10.98vw;
}

.header.fixed .header-nav .sub-menu {
    padding: 39px 0 0;
    padding: 2.438vw 0 0;
}

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

.header.fixed .header-cta-off-canvas-trigger {
    margin: 0;
}

/*** Off Canvas ***/
.off-canvas-trigger {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    margin: 0 0 0 42px;
    margin: 0 0 0 2.625vw;
    cursor: pointer;
}

.off-canvas-trigger i {
    display: block;
    width: 27px;
    width: 1.688vw;
    height: 2px;
    height: 0.125vw;
    background: #fff;
    transition: var(--default-transition);
}

.off-canvas-trigger i:not(:last-child) {
    margin: 0 0 8px;
    margin: 0 0 0.5vw;
}

.off-canvas-open {
    overflow: hidden;
}

.off-canvas-backdrop {
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: var(--default-transition);
}

.off-canvas-open .off-canvas-backdrop {
    opacity: 0.5;
    pointer-events: auto;
}

.off-canvas {
    width: 100%;
    height: 100%;
    max-height: 800px;
    max-height: 50vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    overflow: hidden;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--default-transition);
    background: #ded6cb;
    padding: 0 30px;
    padding: 0 1.875vw;
}

.off-canvas-open .off-canvas {
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
}

.off-canvas-inner {
    max-width: 1140px;
    max-width: 71.25vw;
    height: 100%;
    margin: auto;
    padding: 70px 0 0;
    padding: 4.375vw 0 0;
}

.off-canvas-close {
    position: absolute;
    top: 53px;
    top: 3.313vw;
    right: 66px;
    right: 4.125vw;
    z-index: 100;
    cursor: pointer;
    transition: var(--default-transition);
}

.off-canvas-close i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-size: 1.125vw;
    color: #000;
    transition: var(--default-transition);
}

.off-canvas-close:hover i {
    transform: rotate(90deg);
}

.off-canvas-navigation {
}

.off-canvas-nav {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: relative;
}

.off-canvas-nav > li {
}

.off-canvas-nav > li:not(:last-child) {
    margin: 0 0 35px;
    margin: 0 0 2.188vw;
}

.off-canvas-nav > li > a {
    display: block;
    font-family: var(--font-family-title);
    font-size: 105px;
    font-size: 6.563vw;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #000;
}

.off-canvas-nav.hovered > li:not(.hovered) > a {
    color: #757575;
}

.off-canvas-nav .sub-menu {
    position: absolute;
    top: 26px;
    top: 1.625vw;
    right: -4%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transform: translateY(1.875vw);
    transition: var(--default-transition);
    min-width: 192px;
    min-width: 12vw;
}

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

.off-canvas-nav .sub-menu li {
}

.off-canvas-nav .sub-menu li:not(:last-child) {
    margin: 0 0 14px;
    margin: 0 0 0.875vw;
}

.off-canvas-nav .sub-menu li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125vw;
    font-weight: 300;
    letter-spacing: 0.075em;
    color: #757575;
    text-transform: uppercase;
}

.off-canvas-nav .sub-menu li:hover > a {
    color: #000;
}

/*** Fixed Navigation ***/
.fixed-nav {
    position: fixed;
    top: 50%;
    left: 52px;
    left: 3.25vw;
    z-index: 100;
    transform: translateY(-50%);
}

body:not(.home) .fixed-nav {
    display: none;
}

.fixed-nav-inner {
}

.fixed-nav-inner ul {
    position: relative;
}

.fixed-nav-inner li {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--default-transition);
}

.fixed-nav-inner li:not(.nav-active-section), .fixed-nav-inner li.aios-scroll-id-hp-slideshow {
    opacity: 0;
}

.fixed-nav-inner li a {
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.fixed-nav-inner li a::after {
    content: '';
    width: 1px;
    width: 0.063vw;
    height: 63px;
    height: 3.938vw;
    background: #757575;
    opacity: 0.5;
    margin: 23px 0;
    margin: 1.438vw 0;
    transition: var(--default-transition);
}

.fixed-nav-inner li.aios-scroll-id-hp-comm a::after {
    background: #dfd6cb;
}

.fixed-nav-inner li a em {
    font-family: 'Spartan';
    font-size: 13px;
    font-size: 0.813vw;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.4em;
    color: #757575;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 -0.4em 0;
    transition: var(--default-transition);
}

.fixed-nav-inner li.aios-scroll-id-hp-comm a em {
    color: #dfd6cb;
}

.fixed-nav-inner li a span {
    display: block;
    font-size: 13px;
    font-size: 0.813vw;
    font-weight: 400;
    letter-spacing: 0.62em;
    color: #757575;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 -0.62em 0;
    order: 1;
    transition: var(--default-transition);
}

.fixed-nav-inner li.aios-scroll-id-hp-comm a span {
    color: #dfd6cb;
}

/*** Site Title ***/
.site-title {
    display: flex;
    justify-content: center;
}

.site-title h2 {
    font-family: var(--font-family-title);
    font-size: 90px;
    font-size: 5.625vw;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.056;
    color: #fff;
    text-align: center;
    position: relative;
}

.site-title h1 span {
    color: #757575;
}

.site-title h1 {
    font-family: var(--font-family-title);
    font-size: 90px;
    font-size: 5.625vw;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.056;
    color: #fff;
    text-align: center;
    position: relative;
}

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

/*** Site Button ***/
.site-button {
    display: flex;
    justify-content: center;
}

.site-button a, .site-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 196px;
    min-width: 10vw;
    height: 72px;
    height: 3.75vw;
    background: transparent;
    border: none;
    font-size: 12px;
    font-size: 0.625vw;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #fff;
    text-align: center;
    padding: 0 10px;
    padding: 0 0.875vw;
    position: relative;
    overflow: hidden;
}

.site-button a::before, .site-button button::before {
    content: '';
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    border-width: 0.063vw;
    border-image: linear-gradient(to right, rgba(119, 115, 109, 1) 0%, rgba(76, 75, 74, 1) 100%);
    border-image-slice: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: var(--default-transition);
}

.site-button a:hover, .site-button button:hover {
    background: #dfd6cb;
    color: #000000;
}

.site-button a:hover::before, .site-button button:hover::before {
    /* border-color: #dfd6cb; */
    opacity: 0;
}

/* .site-button a::after,
.site-button button::after {
    content: '';
    width: 100%;
    height: 5px;
    height: 0.313vw;
    background: linear-gradient(to right, rgba(119, 115, 109, 1) 0%, rgba(76, 75, 74, 1) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: translateX(-100%);
    transition: var(--default-transition);
} */
/* .site-button a:hover::after,
.site-button button:hover::after {
    transform: translateX(0);
} */
/*** Site Arrow ***/
.site-arrow {
}

.site-arrow a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.site-arrow.prev a::before, .site-arrow.next a::after {
    content: '';
    width: 35px;
    width: 2.188vw;
    height: 14px;
    height: 0.875vw;
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: var(--default-transition);
}

.site-arrow.prev a::before {
    background: #fff;
    -webkit-mask-image: url('../images/arrow-prev.png');
}

.site-arrow.prev a:hover::before {
    background: #757575;
}

.site-arrow.next a::after {
    background: #757575;
    -webkit-mask-image: url('../images/arrow-next.png');
}

.site-arrow.next a:hover::after {
    background: #fff;
}

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

.footer-inner {
    max-width: 1240px;
    max-width: 77.5vw;
    margin: auto;
    padding: 140px 0 41px;
    padding: 8.75vw 0 2.563vw;
}

.footer-logo-navigation {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    /* margin: 0 35px;
    margin: 0 2.188vw; */
}

.footer-logo-inner {
}

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

.footer-logo-inner a img {
    width: 175px;
    width: 10.98vw;
    filter: brightness(0);
}

.footer-navigation {
    flex-grow: 1;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
}

.footer-nav li {
}

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

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

.footer-nav li:hover a {
    color: #000;
}

.footer-contact-smi-location-newsletter-accessibility {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 95px 0 0;
    margin: 5.938vw 0 0;
}

.footer-contact-smi-location {
}

.footer-contact {
}

.footer-contact-inner {
}

.footer-contact-inner h2 {
    font-family: var(--font-family-title);
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 19px;
    margin: 0 0 1.188vw;
}

.footer-contact-inner a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 2.143;
    color: #757575;
}

.footer-contact-inner a:hover {
    color: #000;
}

.footer-contact-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-size: 0.938vw;
    color: #000;
    width: 20px;
    width: 1.25vw;
    margin: 0 12px 0 0;
    margin: 0 0.75vw 0 0;
}

.footer-contact-inner a i.ai-font-envelope-f {
    font-size: 13px;
    font-size: 0.813vw;
}

.footer-smi {
    margin: 7px 0 0 6px;
    margin: 0.438vw 0 0 0.375vw;
}

.footer-smi-inner {
    display: flex;
    align-items: center;
}

.footer-smi-inner a {
    display: block;
    font-size: 21px;
    font-size: 1.126vw;
    color: #000;
}

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

.footer-smi-inner a:hover {
    color: #757575;
}

.footer-location {
    margin: 3.438vw 0 0;
}

.footer-location-inner {
}

.footer-location-inner h2 {
    font-family: var(--font-family-title);
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 19px;
    margin: 0 0 1.188vw;
}

.footer-location-inner a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-size: 0.875vw;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 2.143;
    color: #757575;
}

.footer-location-inner a:hover {
    color: #000;
}

.footer-location-inner a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-size: 1.375vw;
    color: #000;
    width: 20px;
    width: 1.25vw;
    margin: -24px 12px 0 0;
    margin: -1.5vw 0.75vw 0 0;
}

.footer-newsletter-accessibility {
    max-width: 604px;
    max-width: 37.75vw;
    margin: -1px 0 0;
    margin: -0.063vw 0 0;
}

.footer-newsletter {
}

.footer-newsletter-inner {
}

.footer-newsletter-inner h2 {
    font-family: var(--font-family-title);
    font-size: 18px;
    font-size: 1.125vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 -2px;
    margin: 0 0 -0.125vw;
}

.newsletter-form {
    position: relative;
}

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

.newsletter-form-input {
}

.newsletter-form-input .wpcf7-form-control-wrap {
    display: block;
}

.newsletter-form-input input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cac7bf;
    border-bottom: 0.063vw solid #cac7bf;
    padding: 28px 13px;
    padding: 1.75vw 0.813vw;
    font-size: 15px;
    font-size: 0.938vw;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #757575;
}

.newsletter-form-button {
    position: absolute;
    bottom: 26px;
    bottom: 1.625vw;
    right: 9px;
    right: 0.563vw;
    z-index: 1;
}

.newsletter-form-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    color: #000;
    padding: 0;
}

.newsletter-form-button button:hover {
    color: #757575;
}

.newsletter-form-button button i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-size: 1.438vw;
}

.newsletter-form .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: -50px;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto !important;
}

.newsletter-form .wpcf7-response-output {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    border-width: 1px !important;
    border-width: 0.063vw !important;
    font-size: 12px;
    font-size: 0.75vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    text-transform: none;
    padding: 5px 15px !important;
    padding: 0.313vw 0.938vw !important;
    position: absolute;
    margin: 30px auto 0 !important;
    margin: 1.875vw auto 0 !important;
}

.newsletter-form .wpcf7-not-valid-tip {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    max-width: 12.500vw;
    height: 27px;
    height: 1.688vw;
    border-width: 1px !important;
    border-width: 0.063vw !important;
    font-size: 12px;
    font-size: 0.75vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #dc3232;
    text-align: center;
    text-transform: none;
    padding: 5px 15px !important;
    padding: 0.313vw 0.938vw !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    margin: auto;
}

.newsletter-form-acceptance input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    background: transparent;
    color: #000;
    clear: none;
    cursor: pointer;
    margin: 0;
    outline: 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    min-width: 0.875vw;
    -webkit-transition: .05s border-color ease-in-out;
    -o-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    width: 0.875vw;
    height: 0.875vw;
    border: 1px solid #adacac;
    overflow: hidden;
    border-radius: 0;
    position: absolute;
    top: 0.250vw;
    left: 0;
}

.newsletter-form-acceptance input[type="checkbox"]:checked:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 0.313vw;
    height: 0.688vw;
    border: solid #000;
    border-width: 0 0.125vw 0.125vw 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0px 0 0 0.250vw;
}

.newsletter-form span.wpcf7-form-control-wrap[data-name="opt-in"] .wpcf7-not-valid-tip {
    max-width: 360px;
    height: 50px;
    max-width: 18.75vw;
    height: 2.62vw;
    margin: 0;
    top: 35px;
    top: 1.825vw;
    left: -171px;
    left: -8.91vw;
}


.newsletter-form span.wpcf7-form-control-wrap[data-name="opt-in"] .wpcf7-not-valid-tip::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #dc3232 transparent;
    transform: rotate(0deg);
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
}

.newsletter-form-acceptance .wpcf7-list-item-label {
    padding-left: 1.438vw;
    display: inline-block;
    position: relative;
    text-align: left;
    font-size: 0.688vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.462;
    color: #757575;
}

.newsletter-form-acceptance .wpcf7-list-item {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form-acceptance {
    margin: 10px auto 0;
    user-select: none;
}

.newsletter-form-acceptance.is-white input[type="checkbox"]:checked {
    border: 1px solid #fff;
}

.newsletter-form-acceptance.is-white .wpcf7-list-item-label {
    color: #fff;
}

.newsletter-form-acceptance.is-white input[type="checkbox"]:checked:after {
    border-color: #fff;
}

.footer-disclaimer p {
    font-size: 0.625vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.462;
    color: #757575
}

.footer-disclaimer p:not(:last-child) {
    margin-bottom: 0.625vw;
}

.footer-disclaimer {
    display: block;
    text-align: center;
    margin-bottom: 1.875vw;
}

.footer-accessibility {
    margin: 1.875vw 0 0;
    text-align: center;
}

.footer-accessibility p {
    font-size: 0.625vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.462;
    color: #757575;
}

.footer-accessibility p a {
    color: #757575;
}

.footer-accessibility p a:hover {
    color: #000;
}

.footer-eho-realtor-mls-ai-logos-copyright {
    margin: 3.438vw 0 0;
}

.footer-eho-realtor-mls-ai-logos {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer-eho-realtor-mls-ai-logos img {
    width: 128px;
    width: 8vw;
}

.footer-eho-realtor-mls-ai-logos img:not(:last-child) {
    margin: 0 30px 0 0;
    margin: 0 1.875vw 0 0;
}

.footer-eho-realtor-mls-ai-logos img:last-child {
    width: 205px;
    width: 12.813vw;
}

.footer-eho-realtor-mls-ai-logos img[alt="Real Logo"] {
    width: 85px;
    height: auto;
}

.footer-copyright {
    margin: 1.250vw 0 0;
}

.footer-copyright p {
    font-size: 0.625vw;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2;
    color: #757575;
    text-align: center;
    padding: 0 0 0 0.05em;
}

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

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

.single-post .content-justify {
    text-align: justify;
}

ul.list-no-style li {
    list-style: none;
}

/*******************************************************
 *
 * IP Styles
 *
 *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
}

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

.ip-banner::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('../images/slideshow-overlay.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    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-family: var(--font-family-title);
    font-size: 90px;
    font-size: 5.625vw;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.056;
    color: #000;
}

/* 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-bottom: 0;
    padding-bottom: 30px;
    padding-bottom: 1.875vw;
}

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

/** Blog Posts **/
.single-post #breadcrumbs {
    /*display: none;*/
}

.single-post #inner-page-wrapper {
    background: #000;
}

.single-post #content .entry-title {
    color: #fff;
}

.single-post #inner-page-wrapper #content p {
    color: #cac7bf;
}

.single-post #inner-page-wrapper #content a {
    text-decoration: underline;
    color: #cac7bf;
}

.single-post #inner-page-wrapper #content a:hover {
    color: #fff;
}

.single-post .content-justify {
    text-align: justify;
    color: #fff;
}

/* Popup Form */
body.popup-active {
    overflow: hidden;
}

.popup-form-field, .popup-main,.popup-img, .popup-content-container, .popup-content, .popup-form, .popup-form-widget, .popup-form-widget form {
    display: block;
    position: relative;
}

.popup-container {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    overflow: hidden;
    font-size: 0;
}

.popup-container.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.popup-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 25px 15px;
}

.popup-main {
    position: relative;
    width: 100%;
    max-width: 1476px;
    margin: 0 auto;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    transform: scale(0.7);
    opacity: 0;
    padding: 0;
    z-index: 5;
}

.popup-container.active .popup-main {
    transform: scale(1);
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    border: none;
    padding: 0;
    background-color: transparent;
    z-index: 10;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.popup-close:hover {
    opacity: .75;
}

.popup-form-widget {
    width: 100%;
}

.popup-form-field {
    width: 100%;
    margin-bottom: 14px;
}

.popup-form-field input:not([type=submit],[type=checkbox]), .popup-form-field textarea {
    width: 100%;
    height: 50px;
    background-color: transparent;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.050em;
    color: #000;
    padding: 0;
    font-weight: 300;
    border: none;
    border-bottom: 1px solid #000;
}

.popup-form-field.form-submit {
    margin: 38px auto 0;
    padding-left: 23px;
}

.popup-form-field.form-submit button {
    margin: 0 auto;
}

.popup-form-widget .wpcf7 form .wpcf7-response-output {
    color: #000!important;
    font-size: 11px;
    position: absolute;
    bottom: -47px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 1;
    margin: 0 auto;
}

.popup-form-widget .wpcf7-spinner {
    bottom: -40px;
    position: absolute;
    bottom: -40px;
    left: 0;
}

.popup-row {
    display: flex;
    position: relative;
}

.popup-col {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.popup-content-container {
    background-color: #ded6cb;
    width: 100%;
    height: 100%;
    padding: 90px 70px 114px;
}

.popup-content h2 {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.050em;
    color: #000;
    font-weight: 300;
    font-family: var(--font-family-title);
    display: block;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.050em;
    font-weight: 300;
    color: #000;
}

.popup-content {
    margin-bottom: 30px;
}

.popup-form-field.form-submit button {
    width: 100%;
    max-width: 173px;
    height: 53px;
    background-color: transparent;
    border: 1px solid #000;
    font-size: 14px;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.300em;
}

.popup-form-field.form-submit button:hover {
    background-color: #000;
    color: #fff;
}

.popup-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-img {
    height: 100%;
    width: 100%;
}

.popup-form-field.is-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    background: transparent;
    color: #000;
    clear: none;
    cursor: pointer;
    margin: 0;
    outline: 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    min-width: 13px;
    -webkit-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    width: 13px;
    height: 13px;
    border: 1px solid #000;
    overflow: hidden;
    border-radius: 0;
    position: absolute;
    top: 4px;
    left: 0;
}

.popup-form-field.is-checkbox input[type="checkbox"]:checked:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 5px;
    height: 11px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -1px 0 0 4px;
}

.popup-form-field.is-checkbox input[type="checkbox"]:checked {
    border: 1px solid #000;
}

.popup-form-field.is-checkbox .wpcf7-list-item-label {
    padding-left: 23px;
    display: inline-block;
    position: relative;
    text-align: left;
    font-size: 11px;
    line-height: 19px;
    letter-spacing: 0.020em;
    color: #000;
    font-weight: 300;
    user-select: none;
}

.popup-form-field.is-checkbox .wpcf7-list-item {
    display: block;
    margin: 0 auto;
}

.popup-form-field.is-checkbox .wpcf7-list-item-label a {
    color: inherit;
    -webkit-transition: all var(--default-transition);
    transition: all var(--default-transition);
    position: relative;
}

.popup-form-field.is-checkbox .wpcf7-list-item-label a:hover {
    color: #666;
}

.popup-form-field.is-checkbox .wpcf7-list-item-label a:hover:before {
    background-color: #000;
}

.popup-form-field.is-checkbox .wpcf7-list-item-label a:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #8a857f;
    pointer-events: none;
    -webkit-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.popup-img:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0.50) 100%);
}

.popup-form-widget .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    width: auto;
    right: auto;
    font-size: 10px;
}

.popup-form-field .wpcf7-form-control-wrap[data-name="opt-in"] span.wpcf7-not-valid-tip {
    top: 25px;
    left: -94px;
    width: 200px;
    text-align: center;
}

.popup-form-field .wpcf7-form-control-wrap[data-name="opt-in"] span.wpcf7-not-valid-tip::before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #dc3232 transparent;
    transform: rotate(0deg);
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
}

.popup-form-field .wpcf7-form-control-wrap {
    display: block;
}

.popup-form-field.form-submit button[disabled] {
    pointer-events: none;
}

.single-post #content .entry {
    font-size: 16px;
    color: #cac7bf;
}

.page-template-default #inner-page-wrapper {
    background: #000;
    color: #cac7bf;
}
.page-template-default #content .entry-title,
.page-template-default #content .archive-title {
    color: #fff;
}

#ihf-main-container .nav-tabs {
    margin-left: 0;
}
#ihf-main-container .chosen-drop ul.chosen-results {
    padding-left: 0;
    margin: 0;
}

.page-template-default #breadcrumbs {
    font-size: 12px;
    font-size: 0.625vw;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: #757575;
    text-transform: uppercase;
    margin: 0;
}
    .page-template-default #breadcrumbs a {
        color: #757575;
    }
    .page-template-default #breadcrumbs .breadcrumb_last {
        color: #cac7bf;
    }

.ihf-container label, #ihf-main-container .btn-link, .ihf-link-back a, #ihf-main-container .nav-tabs>li>a {
    color: inherit;
}

#ihf-main-container .btn-link:hover,
.ihf-link-back a:hover {
    color: #fff;
}

#ihf-main-container label.field-label,
p.ihf-map-results-count.field-label.text-right,
.ihf-link-back {
    font-size: 16px;
}

#ihf-main-container #ihf-refine-map-search-form .checkbox, 
#ihf-main-container #ihf-refine-map-search-form .col-xs-8 {
    padding: 0;
}

#ihf-main-container #ihf-refine-map-search-form .checkbox label {
    font-size: 16px;
    display: flex;
    line-height: 1.25;
}

.page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-default,
.page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 56px;
    height: 3.5vw;
    background: transparent;
    border: none;
    font-size: 12px;
    font-size: 0.625vw;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 0 15px 0 calc(15px + 0.05em);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-default:before,
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-primary:before {
        content: '';
        width: 100%;
        height: 100%;
        border-style: solid;
        border-width: 2px;
        border-width: 0.125vw;
        border-image: linear-gradient(to right, rgba(192, 190, 187, 1) 0%, rgba(193, 191, 189, 1) 100%);
        border-image-slice: 1;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        transition: var(--default-transition);
    }
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-default:hover,
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-primary:hover {
        background: #dfd6cb;
        color: #000;
    }
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-default:hover:before,
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-primary:hover:before {
        opacity: 0;
    }

.page-template-default #ihf-main-container .btn.btn-primary#ihf-search-adv-submit, 
.page-template-default #ihf-main-container .btn.btn-primary#ihf-search-adv2-submit {
    /* width: 100%; */
    margin-left: auto;
    width: 144px;
    max-width: 100%;
}

.page-template-default #ihf-main-container .btn.btn-primary#ihf-search-adv2-submit {
    margin-top: 20px;
}

#ihf-main-container input#ihf-location,
#ihf-main-container:not(.ihf-modal-container) .chosen-container-single .chosen-single,
#ihf-main-container:not(.ihf-modal-container) .form-inline .form-control,
#ihf-main-container:not(.ihf-modal-container) .chosen-container-multi .chosen-choices {
    border-width: 2px;
    border-width: 0.125vw;
    border-image: linear-gradient(to right, rgba(192, 190, 187, 1) 0%, rgba(193, 191, 189, 1) 100%);
    border-image-slice: 1;
    background: transparent;
    box-shadow: none;
    color: #cac7bf;
}
#ihf-main-container:not(.ihf-modal-container) #ihf-selectedAreas .btn {
    background: transparent;
    border-radius: 0;
    color: #cac7bf;
}

#ihf-main-container:not(.ihf-modal-container) .chosen-container-multi .chosen-choices li.search-field input[type=text] {
    color: #cac7bf !important;
}

#ihf-main-search-form:not(.ihf-modal-container) #areaPickerContainer div#areaPickerInputWrapper input[type=text] {
    background: transparent;
    color: #cac7bf;
}

.page-template-default.page-id-62 #breadcrumbs,
.page-template-default.page-id-61 #breadcrumbs {
    display: none;
}

#ihf-main-container:not(.ihf-modal-container) .nav-tabs>li.active>a, 
#ihf-main-container:not(.ihf-modal-container) .nav-tabs>li.active>a:focus, 
#ihf-main-container:not(.ihf-modal-container) .nav-tabs>li.active>a:hover,
#ihf-main-container:not(.ihf-modal-container) #ihf-search-location-tab .input-group-addon {
    background: transparent;
    border-radius: 0;
    background: #dfd6cb;
    color: #000;
    border-color: #dfd6cb;
}

#ihf-main-container:not(.ihf-modal-container) .nav-tabs>li>a {
    border-radius: 0!important;
}
#ihf-main-container:not(.ihf-modal-container) .nav-tabs>li>a:hover {
    border-color: #dfd6cb;
    background: #dfd6cb;
    color: #000;
}

#ihf-main-container:not(.ihf-modal-container) .radio-inline input {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    background: #fff;
    border: 3px solid #ffffff;
    color: #555;
    clear: none;
    cursor: pointer;
    margin: 0 10px 0 0;
    outline: 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    min-width: 16px;
    -webkit-transition: .05s border-color ease-in-out;
    -o-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    width: 16px;
    height: 16px;
    overflow: hidden;
    border-radius: 50%;
    min-height: initial;
}

#ihf-main-container:not(.ihf-modal-container) .radio-inline input:checked {
    background: #a59073;
}

#ihf-main-container:not(.ihf-modal-container) .radio-inline input {
    margin: 0 7px 0 0;
    min-width: 12px;
    width: 12px;
    height: 12px;
}

#ihf-main-container:not(.ihf-modal-container) .radio-inline {
    display: inline-flex;
    align-items: center;
}

.page-template-default #ihf-main-container:not(.ihf-modal-container) .btn-group-justified .btn.btn-primary {
    display: inline-flex;
    width: 33.33%;
}
.page-template-default #ihf-main-container:not(.ihf-modal-container) #ihf-mini-search-submit .btn.btn-primary {
    color: #000;
}

.footer-broker-logo {
    display: block;
    position: relative;
    margin-top: 20px;
    font-size: 0;
}

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

body .about-info span a:hover {
    opacity: 0.6;
}
body .aios-custom-ihomefinder-template-credits {
    padding: 0 15px 50px;
}
body .aios-custom-ihomefinder-template-poweredby a:hover {
   color: #ccc;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 12px;
    padding: 0.2em 0.8em;
    width: auto;
}

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

.page-id-17 a:hover {
    color: #ccc;
}

body #content .ldet-propfeat_title h2 {
    margin-top: 0 !important;
}

body .ldet-propfeat-data_col > div strong {
    color: #fff;
}

body .ldet-propfeat_hdr {
    color: #fff;
}
body .ldet-propfeat-data_col > div span {
    color: #DFD6CB !important;
}

.post-page-sitemap .ip-featured-listings-title {
    display: none;
}

.post-page-sitemap .sitemap-list a {
    color: #fff;
}

.post-page-sitemap .sitemap-list a:hover {
    color: #DFD6CB;
}

.page-id-58 .ihf-board-disclaimers {
    padding: 0 15px;
    margin: 60px 0 0; 
    color: #cecece;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 11px;
    padding: 0.2em 0.8em;
    width: auto;
}

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

.error404 #breadcrumbs a {
   color: #000;
}

.ihf-link-back.ihf-powered-by,
.ihf-link-back.ihf-powered-by a {
   color: #fff !important;
}

.ip-featured-listings .error-container{
    text-align: center;
    color: #ffffff;
}

.aios-custom-ihomefinder-template-disclaimer *, .aios-custom-ihomefinder-template-poweredby {
    font-weight: 400 !important;
    font-size: 10px !important;
}

#listings-results .listings-pagination ul li.active a, #listings-results .listings-pagination ul li a.active, #listings-results .listings-pagination ul li a:hover {
    color: #000 !important;
}

@media only screen and (min-width: 992px) {
    .footer-broker-logo {
        margin-top: 1.042vw;
    }

    .footer-broker-logo img {
        width: 9.115vw;
        height: 3.385vw;
    }

    .footer-eho-realtor-mls-ai-logos img[alt="Real Logo"] {
        width: 5.313vw;
    }
}

@media only screen and (max-width: 1560px) {
    .popup-main {
        max-width: 1280px;
        margin: 0 auto;
    }

    .popup-content-container {
        padding: 90px 40px 80px;
    }

    .popup-content h2 {
        font-size: 36px;
    }
}

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

@media only screen and (max-width: 1366px) {
    .popup-main {
        max-width: 1200px;
    }

    .popup-content h2 {
        font-size: 35px;
    }

    .popup-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

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

    .off-canvas {
    max-height: 100vw;
}
    .popup-main {
        max-width: 1130px;
    }

    .popup-content h2 {
        font-size: 30px;
    }

    .popup-content-container {
        padding: 70px 30px 90px;
    }

    .popup-form-field.form-submit {
        margin: 30px auto 0;
        padding-left: 20px;
    }

    .popup-form-field.is-checkbox .wpcf7-list-item-label {
        padding-left: 20px;
    }
}

@media only screen and (max-height: 650px) {
    .popup-wrapper {
        display: block;
    }

    .popup-main {
        margin: 40px auto;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    canvas.fixed-bg{
        background-attachment: scroll;
    }
    .popup-content-container {
        padding: 60px 20px 70px;
    }

    .popup-content h2 {
        font-size: 28px;
    }

    .popup-content p {
        font-size: 14px;
        letter-spacing: 0.020em;
    }


.popup-form-field .wpcf7-form-control-wrap[data-name="opt-in"] span.wpcf7-not-valid-tip::before {
    left: 5px;
}
.popup-form-field .wpcf7-form-control-wrap[data-name="opt-in"] span.wpcf7-not-valid-tip {
    left: 0;
}


}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {

.ldet-intrst_row.dual > div {
    max-width: 100% !important;
}

    body #listings-results .listings-table .listings-table-body .listings-col {
        display: none;
    }

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

    ::-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 {
    }

    section {
    }

    /*** Header ***/
    .header {
        position: relative;
        padding: 0 30px;
    }

    .header-inner {
        justify-content: center;
        max-width: 720px;
        padding: 30px 0;
    }

    .header-navigation, .header-cta-off-canvas-trigger {
        width: calc(50% - 125.5px);
    }

    .header-logo {
    }

    .header-logo-inner {
    }

    .header-logo-inner a {
    }

    .header-logo-inner a img {
        width: 177px;
    }

    /*** Header Navigation ***/
    .header-navigation {
        margin: 15px 0 0;
    }

    .header-nav {
    }

    .header-nav > li {
    }

    .header-nav > li:not(:last-child) {
        margin: 0 55px 0 0;
    }

    .header-nav > li.contact-us {
    }

    .header-nav > li > a {
        font-size: 12px;
    }

    .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: 12px;
        padding: 10px 10px 10px calc(10px + 0.075em);
    }

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

    /*** Header CTA ***/
    .header-cta-off-canvas-trigger {
        margin: 13px 0 0;
    }

    .header-cta {
    }

    .header-cta-inner {
    }

    .header-cta-inner a {
        font-size: 12px;
    }

    .header-cta-inner a:not(:last-child) {
        margin: 0 42px 0 0;
    }

    .header-cta-inner a:hover {
    }

    .header-cta-inner a i {
        font-size: 15px;
    }

    .header-cta-inner a i.ai-font-envelope-f {
        font-size: 13px;
    }

    .header-cta-inner a i.ai-font-magnifying-glass-h {
        font-size: 18px;
    }

    /*** Fixed Header ***/
    .header.fixed {
        padding: 0 30px;
    }

    .header.fixed.show-fixed {
    }

    .header.fixed .header-inner {
        padding: 10px 0;
    }

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

    .header.fixed .header-nav .sub-menu {
        padding: 39px 0 0;
    }

    .header.fixed .header-navigation {
    }

    .header.fixed .header-cta-off-canvas-trigger {
    }

    /*** Off Canvas ***/
    .off-canvas-trigger {
        margin: 0 0 0 42px;
    }

    .off-canvas-trigger i {
        width: 27px;
        height: 2px;
    }

    .off-canvas-trigger i:not(:last-child) {
        margin: 0 0 8px;
    }

    .off-canvas-open {
    }

    .off-canvas-backdrop {
    }

    .off-canvas-open .off-canvas-backdrop {
    }

    .off-canvas {
        max-height: 800px;
        padding: 0 30px;
    }

    .off-canvas-open .off-canvas {
    }

    .off-canvas-inner {
        max-width: 1140px;
        padding: 70px 0 0;
    }

    .off-canvas-close {
        top: 53px;
        right: 66px;
    }

    .off-canvas-close i {
        font-size: 18px;
    }

    .off-canvas-close:hover i {
    }

    .off-canvas-navigation {
    }

    .off-canvas-nav {
    }

    .off-canvas-nav > li {
    }

    .off-canvas-nav > li:not(:last-child) {
        margin: 0 0 35px;
    }

    .off-canvas-nav > li > a {
        font-size: 105px;
    }

    .off-canvas-nav > li:hover > a, .off-canvas-nav > li.hovered > a {
    }

    .off-canvas-nav .sub-menu {
        top: 26px;
        transform: translateY(30px);
    }

    .off-canvas-nav > li.hovered .sub-menu {
    }

    .off-canvas-nav .sub-menu li {
    }

    .off-canvas-nav .sub-menu li:not(:last-child) {
        margin: 0 0 14px;
    }

    .off-canvas-nav .sub-menu li > a {
        font-size: 18px;
    }

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

    /*** Fixed Navigation ***/
    .fixed-nav {
        left: 52px;
    }

    .fixed-nav-inner {
    }

    .fixed-nav-inner ul {
    }

    .fixed-nav-inner li {
    }

    .fixed-nav-inner li:not(.nav-active-section), .fixed-nav-inner li.aios-scroll-id-hp-slideshow {
    }

    .fixed-nav-inner li a {
    }

    .fixed-nav-inner li a::after {
        width: 1px;
        height: 63px;
        margin: 23px 0;
    }

    .fixed-nav-inner li.aios-scroll-id-hp-comm a::after {
    }

    .fixed-nav-inner li a em {
        font-size: 13px;
    }

    .fixed-nav-inner li.aios-scroll-id-hp-comm a em {
    }

    .fixed-nav-inner li a span {
        font-size: 13px;
    }

    .fixed-nav-inner li.aios-scroll-id-hp-comm a span {
    }

    /*** Site Title ***/
    .site-title {
    }

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

    .site-title h2 span {
    }

    /*** Site Button ***/
    .site-button {
    }

    .site-button a, .site-button button {
        min-width: 196px;
        height: 72px;
        font-size: 12px;
        padding: 0 30px 0 calc(30px + 0.3em);
    }

    .site-button a::before, .site-button button::before {
        border-width: 1px;
    }

    /* .site-button a::after,
    .site-button button::after {
        height: 5px;
    }
    .site-button a:hover::after,
    .site-button button:hover::after {} */
    /*** Site Arrow ***/
    .site-arrow {
    }

    .site-arrow a {
    }

    .site-arrow.prev a::before, .site-arrow.next a::after {
        width: 35px;
        height: 14px;
    }

    .site-arrow.prev a::before {
    }

    .site-arrow.prev a:hover::before {
    }

    .site-arrow.next a::after {
    }

    .site-arrow.next a:hover::after {
    }

    /*** Footer ***/
    .footer {
        padding: 0 30px;
    }

    .footer-inner {
        max-width: 720px;
        padding: 90px 0 50px;
    }

    .footer-logo-navigation {
    }

    .footer-logo {
        /* margin: 0 35px; */
    }

    .footer-logo-inner {
    }

    .footer-logo-inner a {
    }

    .footer-logo-inner a img {
        width: 177px;
    }

    .footer-navigation {
        width: 100%;
        margin: 60px 0 0;
    }

    .footer-nav {
        flex-flow: column;
    }

    .footer-nav li {
    }

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

    .footer-nav li a {
        font-size: 14px;
    }

    .footer-nav li:hover a {
    }

    .footer-contact-smi-location-newsletter-accessibility {
        margin: 60px 0 0;
    }

    .footer-contact-smi-location {
        width: 100%;
    }

    .footer-contact {
    }

    .footer-contact-inner {
    }

    .footer-contact-inner h2 {
        font-size: 15px;
        margin: 0 0 19px;
        text-align: center;
        padding: 0 0 0 0.05em;
    }

    .footer-contact-inner a {
        font-size: 14px;
        justify-content: center;
    }

    .footer-contact-inner a:hover {
    }

    .footer-contact-inner a i {
        font-size: 15px;
        width: 20px;
        margin: 0 12px 0 0;
    }

    .footer-contact-inner a i.ai-font-envelope-f {
        font-size: 13px;
    }

    .footer-smi {
        margin: 7px 0 0 6px;
    }

    .footer-smi-inner {
        justify-content: center;
    }

    .footer-smi-inner a {
        font-size: 18px;
    }

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

    .footer-smi-inner a:hover {
    }

    .footer-location {
        margin: 60px 0 0;
    }

    .footer-location-inner {
    }

    .footer-location-inner h2 {
        font-size: 15px;
        margin: 0 0 19px;
        text-align: center;
        padding: 0 0 0 0.05em;
    }

    .footer-location-inner a {
        font-size: 14px;
        justify-content: center;
    }

    .footer-location-inner a:hover {
    }

    .footer-location-inner a i {
        font-size: 22px;
        width: 20px;
        margin: -24px 12px 0 0;
    }

    .footer-newsletter-accessibility {
        max-width: 604px;
        margin: 60px auto 0;
    }

    .footer-newsletter {
    }

    .footer-newsletter-inner {
    }

    .footer-newsletter-inner h2 {
        font-size: 18px;
        text-align: center;
        padding: 0 0 0 0.05em;
    }

    .newsletter-form {
    padding-bottom: 60px;
    }

    .newsletter-form-inner {
    }

    .newsletter-form-input {
    }

    .newsletter-form-input .wpcf7-form-control-wrap {
    }

    .newsletter-form-input input {
        border-bottom: 1px solid #cac7bf;
        padding: 28px 13px;
        font-size: 15px;
    }

    .newsletter-form-button {
        bottom: 26px;
        right: 9px;
    }

    .newsletter-form-button button {
    }

    .newsletter-form-button button:hover {
    }

    .newsletter-form-button button i {
        font-size: 23px;
    }

    .newsletter-form .wpcf7-spinner {
    }

    .newsletter-form .wpcf7-response-output {
        border-width: 1px !important;
        font-size: 12px;
        padding: 5px 15px !important;
        margin: 10px auto 0 !important;
    }

    .newsletter-form .wpcf7-not-valid-tip {
        max-width: 200px;
        height: 27px;
        border-width: 1px !important;
        font-size: 12px;
        padding: 5px 15px !important;
    }

    .newsletter-form span.wpcf7-form-control-wrap[data-name="opt-in"] .wpcf7-not-valid-tip {
        max-width: 300px;
        height: 45px;
        top: 30px;
        left: 0;
    }
    
    .newsletter-form span.wpcf7-form-control-wrap[data-name="opt-in"] .wpcf7-not-valid-tip::before {
        transform: none;
        left: 1px;
    }

    .footer-accessibility {
        margin: 25px 0 0;
    }

    .footer-accessibility p {
        font-size: 12px;
        text-align: center;
        padding: 0 0 0 0.05em;
    }

    .footer-accessibility p a {
    }

    .footer-accessibility p a:hover {
    }

    .footer-eho-realtor-mls-ai-logos-copyright {
        margin: 30px 0 0;
    }

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

    .footer-eho-realtor-mls-ai-logos img {
        width: 128px;
    }

    .footer-eho-realtor-mls-ai-logos img:not(:last-child) {
        margin: 0 30px 0 0;
    }

    .footer-eho-realtor-mls-ai-logos img:last-child {
        width: 205px;
    }

    .footer-copyright {
        margin: 20px 0 0;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .footer-copyright p a {
    }

    .footer-copyright p a:hover {
    }

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

    /* 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-bottom: 30px;
    }

    #inner-page-wrapper > .container {
        width: 1170px;
        padding: 0 15px;
    }

    .footer-disclaimer p, .newsletter-form-acceptance .wpcf7-list-item-label {
        font-size: 12px;
    }

    .footer-disclaimer p:not(:last-child) {
        margin-bottom: 15px;
    }

    .newsletter-form-acceptance .wpcf7-list-item-label {
        padding-left: 23px;
    }

    .newsletter-form-acceptance input[type="checkbox"] {
        width: 14px;
        height: 14px;
        min-width: 14px;
        top: 4px;
    }

    .newsletter-form-acceptance input[type="checkbox"]:checked:after {
        width: 5px;
        height: 11px;
        border-width: 0 2px 2px 0;
        margin: 0px 0 0 4px;
    }

    .footer-disclaimer {
        margin-bottom: 25px;
    }

    .popup-row {
        display: block;
    }

    .popup-col {
        width: 100%;
        display: block;
    }

    .popup-wrapper {
        display: block;
    }

    .popup-close {
        font-size: 22px;
        color: #000;
    }

    .popup-content-container {
        padding: 55px 15px 60px;
    }

    .popup-content {
        margin-bottom: 20px;
    }

    .popup-form-field .wpcf7-form-control-wrap[data-name="opt-in"] span.wpcf7-not-valid-tip {
        left: 0;
        top: 25px;
    }
    
    .popup-form-field .wpcf7-form-control-wrap[data-name="opt-in"] span.wpcf7-not-valid-tip::before {
        transform: none;
        left: 1px;
    }

    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-default,
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-primary {
        height: 50px;
        font-size: 12px;
        padding: 0 30px 0 calc(30px + 0.3em);
    }
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-default::before,
    .page-template-default #ihf-main-container:not(.ihf-modal-container) .btn.btn-primary::before {
        border-width: 2px;
    }

    .footer-broker-logo img {
        display: block;
        margin: 0 auto;
        max-width: 160px;
        width: 100%;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }

    .site-title h2, #content .entry-title, #content .archive-title {
        font-size: 60px !important;
    }

    .site-arrow {
        margin: 0 15px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .header {
        padding: 0 15px;
    }

    .footer {
        padding: 0 15px;
    }

    .footer-eho-realtor-mls-ai-logos {
        flex-flow: column;
        align-items: center;
    }

    .footer-eho-realtor-mls-ai-logos img:not(:last-child) {
        margin: 0 0 30px;
    }
}

@media only screen and (max-width: 360px) {
    .site-title h2, #content .entry-title, #content .archive-title {
        font-size: 50px !important;
    }

.res-category ul li {
    word-break: break-all; 
    padding: 0 !important;
}

    .res-category ul li a {
        font-size: 11px !important;
    }

}
