:root {
    /** Font default */
    --font-family-default: "Open Sans", sans-serif;
    --font-family-title: "Libre Baskerville", serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #aaabab;
    /** Use for input, button, and any other element */
    --primary: #183d2a;
    --secondary: #c1a448;
    --tertiary: #aaabab;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

#main-wrapper {
    overflow: hidden;
}

a, em.ai-mobile-phone a {
    color: inherit;
}

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

section {
    position: relative;
}

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

.site-content p {
    font-weight: 400;
    line-height: 1.556;
    font-size: 1.125em;
    letter-spacing: 0.05em;
    margin: 1.556em 0;
}

.is-white {
    color: #fff;
}

.is-center {
    text-align: center;
}

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

.site-title {
    line-height: 1;
    font-weight: 500;
    font-size: 1.25em;
    letter-spacing: 0.4em;
    color: var(--tertiary);
    text-transform: uppercase;
    padding-left: 1.6em;
    position: relative;
    text-align: left;
}

.site-title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0.1em;
    width: 0.15em;
    bottom: 0.3em;
    background: currentColor;
}

.site-title span {
    font-size: 3em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.167;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-family-title);
    margin-top: 0.2em;
    display: block;
}

.is-white .site-title span,
.site-title.is-white span {
    color: #fff;
}

.site-button {
    line-height: 1;
    font-weight: 400;
    font-size: 0.875em;
    text-align: center;
    display: inline-block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--secondary);
    transition: var(--default-transition);
    background: transparent;
    /* padding: 1.214em 1.857em; */
    padding: 1.214em 1.25em;
    min-width: 13.571em;
    position: relative;
    z-index: 1;
}

.site-button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 0.357em;
    background: var(--secondary);
    transition: var(--default-transition);
}

.site-button:hover,
.site-button:focus {
    color: #fff;
}

.site-button:hover::before,
.site-button:focus::before {
    width: 100%;
}

.is-white .site-button,
.site-button.is-white {
    color: #fff;
}

.site-arrow {
    padding: 0;
    border: none;
    outline: none;
    line-height: 1;
    font-weight: 500;
    font-size: 0.875em;
    letter-spacing: 0.2em;
    background: transparent;
    text-transform: uppercase;
    transition: var(--default-transition);
}

.site-arrow i {
    color: var(--tertiary);
    transition: inherit;
}

.site-arrow i.icon-arrow-p {
    margin-right: 1em;
}

.site-arrow i.icon-arrow-n {
    margin-left: 1em;
}

.site-arrow:hover {
    color: var(--secondary);
}

.site-arrow:hover i {
    color: currentColor;
}

.site-image {
    position: relative;
}

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

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

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

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

[class^="icon-"] {
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: currentColor;
    display: inline-block;
    position: relative;
}

.icon-search {
    -webkit-mask-image: url("../images/icon-search.png");
    mask-image: url("../images/icon-search.png");
    height: 1em;
    width: 1.138em;
}

.icon-arrow-p {
    -webkit-mask-image: url("../images/icon-arrow-p.svg");
    mask-image: url("../images/icon-arrow-p.svg");
    height: 0.714em;
    width: 1.286em;
}

.icon-arrow-n {
    -webkit-mask-image: url("../images/icon-arrow-n.svg");
    mask-image: url("../images/icon-arrow-n.svg");
    height: 0.714em;
    width: 1.286em;
}

/* Site: Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 102;
    color: #fff;
}

.header-wrap {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    width: calc((373/1400)*100%);
    transition: var(--default-transition);
    padding-top: 1.563em;
    margin-right: auto;
}

.header-logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.header-logo .textwidget {
    display: flex;
    align-items: center;
}

.header-logo-main {
    width: calc((161/373)*100%);
    margin-right: auto;
}

.header-logo-broker {
    width: calc((154/373)*100%);
}

#header-nav {
    display: flex;
    align-items: center;
    gap: 1px;
}

#header-nav li {
    position: relative;
}

#header-nav li a {
    line-height: 1;
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--default-transition);
    position: relative;
    display: block;
}

#header-nav .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    min-width: 15em;
    margin-left: 1px;
    visibility: hidden;
    transition: var(--default-transition);
}

#header-nav .sub-menu > li {
    margin-bottom: 1px;
}

#header-nav .sub-menu > li > a {
    padding: 1em;
    font-size: 0.875em;
    background: var(--primary);
}

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

#header-nav li:hover > .sub-menu,
#header-nav li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
}

#header-nav > li {
    margin: 0 1.375em;
    padding: 0.125em 0;
}

#header-nav > li > a:hover,
#header-nav > li:focus-within > a {
    color: var(--secondary);
}

#header-nav > li:not(:last-child)::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 100%;
    width: 1px;
    margin-left: 1.375em;
    background: #636363;
}

#header-nav > li:first-child {
    margin-left: 0;
}

#header-nav > li:last-child {
    margin-right: 0;
}

#header-nav > li > .sub-menu {
    top: 100%;
    left: 50%;
    padding-top: 1.375em;
    transform: translateX(-50%);
}

.header-bg {
    opacity: 0;
    background: var(--primary);
    transition: var(--default-transition);
}

.header-bg canvas {
    opacity: 0.30;
    background-position-y: 35.24%;
    transform: scale(-1, -1);
}

/* Site: Fixed Header */
.fixed .header-logo {
    padding: 0.688em 0;
    width: calc((247/1400)*100%);
}

