:root {
    /** Font default */
    --font-family-default: "Maven Pro", sans-serif;
    --font-family-title: "Playfair Display", serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: var(--secondary-light);
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #a2bdda;
    --secondary: #474747;
    --primary-light: #e7f1fa;
    --secondary-light: #747474;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --transition: .3s ease;
    --primary-gradient: var(--primary), #cce0f2;
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    color: var(--font-color-default);
    background: #FFFFFF;
    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; */
}

a, em.ai-mobile-phone a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

section, footer {
    position: relative;
}

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

.site-content p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.005em;
    margin: 1.75em 0;
}

.site-title {
    line-height: 1;
    font-size: 4.5em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    color: var(--primary);
}

.site-title span {
    display: block;
    line-height: 1;
    font-weight: 400;
    font-size: 0.333em;
    letter-spacing: 0.05em;
    color: var(--secondary-light);
    font-family: var(--font-family-default);
}

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

.site-button {
    position: relative;
    display: inline-block;
    padding: 0.625em 1.375em 0.75em;
    transition: var(--transition);
    z-index: 1;
}

.site-button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 2.875em;
    height: 2.875em;
    border-radius: 50%;
    background: var(--primary-light);
}

.site-button::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    width: 2.875em;
    border-radius: 1.438em;
    transition: var(--transition);
    background: linear-gradient(90deg, var(--primary-gradient));
}

.site-button span {
    font-weight: 600;
    line-height: 1.714;
    font-size: 0.875em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-button span::before,
.site-button span::after {
    position: relative;
    content: '';
    top: 1px;
    height: 1em;
    width: 1.091em;
    font-size: 0.786em;
    margin-left: 1.545em;
    display: inline-block;
    background: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/arrow-n.svg');
    mask-image: url('../images/arrow-n.svg');
}

.site-button span::before {
    position: absolute;
    top: 0.182em;
    right: 2em;
    bottom: 0;
    opacity: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.35);
}

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

.site-button:hover span {
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.35);
}

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

.site-button:hover::after {
    opacity: 1;
    width: 100%;
}

.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-position: center;
    background-repeat: no-repeat;
}

.bg-overlay-grayscale canvas {
    opacity: 0.10;
    background-color: #fff;
    background-blend-mode: luminosity;
}

.bg-overlay-color {
    background-color: var(--primary);
}

.bg-overlay-color canvas {
    opacity: 0.10;
    background-blend-mode: color;
}

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

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

.site-arrow {
    padding: 0;
    outline: none;
    width: 2.929em;
    height: 2.929em;
    background: none;
    font-size: 0.875em;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid var(--primary-light);

    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.site-arrow.prev {
    padding-right: 0.143em;
}

.site-arrow.next {
    padding-left: 0.143em;
}

.site-arrow:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.site-icon {
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 1em;
    position: relative;
    display: inline-block;
    background: currentColor;
}

.site-icon.icon-location {
    width: 0.625em;
    -webkit-mask-image: url('../images/icon-location.png');
    mask-image: url('../images/icon-location.png');
}

.site-icon.icon-quote {
    width: 1.2em;
    -webkit-mask-image: url('../images/icon-quote.png');
    mask-image: url('../images/icon-quote.png');
}

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

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

.is-white {
    color: #fff;
}

/* ===/ Start: Header /=== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
}

.header-wrap {
    width: 100%;
    color: #fff;
    display: flex;
    margin: 0 auto;
    max-width: 1600px;
    transition: var(--transition);
    padding: min(35px, 2.1875vw) min(50px, 3.125vw) 0;

}

.header-logo {
    margin-right: auto;
}

.header-logo a {
    color: inherit;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    transition: unset;
}

.header-logo a strong {
    display: block;
    line-height: 1;
    font-size: 2em;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: var(--font-family-title);
}

.header-logo a span {
    display: block;
    line-height: 1;
    font-size: 1.125em;
    font-weight: 400;
    letter-spacing: 1em;
    margin-top: 0.722em;
}

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

#header-nav li {
    position: relative;
}

#header-nav li > .sub-menu {
    opacity: 0;
    min-width: 11.875em;
    position: absolute;
    visibility: hidden;
    transition: var(--transition);
}

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

#header-nav > li {
    margin: 1.125em 1.625em 0;
}

#header-nav > li > a {
    display: block;
    color: inherit;
    line-height: 1;
    font-weight: 500;
    font-size: 0.875em;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    /* transition: var(--transition); */
}