.fixed .header-logo-main {
    width: calc((107/247)*100%);
}

.fixed .header-logo-broker {
    width: calc((102/247)*100%);
}

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

.fixed .header-bg {
    opacity: 1;
}

/* Footer */
.footer {
    color: #fff;
    overflow: hidden;
    position: relative;
    padding-bottom: min(100px, 6.25vw);
}

.footer a {
    transition: var(--default-transition);
}

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

.footer-top {
    display: flex;
    justify-content: center;
    padding: 5.625em 0;
}

.footer-info {
    width: calc((650/1400)*100%);
    padding: 1.125em 8.438em 0.688em;
    border-right: 1px solid #636363;
}

.footer-info .divider {
    height: 1px;
    opacity: 0.40;
    display: block;
    background: #999;
    margin: 2.063em auto 2em;
    width: calc((335/379)*100%);
}

.footer-info img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-info-logo-main {
    display: block;
    margin: 0 auto;
    width: calc((311/379)*100%);
}

.footer-info-logo-broker {
    margin: 0 auto;
    width: calc((241/379)*100%);
}

.footer-info-contact ul {
    margin: 3.25em 0 3.75em;
}

.footer-info-contact ul li {
    line-height: 1;
    font-weight: 400;
    font-size: 0.875em;
    min-height: 1.429em;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--default-transition);
    white-space: nowrap;
    margin: 1.286em 0;
}

.footer-info-contact ul li i {
    display: inline-block;
}

.footer-info-contact ul li i.ai-font-phone {
    font-size: 1.429em;
    margin-right: 0.7em;
    width: 1em;
}

.footer-info-contact ul li i.ai-font-envelope {
    font-size: 1em;
    margin-right: 1em;
    width: 1.429em;
}

.footer-info-contact ul li i.ai-font-location-c {
    font-size: 1.5em;
    margin-right: 0.667em;
    height: 0.952em;
    width: 0.667em;
}

.footer-info-contact ul li i.ai-font-location-c::before {
    position: relative;
    left: -0.143em;
}

.footer-info-smi,
.footer-info-smi .textwidget {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25em;
}

.footer-info-smi a {
    height: 1.25em;
}

.footer-info-smi a i {
    font-size: 1.375em;
    top: -0.091em;
}

.footer-form {
    padding: 2.875em 4.688em 0;
    width: calc((650/1400)*100%);
}

.footer-form-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.footer-form-header p {
    margin: 1.111em 0;
    text-align: center;
    width: calc((306/500)*100%);
}

.footer-form-contact-fields {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 0.313em;
}

.footer-form-contact-field {
    width: calc((240/500)*100%);
    margin-bottom: 1.75em;
}

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

.footer-form-contact-field input,
.footer-form-contact-field textarea {
    width: 100%;
    border: none;
    outline: none;
    line-height: 1;
    font-weight: 400;
    font-size: 0.875em;
    letter-spacing: 0.2em;
    background: transparent;
    text-transform: uppercase;
    border-bottom: 1px solid #636363;
    padding: 0.714em 0;
}

.footer-form-contact-field textarea {
    resize: none;
    height: 5.5em;
}

.footer-form-contact-submit {
    margin-top: 0.688em;
    text-align: right;
    width: 100%;
}

.footer-form-contact-submit .site-button {
    min-width: 10em;
}

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

.footer-form .wpcf7 form .wpcf7-form-control-wrap {
    display: block;
    height: 100%;
}

.footer-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    top: 0.5em;
    left: auto;
    width: auto;
    line-height: 1;
    font-size: 12px;
    padding: 0.5em 1em;
}

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