#header-nav > li > a::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    height: 1px;
    width: 6.143em;
    margin: 0.857em 0 0;
    background: var(--primary);
    transform-origin: left;
    transform: translateX(-50%) scaleX(0);
    transition: var(--default-transition);
}

#header-nav > li > a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

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

#header-nav .sub-menu > li > a {
    display: block;
    line-height: 1.2;
    font-weight: 500;
    font-size: 0.938em;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--primary-light);
    color: var(--secondary-light);
    position: relative;
    padding: 0.4em 1.2em;
}

/* #header-nav .sub-menu > li:first-child > a {
	padding-top: 6px;
}

#header-nav .sub-menu > li:last-child > a {
	padding-bottom: 6px;
} */

#header-nav .sub-menu > li > a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: var(--transition);
    background: linear-gradient(90deg, var(--primary-gradient));
}

#header-nav .sub-menu > li > a:hover,
#header-nav .sub-menu > li > a:focus {
    color: #fff;
    text-decoration: none;
    background: transparent;
}

#header-nav .sub-menu > li > .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
}

.header.fixed {
    background: var(--primary-light);
}

.header.fixed .header-wrap {
    padding-top: min(21px, 1.3125vw);
    padding-bottom: min(24px, 1.5vw);
    color: var(--secondary-light);
}

.header.fixed #header-nav > li {
    margin-top: 1.688em;
}

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

/* ===/ End: Header /=== */

/* ===/ Start: Contact /=== */
.contact-wrap {
    padding: min(152px, 9.5vw) min(75px, 4.6875vw) min(112px, 7vw);
}

.contact-fields {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 1.313em;
}

.contact-fields .form-field {
    width: calc((375/1170)*100%);
    position: relative;
}

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

.contact-fields .form-field input,
.contact-fields .form-field textarea {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1em;
    line-height: 1.5;
    background: #fff;
    letter-spacing: 0.05em;
    padding: 1em 1.625em 1.125em;
    transition: var(--transition);
    border: 0.188em solid transparent;
}

.contact-fields .form-field textarea {
    height: 10.875em;
    resize: none;
}

.contact-fields .form-field input:hover,
.contact-fields .form-field textarea:hover {
    border-color: var(--primary);
}

.contact-fields .form-field button[type="submit"] {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0;
    border: none;
    outline: none;
    font-size: 2.188em;
    color: var(--primary);
    margin: 0.429em 0.571em;
    background: transparent;
    transition: var(--transition);
}

.contact-fields .form-field button[type="submit"]:hover {
    color: var(--secondary);
}

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

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

.contact-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 1;
    margin: 1em 0 0;
    font-size: 0.75em;
    text-align: center;
    padding: 0.5em 0.1em;
    background: #fff;
}

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

.contact-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.15));
}

.contact-bg canvas {
    opacity: 0.34;
    background-color: var(--primary);
}

/* ===/ End: Contact /=== */

/* ===/ Start: Footer /=== */
.footer-wrap {
    color: #fff;
    margin: 0 auto;
    max-width: 1144px;
    width: calc((1144/1600)*100%);
    padding: min(92px, 5.75vw) 0 min(78px, 4.875vw);
}

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

.footer-logo a {
    display: block;
    color: inherit;
    text-align: center;
    text-transform: uppercase;
}

.footer-logo a strong {
    display: block;
    line-height: 1;
    font-weight: 400;
    font-size: 3.188em;
    letter-spacing: 0.05em;
    font-family: var(--font-family-title);
}

.footer-logo a span {
    display: block;
    line-height: 1;
    font-weight: 400;
    font-size: 1.875em;
    letter-spacing: 1em;
    margin-top: 0.533em;
}

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

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.25em 0 2.125em;
    gap: 2.313em;
}

.footer-contact span {
    line-height: 1;
    font-weight: 500;
    font-size: 1.125em;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.footer-contact span a:hover {
    color: var(--primary-light);
}

.footer-contact span i.ai-font-phone {
    top: 0.167em;
    font-size: 0.667em;
    margin-right: 0.5em;
}

.footer-contact span i.ai-font-envelope-f {
    top: 0.2em;
    font-size: 0.556em;
    margin-right: 0.6em;
}

.footer-contact span i.ai-font-location-c {
    height: 0.722em;
    margin-right: 0.25em;
}

.footer-smi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.footer-smi a {
    font-size: 1em;
    width: 2.063em;
    height: 2.063em;
    background: #fff;
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-smi a:hover {
    color: var(--secondary-light);
    background: var(--primary-light);
}

.footer-menu {
    margin: 3em 0 2.875em;
}

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

#footer-nav li > a {
    display: block;
    line-height: 1;
    font-weight: 500;
    font-size: 0.875em;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#footer-nav li > a:hover {
    color: var(--primary-light);
}

.footer-disclaimer {
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.75em;
    text-align: center;
    letter-spacing: 0.08em;
}

.footer-disclaimer a:hover {
    color: var(--primary-light);
}

.footer-mls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.7em 0 0.533em;
    font-size: 1.875em;
    gap: 0.367em;
}

.footer-mls .ai-font-eho {
    font-size: 0.8em;
}

.footer-copyright {
    line-height: 2;
    font-weight: 400;
    font-size: 0.75em;
    text-align: center;
    letter-spacing: 0.1em;
}

.footer-copyright a:hover {
    color: var(--primary-light);
}

/* ===/ End: Footer /=== */

/* ===/ Start: Newsletter /=== */
.newsletter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

.newsletter-backdrop {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.47;
    background: #000;
}

.newsletter-wrap {
    margin: 0 auto;
    width: min(1025px, 64.0625vw);
    display: flex;
    background: #fff;
    position: relative;
    transform: scale(0);
    transition: var(--transition);
}

.newsletter-text {
    background: #fff;
    width: calc((711/1025)*100%);
    padding: 7.61% 8.49% 7.02%;
}

.newsletter-text p {
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin: 0.563em 0 2.125em;
}

.newsletter-title {
    line-height: 1;
    font-size: 3em;
    font-weight: 400;
    letter-spacing: 0;
    color: vaR(--primary);
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.newsletter-title span {
    font-weight: 400;
    line-height: 1.333;
    font-size: 0.375em;
    text-transform: none;
    letter-spacing: 0.05em;
    color: var(--secondary-light);
    margin-top: 0.222em;
    display: block;
}

.newsletter-form .form-field {
    width: 100%;
    margin-bottom: 0.813em;
}

.newsletter-form .form-field input {
    width: 100%;
    outline: none;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: var(--transition);
    padding: 0.813em 1.188em 1.063em;
    border: 1px solid var(--secondary-light);
}

.newsletter-form .form-field input:hover,
.newsletter-form .form-field input:focus {
    border-color: var(--primary);
}

.newsletter-form .form-button {
    margin-top: 2.188em;
}

.newsletter-form .form-button button {
    background: none;
    outline: none;
    border: none;
}

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

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

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

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

.newsletter-photo {
    width: calc((315/1025)*100%);
}

.newsletter-close {
    position: absolute;
    top: -3.5em;
    right: -3.583em;
    width: 2.833em;
    height: 2.833em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    transition: var(--transition);
    font-size: 0.75em;
    background: none;
    color: #fff;
}

.newsletter-close:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.newsletter-accent {
    background: var(--primary);
}

.newsletter-accent-a {
    position: absolute;
    top: -8.42%;
    left: -3.61%;
    width: 41.27%;
    height: 23.25%;
    z-index: -2;
}

.newsletter-accent-b {
    position: absolute;
    right: -3.80%;
    bottom: -8.42%;
    width: 41.27%;
    height: 23.25%;
    z-index: -1;
}

.newsletter-accent canvas {
    width: 100%;
    height: 100%;
    opacity: 0.16;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.popup-active.newsletter {
    opacity: 1;
    visibility: visible;
}

.popup-active .newsletter-wrap {
    transform: scale(1);
    transition-duration: 0.5s;
    transition-delay: 0.2s;
}

/* ===/ End: Newsletter /=== */

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

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

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

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

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

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

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

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

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

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

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

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

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7;
}

#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
    line-height: 1;
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    color: var(--primary);
}