.footer-bottom {
    z-index: 1;
    position: relative;
    padding: 5.625em 4.5em 4.375em;
}

.footer-bottom-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    box-shadow: 0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2);
}

.footer-bottom-bg::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    -webkit-backdrop-filter: blur(0.438em);
    backdrop-filter: blur(0.438em);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(6, 18, 12, 0.8);
}

.footer-bottom-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
    background-size: 15%;
    background-image: url('../images/overlay-noise.svg');
}

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

#footer-nav li {
    line-height: 1;
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.188em 1.313em 1px;
}

#footer-nav li:not(:last-child) {
    border-right: 1px solid #636363;
}

.footer-disclaimer {
    margin: 3.313em 0 2em;
}

.footer-copyright {
    margin-bottom: 1.5em;
}

.footer-disclaimer p,
.footer-copyright p {
    font-weight: 400;
    line-height: 1.714;
    font-size: 0.875em;
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0;
}

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

.footer-mls .ai-font-eho {
    font-size: 0.719em;
    margin-right: 0.522em;
}

.footer-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    height: 82.169%;
    background: linear-gradient(to bottom, rgba(4, 13, 8, 1), rgba(4, 13, 8, 0.7) 65%, transparent);
}

.footer-bg canvas {
    background-position-y: top;
}

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

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(36.875vw);
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

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

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
    width: 77.08%;
}

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

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

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

.page-template-template-fullwidth #inner-page-wrapper > .container {
    width: 100%;
}

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

#inner-page-wrapper a:not(.site-button):focus,
#inner-page-wrapper a:not(.site-button):hover {
    color: var(--secondary);
}

#inner-page-wrapper .inner-page-accent {
    min-height: 340px;
    max-height: 540px;
    height: calc((540/1600)*100vw);
}

#inner-page-wrapper .inner-page-accent::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}

#inner-page-wrapper .inner-page-accent canvas {
    background-position-y: bottom;
    -webkit-filter: invert();
    filter: invert();
}

#content .archive-title:not(.site-title),
#content .entry-title:not(.site-title) {
    font-size: clamp(40px, 3.75vw, 60px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.167;
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-family-title);
    position: relative;
    display: block;
}

#content .archive-title.site-title,
#content .entry-title.site-title {
    font-weight: 400;
    margin: 1.75em 0;
    font-size: clamp(12.4px, 1.25vw, 20px);
}

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

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

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

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

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

.error404 .wpcf7 form {
    position: relative;
}

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

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

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

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

.page-id-13 #content #breadcrumbs {
    width: 1170px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}

.page-id-13 #ai-modern-contact .ai-modern-contact-title span {
    font-weight: 500;
    color: var(--tertiary);
    font-family: var(--font-family-default);
}

.page-id-13 #ai-modern-contact .ai-modern-contact-title strong {
    color: var(--primary);
}

.page-id-13 #ai-modern-contact .ai-modern-contact-photo span:before {
    background-color: var(--primary);
}

.page-id-90 #ai-modern-about {
    margin-top: 0;
}

.page-id-90 #ai-modern-about #breadcrumbs {
    width: 1170px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}

.page-id-90 #ai-modern-about .ai-modern-about-title h2 span {
    font-weight: 500;
    color: var(--tertiary);
    font-family: var(--font-family-default);
}

.page-id-90 #ai-modern-about .ai-modern-about-title h2 strong {
    color: var(--primary);
    margin-right: -28px;
}

.page-id-90 #ai-modern-about .ai-modern-about-photo {
    margin-right: 60px;
}

.page-id-90 #ai-modern-about .ai-modern-about-photo:before {
    background-color: var(--primary);
}

.page-id-90 #ai-modern-about .ai-modern-about-photo:after {
    display: none;
}

.page-id-90 #ai-modern-about .ai-template-form-wrap:after {
    opacity: 1;
}

.ai-modern-contact-smis {
    margin-top: 10px;
}
.ai-modern-contact-smis a {
    font-size: 21px !important;
    margin-right: 20px;
}

html body #ai-modern-about .ai-modern-about-smi li a:hover {
    color: #fff;
}

html body.aios-custom-ihomefinder-shortcode #inner-page-wrapper > .container {
    width: 100%;
}

html body #listings-details .listings-hero-single .aios-custom-ihomefinder-template-img-loader:after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    display: block;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

@media only screen and (max-width: 1199px) {
    .page-id-90 #ai-modern-about #breadcrumbs {
        width: 970px;
    }

    .page-id-90 #ai-modern-about .ai-modern-about-photo {
        margin-right: -30px;
    }

    .page-id-90 #ai-modern-about .ai-modern-about-photo canvas {
        margin-left: 0;
        width: 85%;
    }

    .page-id-13 #content #breadcrumbs {
        width: 970px;
    }
}

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

    .amh-fixed-header-nav .amh-header-buttons {
        background: var(--primary);
        color: #fff;
    }

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

    .site-container {
        width: 80%;
        min-width: 280px;
        padding: max(10vw, 65px) 0;
    }

    .site-title {
        padding-left: 0;
        text-align: center;
    }

    .site-title::before {
        background: transparent;
    }

    .site-button {
        line-height: 1.4;
    }

    .header, .fixed.header {
        position: relative;
        z-index: 2;
    }

    .header-wrap {
        padding: 0;
        width: 100%;
    }

    .header-bg, .fixed .header-bg {
        opacity: 1;
    }

    .header-logo, .fixed .header-logo {
        width: 100%;
        margin: 0 auto;
        max-width: 300px;
        padding: calc(1.25em + 52px) 0 1.25em;
    }

    .header-logo-main, .fixed .header-logo-main {
        width: calc((171 / 373)* 100%);
    }

    .header-logo-broker, .fixed .header-logo-broker {
        width: calc((164 / 373)* 100%);
    }

    .header-menu {
        display: none;
    }

    .footer {
        padding-bottom: 0;
    }

    .footer-top {
        flex-direction: column-reverse;
        padding-top: 0;
    }

    .footer-form {
        width: 100%;
        padding: 0 0 4em;
    }

    .footer-form-contact-submit {
        text-align: center;
    }

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

    .footer-info {
        width: 100%;
        padding: 0;
        border-right: none;
    }

    .footer-info-logo {
        max-width: 320px;
        margin: 3em auto 0;
    }

    .footer-bottom {
        padding: 4em 3em;
    }

    #footer-nav {
        gap: 1em;
        flex-direction: column;
        align-items: center;
    }

    #footer-nav li:not(:last-child) {
        border: none;
    }

    .footer-bottom-bg {
        left: 0;
        width: 100%;
    }

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

    #content .archive-title:not(.site-title),
    #content .entry-title:not(.site-title) {
        font-size: clamp(34px, 6.054vw, 60px);
    }

    #content .archive-title.site-title,
    #content .entry-title.site-title {
        font-size: clamp(17.5px, 2.018vw, 20px);
    }

    .page-id-90 #ai-modern-about #breadcrumbs {
        width: 750px;
    }

    .page-id-90 #ai-modern-about .ai-modern-about-photo {
        margin-right: 0px;
    }

    .page-id-90 #ai-modern-about .ai-modern-about-photo canvas {
        margin-left: auto;
        width: 100%;
    }

    .page-id-90 #ai-modern-about .ai-modern-about-title h2 strong {
        width: 100%;
        margin-right: 0;
    }

    .page-id-13 #content #breadcrumbs {
        width: 750px;
    }
}

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

    .page-id-90 #ai-modern-about #breadcrumbs {
        width: 100%;
    }

    .page-id-13 #content #breadcrumbs {
        width: 100%;
    }
}

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

    .footer-wrap {
        padding-bottom: 0;
    }

    .footer-form-header p {
        width: 100%;
    }

    .footer-form-contact-field {
        width: 100%;
        margin-bottom: 2em;
    }

    .footer-info-contact ul li {
        line-height: 1.4;
        text-align: center;
    }

    .footer-bottom {
        padding-left: 1em;
        padding-right: 1em;
    }

    .footer-bottom-bg {
        left: 50%;
        width: 102vw;
        transform: translateX(-50%);
    }
}

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

#inner-page-wrapper #listings-results .listings-grid .listings-col:hover .listings-footer {
    background: #ebebeb
}

#inner-page-wrapper #listings-results .listings-sort .sort-dropdown>div input[type=submit] {
    background: #000
}

#inner-page-wrapper #listings-results .listings-sort ul li.active a,#inner-page-wrapper #listings-results .listings-sort ul li a:hover {
    color: #646464
}

#inner-page-wrapper #listings-results .listings-list .listings-col:nth-child(2n) {
    background: #ebebeb
}

#inner-page-wrapper #listings-results .listings-table .listings-table-body .listings-table-label {
    background: #000
}

#inner-page-wrapper #listings-results .listings-pagination ul li.active a,#inner-page-wrapper #listings-results .listings-pagination ul li a.active,#inner-page-wrapper #listings-results .listings-pagination ul li a:hover {
    color: #000;
    border-color: #646464;
    background: #ebebeb
}