#content .archive-subtitle {
    font-size: clamp(22px, 2vw, 32px);
    margin-top: 0;
}

#content .entry-custom-title {
    display: block;
    line-height: 1;
    font-weight: 400;
    font-size: clamp(18px, 1.5vw, 24px);
    letter-spacing: 0.05em;
    color: var(--secondary-light);
    font-family: var(--font-family-default);
}

#content .entry-custom-title span {
    display: block;
    line-height: 1;
    font-size: 3em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    color: var(--primary);
}

#content a:hover,
#content em.ai-mobile-phone a:hover {
    color: var(--primary);
}

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

.page-id-15 #content #breadcrumbs {
    width: 1170px;
    padding: 0 15px;
    margin: 1.12em auto;
}

.page-id-15 #content #breadcrumbs > span {
    margin-left: calc(((100vw - 1140px) / -2) + 104px);
}

.page-id-20 #ai-modern-about .ai-modern-about-content div.col-md-9 {
    float: none;
    width: 100%;
}

.page-id-20 #ai-modern-about .ai-modern-about-content div.col-md-9 h3 {
    margin-top: 0;
}

.page-id-20 #ai-modern-about .ai-modern-about-photo:before {
    height: 105vw;
    background: var(--secondary);
}

.page-id-20 #ai-modern-about .ai-modern-about-title {
    color: var(--primary);
}

.page-id-20 #inner-page-wrapper > .container > #ai-modern-about {
    margin-top: 0;
}

.page-id-20 #content #breadcrumbs {
    width: 1170px;
    padding: 0 15px;
    margin: 1.12em auto;
}

.page-id-21 #agents-results .agents-pagination span.current {
    cursor: default;
}

.page-id-21 #agents-results .agents-list .agents-box-col > .agents-box > div .agent-image-photo .agent-box-hover .agent-box-hover-info .agents-read-bio:hover {
    color: var(--aios-agents-text-color);
}   

.single-aios-agents #agents-single .agents-contact li a:hover {
    color: var(--aios-agents-primary-color);
}

.single-aios-agents #agents-single .agents-button:hover {
    background: var(--aios-agents-primary-color);
    border-color: var(--aios-agents-primary-color);
}

.ihf-container-modal #ihf-main-container.ihf-modal-container .modal input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: #636363;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

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

.aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    -webkit-filter: brightness(0) invert() drop-shadow(0 0px 2px #000);
    filter: brightness(0) invert() drop-shadow(0 0px 2px #000);
}

.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-results-template #listings-results .listings-table .listings-table-body .listings-table-label {
    color: #fff;
}

.ihf-results-template #inner-page-wrapper,
.ihf-results-template:not(.aios-custom-ihomefinder-shortcode) #inner-page-wrapper {
    margin-bottom: 0;
}

.ihf-results-template #content-full {
    margin-bottom: 30px;
}

.ihf-results-template #listings-results .listings-grid .listings-media li img {
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25)) drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25)) drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.error404 .wpcf7 form {
    position: relative;
}

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

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

@media only screen and (max-width: 1199px) {
    .page-id-15 #content #breadcrumbs {
        width: 970px;
    }

    .page-id-15 #content #breadcrumbs > span {
        margin-left: calc(((100vw - 940px) / -2) + 104px);
    }

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

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

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

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

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

    .aios-mobile-header-2 .amh-fixed-header-nav .amh-header-buttons {
        color: #fff !important;
        background: var(--primary);
    }

    /* ===/ Start: Header /=== */
    .header, .fixed.header {
        position: static;
        margin-top: 52px;
        background: var(--primary);
    }

    .header .header-wrap,
    .fixed.header .header-wrap {
        padding: 20px 15px;
    }

    .header .header-logo,
    .fixed.header .header-logo {
        margin-left: auto;
        color: #fff;
    }

    .header-menu {
        display: none;
    }

    /* ===/ End: Header /=== */

    /* ===/ Start: Contact /=== */
    .contact-fields {
        gap: 0.5em;
    }

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

    .contact-bg::after {
        background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.15) 40%);
    }

    /* ===/ End: Contact /=== */

    /* ===/ Start: Footer /=== */
    .footer-wrap {
        width: 80%;
        min-width: 280px;
        padding: max(8vw, 65px) 0;
    }

    .footer-contact {
        gap: 1.2em;
        margin: 3em 0;
        flex-direction: column;
    }

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

    .footer-disclaimer {
        font-size: 0.8em;
        line-height: 1.8;
    }

    .footer-mls {
        margin: 1em 0;
    }

    .footer-copyright {
        padding: 0 15px;
    }

    /* ===/ End: Footer /=== */

    /* ===/ Start: Newsletter /=== */
    .newsletter-wrap {
        width: 80%;
        min-width: 280px;
        max-width: 700px;
    }

    .newsletter-photo {
        display: none;
    }

    .newsletter-text {
        width: 100%;
        padding: 4em 3em 6em;
    }

    .newsletter-close {
        right: 0;
    }

    /* ===/ End: Newsletter /=== */

    /* 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-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: clamp(36px, 7.265vw, 72px);
    }

    #content .entry-custom-title {
        font-size: clamp(18px, 2.42vw, 24px);
    }

    #content .entry-custom-title span {
        font-size: clamp(36px, 7.265vw, 72px);
    }

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

    .page-id-15 #content #breadcrumbs > span {
        margin-left: 0;
    }

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

    .page-id-73 #aios-testimonials.aios-testimonials-page h1 {
        font-size: clamp(36px, 7.265vw, 72px);
    }
}

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

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

    .page-id-15 #content #breadcrumbs,
    .page-id-20 #content #breadcrumbs {
        width: 100%;
    }

    #agents-results .agents-list .agents-box-col>.agents-box, 
    #agents-results .agents-list .agents-box-col>.agents-box:hover {
        width: 100% !important;
    }

    #agents-results .agents-list .agents-box-col>.agents-box>div .agent-image-photo canvas {
        height: 100% !important;
    }

    #agents-results .agents-list .agents-box-col > .agents-box > div .agent-information {
        margin-bottom: 40px;
    }
}

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

    .site-title {
        font-size: 4em;
    }

    .contact-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip,
    .contact-form .wpcf7 form .wpcf7-response-output {
        font-size: 12px;
    }

    .footer-logo {
        font-size: 0.6em;
    }

    .footer-smi a {
        font-size: 1.2em;
    }

    .newsletter-text {
        padding: 4em 2em;
    }

    .newsletter-title {
        font-size: 2.25em;
    }

    .newsletter-title span {
        font-size: 0.5em;
    }

    .ihf-container-modal #ihf-main-container.ihf-modal-container .modal input[type=text], 
    .ihf-container-modal #ihf-main-container.ihf-modal-container .modal input[type=email], 
    .ihf-container-modal #ihf-main-container.ihf-modal-container .modal input[type=tel], 
    .ihf-container-modal #ihf-main-container.ihf-modal-container .modal textarea, 
    .ihf-container-modal #ihf-main-container.ihf-modal-container .modal select {
        font-size: 13px;
    }
}

@media print {

  .aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    margin-top: 50px;
  }

}