:root {
    /** Font default */
    --font-family-default: "Mulish", sans-serif;
    --font-family-title: "Cormorant", serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #000;
    --secondary: #d6ad60;
    --tertiary: #ccb9a1;
    --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);
    font-variant-numeric: lining-nums;
    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; */
}

#main-wrapper {
    overflow: hidden;
}

a, em.ai-mobile-phone a {
    color: inherit;
    text-decoration: none;
    transition: 300ms ease;
}

a:hover, em.ai-mobile-phone a:hover,
a:focus, em.ai-mobile-phone a:focus {
    text-decoration: none;
    color: var(--secondary);
}

section {
    position: relative;
}

.site-content {
    font-size: clamp(9.92px, 1vw, 16px);
}

.site-title {
    line-height: 1;
    font-weight: 300;
    font-size: 1.125em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-title span {
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 3.889em;
    font-family: var(--font-family-title);
    margin-top: 0.057em;
    display: block;
}

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

.site-button {
    font-weight: 400;
    line-height: 1.923;
    font-size: 0.813em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-block;
}

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

.site-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 13.563em;
}

.site-arrow {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    width: 0.545em;
    background: none;
    font-size: 1.375em;
    color: var(--tertiary);
    transition: var(--default-transition);
}

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

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

.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: 300ms ease;
}

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

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    color: #fff;
    transition: var(--default-transition);
}

.header-wrap {
    display: flex;
    align-items: center;
    padding-top: min(37px, 2.3125vw);
    transition: var(--default-transition);
}

.header-logo {
    margin-right: auto;
    width: calc((395/1400)*100%);
    transition: var(--default-transition);
}

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

.header-contact-menu {
    max-width: calc((955/1400)*100%);
    padding-top: 1.125em;
}

.header-contact {
    width: 100%;
    margin-bottom: 15px;
}

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

.header-contact ul li {
    margin-left: 10px;
}

.header-contact ul li i {
    margin-right: 5px;
}

.header-contact ul li i.ai-font-envelope-f {
    font-size: 10px;
}

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

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

#header-nav > li:not(:first-child) {
    margin-left: 3.313em;
}

#header-nav > li > a {
    line-height: 1;
    font-weight: 600;
    text-align: center;
    font-size: 0.938em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: -0.977px 2.837px 5px rgba(0, 0, 0, 0.25);
}

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

#header-nav .custom-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    width: 100%;
    padding: 2.625em 0 0;
    visibility: hidden;
    transform: translateY(1em);
    transition: var(--default-transition);
}

#header-nav .custom-submenu::before {
    line-height: 1;
    font-weight: 500;
    text-align: left;
    font-size: 1.25em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    content: attr(data-title);
    padding: 0.6em 0;
    display: block;
}

#header-nav > li:hover > .custom-submenu,
#header-nav > li:focus-within > .custom-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#header-nav > li > .sub-menu {
    display: none;
}

#header-nav .sub-menu {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    max-height: 6.25em;
}

#header-nav .sub-menu > li > a {
    line-height: 1;
    font-weight: 400;
    font-size: 0.813em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin: 0.769em 0;
}

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

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

.fixed .header-wrap {
    padding: 0.625em 0 0.688em;
}

.fixed .header-logo {
    width: calc((287/1400)*100%);
}

.fixed .header-contact-menu {
    padding: 0;
}

.burger-open {
    margin: 0;
    padding: 0;
    color: #fff;
    outline: none;
    width: 2.438em;
    height: 0.563em;
    background: none;
    position: relative;
    border: 1px solid currentColor;
    border-left: 0;
    border-right: 0;
    margin-left: 3.125em;
    transition: var(--default-transition);
}

.burger-open:hover {
    color: var(--secondary);
}

.header-bg {
    --baseheight: min(241px, 15.0625vw);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--default-transition);
    min-height: calc(var(--baseheight) + var(--subheight));
}

.fixed .header-bg {
    --baseheight: min(206px, 12.875vw);
}

.header-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(50deg, #000 70%, rgba(0, 0, 0, 0.65));
}

.header-bg canvas {
    background-position-y: 14.5%;
}

.submenu-active .header-bg {
    opacity: 1;
    visibility: visible;
}

/* BURGER */
.burger-active {
    overflow: hidden;
}

.burger-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: var(--default-transition);
    transition-duration: 1s;
}

.burger-active .burger-wrap {
    transform: translateX(0%);
}

.burger-overlay {
    width: 100%;
    height: 100%;
}

.burger-bun {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    width: calc((975/1600)*100%);
    padding: min(68px, 4.25vw) min(88px, 5.5vw) min(68px, 4.25vw) min(98px, 6.125vw);
}

.burger-logo {
    width: calc((388/789)*100%);
}

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

.burger-menu {
    padding: calc((40/789)*100%) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#burger-nav {
    display: flex;
    flex-flow: row wrap;
}

#burger-nav > li {
    padding: 0.25em 0;
    margin: 1em 0;
}

#burger-nav > li.menu-item-has-children {
    min-width: 15em;
}

#burger-nav > li.menu-item-has-children.menu-item-45 {
    min-width: 33em;
}

#burger-nav > li.menu-item-51 {
    margin-left: -1.65em;
}

#burger-nav > li > a {
    line-height: 1;
    font-weight: 500;
    font-size: 1.25em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

#burger-nav .sub-menu {
    display: flex;
    flex-flow: column wrap;
    max-height: 7.875em;
    margin-top: 1.25em;
    gap: 1.25em 2.5em;
}

#burger-nav .sub-menu li a {
    line-height: 1;
    font-weight: 300;
    font-size: 0.813em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

#burger-nav .sub-menu li a:hover {
    color: var(--secondary);
}

.burger-close {
    position: absolute;
    width: 1em;
    height: 1em;
    top: 2.333em;
    right: 2.833em;
    line-height: 1;
    font-size: 1.875em;
    background: none;
    color: #fff;
    outline: none;
    border: none;
    padding: 0;
    transition: var(--default-transition);
}

.burger-close:hover {
    color: var(--secondary);
}

.burger-contact {
    padding: calc((48/789)*100%) 0 0;
}

.burger-contact a {
    line-height: 1;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.burger-contact a:not(:last-child) {
    margin-bottom: 1.375em;
}

.burger-contact a i {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    color: var(--secondary);
    margin-right: 1.375em;
    line-height: 1;
    width: 1.188em;
}

.burger-contact a i.ai-font-cellphone {
    width: 0.95em;
    font-size: 1.25em;
    margin-right: 0.8em;
}

.burger-contact a i.ai-font-envelope-f {
    top: 1px;
    width: 1.462em;
    font-size: 0.813em;
    margin-right: 1.231em;
}

.burger-contact a i.ai-font-location-c {
    width: 0.905em;
    font-size: 1.313em;
    margin-right: 0.762em;
}

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

.burger-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, #000 40%, rgba(0, 0, 0, 0.75));
}

.burger-active .burger-bg {
    position: fixed;
    left: 0;
    right: 0;
    margin-left: auto;
    width: calc((975 / 1600)* 100%);
}

/* CONTACT US */
.contact {
    background: var(--primary);
    color: #fff;
}

.contact-wrap {
    display: flex;
    justify-content: space-between;
    padding: min(60px, 3.75vw) 0 min(130px, 8.125vw);
}

.contact-text {
    text-align: center;
    width: calc((697/1400)*100%);
    padding: calc((65/1400)*100%) 0 0 calc((130/1400)*100%);
}

.contact-form {
    margin-top: calc((39/567)*100%);
}

.contact-fields {
    display: flex;
    flex-flow: row wrap;
    gap: 0.938em 0.5em;
}

.form-field {
    width: calc((279/567)*100%);
}

.form-field.message,
.form-buttons {
    width: 100%;
}

.form-field input,
.form-field textarea {
    width: 100%;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 2.143;
    letter-spacing: 0.05em;
    border: 0.143em solid rgba(255, 255, 255, 0.5);
    padding: 0.714em 1.357em 0.786em;
    background: none;
    outline: none;
}

.form-field textarea {
    resize: none;
    height: 8.857em;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #fff;
}

.form-buttons {
    margin-top: 2.786em;
}

.form-buttons button {
    border: none;
    outline: none;
    background: none;
    transition: var(--default-transition);
}

.contact-form .wpcf7 form .wpcf7-response-output {
    margin-top: 2em;
    position: absolute;
    left: 0;
    right: 0;
}

.contact-photo {
    z-index: 1;
    width: calc((640/1400)*100%);
}

.contact-photo::before {
    position: absolute;
    content: '';
    left: 0;
    right: calc((-50/640)*100%);
    bottom: calc((-50/570)*100%);
    height: calc((240/570)*100%);
    width: calc((690/640)*100%);
    background: var(--secondary);
    z-index: -1;
}

.contact-photo img {
    opacity: 0.35;
}

.contact-photo canvas {
    background: var(--primary);
}

/* FOOTER */
.footer {
    background: var(--primary);
    color: #fff;
}

.footer-wrap {
    padding: min(100px, 6.25vw) 0 min(132px, 8.25vw);
}

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

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

.footer-logo .primary-logo {
    width: calc((545/1400)*100%);
    padding: 0 calc((40/1400)*100%);
}

.footer-logo .secondary-logo {
    position: relative;
    width: calc((443/1400)*100%);
    padding: 0 calc((40/1400)*100%);
}

.footer-logo .secondary-logo::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 0.125em;
    height: 4.375em;
    background: rgba(255, 255, 255, 0.5);
}

.footer-logo .secondary-logo img {
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
}

.footer-info {
    padding: 3.188em 0 2.375em;
}

.footer-info,
.footer-info > .textwidget {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.footer-info a {
    line-height: 1;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    margin: 0 2.375em;
}

.footer-info a i {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    color: var(--secondary);
    margin-right: 1.375em;
    line-height: 1;
}

.footer-info a i.ai-font-cellphone {
    width: 0.636em;
    font-size: 1.375em;
    margin-right: 0.65em;
}

.footer-info a i.ai-font-location-c {
    width: 0.714em;
    font-size: 1.313em;
}

.footer-info a i.ai-font-envelope-f {
    top: 1px;
    width: 1.462em;
    font-size: 0.813em;
}

.contact-info-details-wrap {
    display: flex;
    justify-content: center;
}

.contact-info-details-wrap:not(:last-child) {
    margin-bottom: 3em;
    gap: 6em;
}

.contact-info-details-wrap li {
    display: flex;
}

ul.contact-info-details-wrap {
    margin-right: -3em;
}

.contact-info-details {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 1.8;
    gap: 1em;
}

.contact-info-details a {}

.contact-info-details span {
    line-height: 1;
    font-weight: 600;
    font-size: 0.938em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
}

.contact-info-details span:not(:first-child) {
    font-weight: 400;
}

.footer-menu {
    padding: 2.375em 0 2.938em;
}

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

#footer-nav li {
    line-height: 1;
    font-weight: 600;
    font-size: 0.938em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 1.8em;
}

#footer-nav li a:hover {
    color: var(--secondary);
}

.footer-copyright {
    font-weight: 300;
    line-height: 1.538;
    font-size: 0.813em;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3.462em 0 2em;
    text-align: center;
}

.footer-copyright span {
    text-transform: uppercase;
}

.footer-realtor {
    font-size: 1.875em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-realtor i.ai-font-eho {
    font-size: 0.767em;
    margin-right: 0.478em;
}

/* HOME VALUATION POPUP */
.aiosp-bg {
    opacity: 0.73;
}

.aiosp-wrap .aiosp-ref-\#hv-popup .aiosp-content {
    padding: 0;
    width: calc((831/1584)*100%);
    min-height: calc((332/1600)*100vw);
}

.aiosp-wrap .aiosp-ref-\#hv-popup .aiosp-content .aiosp-close {
    opacity: 1;
    width: 22px;
    height: 22px;
    background: none;
    font-size: 0;
    right: -37px;
    top: -22px;
}

.aiosp-wrap .aiosp-ref-\#hv-popup .aiosp-content .aiosp-close::before {
    content: "\b0242";
    font-family: agentimage !important;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    transition: var(--default-transition);
}

.aiosp-wrap .aiosp-ref-\#hv-popup .aiosp-content .aiosp-close:hover::before {
    color: var(--secondary);
}

.hv-wrap {
    display: flex;
}

.hv-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: calc((495/830)*100%);
}

.hv-title {
    line-height: 1;
    font-weight: 300;
    font-size: 1.125em;
    text-align: center;
    letter-spacing: 0.12em;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 2.333em;
}

.hv-title span {
    display: block;
    line-height: 1;
    font-weight: 400;
    font-size: 2.667em;
    color: var(--primary);
    font-family: var(--font-family-title);
    margin-top: 0.25em;
}

.hv-photo {
    width: calc((336/830)*100%);
}

.hv-photo::before {
    position: absolute;
    content: '';
    top: 1.25em;
    left: 1.25em;
    right: -1.25em;
    bottom: -1.25em;
    background: var(--secondary);
}

/* SEND MESSAGE POPUP */
.sm-popup {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-width: 678px;
    width: calc((678/1600)*100%);
}

.sm-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
}

.sm-close {
    position: absolute;
    top: 1em;
    right: 0.636em;
    width: 1em;
    height: 1em;
    border: none;
    outline: none;
    background: none;
    font-size: 1.375em;
    line-height: 1;
    color: #fff;
    padding: 0;
    z-index: 1;
    transition: var(--default-transition);
}

.sm-close:hover {
    color: var(--secondary);
}

.sm-text {
    align-self: center;
    width: calc((488/678)*100%);
    padding: 1.063em 3em 2.625em;
}

.sm-title {
    line-height: 1;
    font-weight: 400;
    font-size: 1.875em;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.sm-fields {
    display: flex;
    flex-flow: row wrap;
    text-align: center;
    margin-top: 1em;
    gap: 0.8em;
}

.sm-field {
    width: calc((189/391)*100%);
}

.sm-field.subject,
.sm-field.message {
    width: 100%;
}

.sm-field input,
.sm-field textarea {
    color: #000;
    font-weight: 300;
    line-height: 2.5;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 0, 0, 0.7);
    padding: 0.25em 1.667em;
    background: none;
    outline: none;
    width: 100%;
}

.sm-field input::placeholder,
.sm-field textarea::placeholder {
    color: #666;
}

.sm-field textarea {
    height: 6.5em;
    resize: none;
    padding-top: 1em;
}

.sm-field .wpcf7-not-valid-tip {
    font-size: 0.75em;
    background: #fff;
    padding: 0.5em 1em;
    border: 1px solid currentColor;
    position: absolute;
    right: 0.5em;
    left: auto;
    top: 0;
}

.sm-field #sm-subject {
    display: flex;
    align-items: center;
    padding-top: 0.375em;
    gap: 1em;
}

.sm-field .wpcf7-list-item {
    margin-left: 0;
}

.sm-field .wpcf7-list-item label {
    display: flex;
    align-items: center;

    font-weight: 300;
    line-height: 2.5;
    font-size: 0.75em;
    letter-spacing: 0.05em;
}

.sm-field .wpcf7-list-item label input {
    width: auto;
    display: none;
    margin-right: 0.833em;
}

.sm-field .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.917em;
}

.sm-field .wpcf7-list-item-label::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 1.083em;
    height: 1.083em;
    border-radius: 50%;
    transition: var(--default-transition);
    border: 1px solid rgba(0, 0, 0, 0.7);
}

.sm-field .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label::before {
    background: var(--secondary);
    border-color: var(--secondary);
}

.sm-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    text-align: center;
    right: 0;
    left: 0;
}

.sm-buttons {
    width: 100%;
}

.sm-buttons .site-button {
    border: none;
    outline: none;
    background: none;
    transition: var(--default-transition);
}

.sm-photo {
    background: var(--primary);
    width: calc((190/678)*100%);
}

.sm-photo img {
    opacity: 0.5;
}

.wpcf7 form {
    position: relative;
}

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

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

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

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-34 #ai-classic-contact-wrap .ai-classic-contact-informations li i {
    font-style: normal;
}

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

#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    font-size: clamp(50px, 4.375vw, 70px);
    font-family: var(--font-family-title);
    text-transform: uppercase;
    display: block;
    margin: 0.257em 0;
}

#content .entry-custom-title {
    line-height: 1;
    font-weight: 300;
    font-size: clamp(16px, 1.125vw, 18px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-family-default);
    margin: 1em 0;
}

#content .entry-custom-title span {
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 3.889em;
    font-family: var(--font-family-title);
    margin-top: 0.057em;
    display: block;
}


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

/* 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 h2.site-title {
    font-size: 1.125em;
}

#ai-classic-contact-wrap .ai-classic-contact-contents h2.site-title {
    font-size: 1.125em;
}

#content #ai-classic-contact-wrap .entry-title {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

#content .ai-classic-agent-contact-info i {
    font-style: normal;
}

.ai-classic-email-phone a:hover {
    opacity: 1;
    color: var(--secondary);
}

.ai-classic-about-smi a:hover {
    opacity: 1;
    color: var(--secondary);
}

#content .ai-template-form-container .ai-template-form-row label {
    font-size: 0.875em;
}

#content .ai-template-form-container .ai-template-form-row input[type="email"],
#content .ai-template-form-container .ai-template-form-row input[type="text"] {
    font-size: 0.875em;
}

#content .ai-template-form-container .ai-template-form-row button[type="submit"] {
    font-size: 0.875em;
    font-weight: 400;
}

#content .ai-classic-about-greetings p {
    padding: initial;
}

.ai-classic-email-phone {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.ai-classic-email-phone a {
    padding: 0 10px;
}

/* About IP */
.page-id-37 .site-title span {
    text-transform: capitalize;
}

.page-id-37 .ai-classic-about-cta .ai-classic-about-cta-container h3 {
    color: #fff;
}

.page-id-37 .ai-classic-about-testimonials-title h2 {
    font-size: 3.889em !important;
    font-weight: 400 !important;
}

/* Contact IP */
.page-id-34 .site-title span {
    text-transform: capitalize;
}

/* Agents IP */
.page-id-38 #inner-page-wrapper #breadcrumbs {
    padding: 0;
}

#content #agents-results {
    margin-top: 50px;
}

#content #agents-results .agents-button,
#content #agents-single .agents-button {
    border: 2px solid var(--aios-agents-text-color);
    color: var(--aios-agents-text-color);
}

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

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--aios-agents-hover-color);
}

.page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aios-popup-body {
    max-width: 570px;
    padding: min(4%, 4em);
    width: calc((570 / 1584)* 100%);
    min-height: 0;
}

.page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aiosp-content .aiosp-close {
    opacity: 1;
    width: 22px;
    height: 22px;
    background: none;
    font-size: 0;
    right: -37px;
    top: -22px;
}

.page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aiosp-content .aiosp-close::before {
    content: "\b0242";
    font-family: agentimage !important;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    transition: var(--default-transition);
}

.page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aiosp-content .aiosp-close:hover::before {
    color: var(--secondary);
}

.popup-join-header {
    text-align: center;
}

.popup-join-header h2 {
    line-height: 1;
    font-weight: 300;
    font-size: 1.125em;
    text-align: center;
    letter-spacing: 0.12em;
    color: var(--secondary);
    text-transform: uppercase;
    /*margin-bottom: 2.333em;*/
}

.popup-join-header h2 span {
    display: block;
    line-height: 1;
    font-weight: 400;
    font-size: 2.667em;
    color: var(--primary);
    font-family: var(--font-family-title);
    margin-top: 0.25em;
}

.popup-join-form .mailing-fields .form-field {
    width: 100%;
    margin-bottom: 1em;
}

.popup-join-form .mailing-fields .form-field input {
    color: #000;
    font-weight: 300;
    line-height: 2.5;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 0, 0, 0.7);
    padding: 0.5em 1em;
    background: none;
    outline: none;
    width: 100%;
}

.popup-join-form .mailing-fields .form-buttons {
    text-align: center;
}

.popup-join-form .wpcf7 form.use-floating-validation-tip .wpcf7-not-valid-tip {
    padding: 0.5em 1em;
    top: -0.25em;
}

.popup-join-form .wpcf7 form .wpcf7-response-output {
    position: relative;
    bottom: -2em;
}

.popup-join-form .mailing-fields .kc_captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.popup-join-form .mailing-fields .kc_captcha span {
    width: 100%;
    border-color: rgba(0, 0, 0, 0.7);
}

.popup-join-form .mailing-fields .kc_captcha span.wpcf7-not-valid-tip {
    top: 1em;
    width: auto;
    padding: 0.5em 1em;
}

.popup-join-form .mailing-fields .kc_captcha .cf7ic_instructions {
    margin-bottom: 1em;
    margin-top: 0.5em;
    font-size: 0.85em;
}

.popup-join-form .mailing-fields .kc_captcha .cf7ic_instructions .captcha-image label > input + svg {
    color: rgba(0, 0, 0, 0.7);
}

#content #ai-classic-contact-wrap .ai-classic-contact-image {
    width: 46.89%;
}

#content #ai-classic-contact-wrap .ai-classic-contact-image canvas {
    height: auto;
}

#content #ai-classic-contact-wrap .ai-classic-contact-contents {
    width: 53.11%;
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-headings {
    justify-content: space-between;
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-title .entry-title {
    font-size: clamp(40px, 4vw, 60px) !important;
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-content a {
    opacity: .8;
    text-decoration: underline;
}

.aios-roadmaps-default-wrapper .aios-roadmaps-default-content a:hover {
    opacity: 1;
}

/* Sellers */
.seller-ip-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.seller-ip-section:last-child {
    align-items: center;
}

.seller-ip-section:last-child .right {
    font-size: 28px;
    text-align: center;
}

.seller-ip-section .left {
    padding-right: 5%;
}

.seller-ip-section .left,
.seller-ip-section .right {
    width: 50%;
}

.seller-ip-section .img-container {
    position: relative;
}

.seller-ip-section .img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.seller-ip-section .img-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.seller-ip-section .text {
    text-align: center;
    font-size: 24px;
}

.seller-sold {
    margin-bottom: 50px;
}

.seller-sold h2 {
    text-align: center;
    font-size: 28px !important;
}

.seller-sold #listings-results .listings-pagination,
.seller-sold .aios-custom-ihomefinder-template-credits {
    display: none;
}

.seller-sold .sold-btn {
    width: 100%;
    border: solid 1px var(--primary);
    background: transparent;
    font-size: 15px;
    color: var(--primary, #000000);
    text-transform: uppercase;
    font-weight: 700;
    max-width: 182px;
    display: block;
    transition: all 0.3s ease-in-out;
    margin: 32px auto 0;
    padding: 16px 0;
    text-align: center;
}

.seller-sold .sold-btn:hover {
    background: var(--primary, #000000);
    color: var(--background-color, #ffffff);
}

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

.ihf-results-template #listings-results .listings-grid .listings-price {
    font-family: var(--font-family-title);
    font-weight: 700;
}

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

.single-aios-communities.aios-custom-ihomefinder-shortcode #listings-results .listings-sort {
    margin-top: 20px;
}

.ihf-details-template #listings-details .listings-price {
    font-family: var(--font-family-title);
    font-weight: 700;
}

.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-price {
    font-family: var(--font-family-title);
    font-weight: 700;
}

.aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.ai-classic-contact-contents .wpcf7 form .wpcf7-response-output{
  margin-top: 10px !important;
  position: absolute;
  left: 0;
  right: 0;
}

#ai-classic-contact-wrap .ai-classic-contact-informations{
  margin-top: 50px !important;
}
#ai-classic-contact-wrap .ai-classic-contact-informations li:first-child,
#ai-classic-contact-wrap .ai-classic-contact-informations li:nth-child(2){
  display: flex;
}
#ai-classic-contact-wrap .ai-classic-contact-informations li span:first-child{
    width: 21%;
}
#ai-classic-contact-wrap .ai-classic-contact-informations li span:nth-child(2){
    width: 26%;
}
#ai-classic-contact-wrap .ai-classic-contact-informations li span:last-child{
    width: 42%
}

.ai-communities-pagination .page-numbers.current{
  color: var(--secondary);
}

#agents-results .agents-contact{
  justify-content: center;
}

#ihf-main-container .glyphicon.glyphicon-remove-circle{
  color: #fff !important;
}

#listings-details .listings-form .listings-field.submit .wpcf7-spinner{
  top: -40px;
}

.page-id-37 #content #breadcrumbs {
    padding: 0 15px;
}

.page-id-37 .ai-template-form-container .ai-template-form-row textarea {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.page-id-37 .ai-template-form-container .ai-template-form-row textarea::-webkit-scrollbar {
    background: transparent;
    width: 0px;
}

.aios-communities-seneca .ai-communities-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.ihf-details-template #listings-details .listings-slideshow-no-image::after,
.ihf-details-template #listings-details .listings-hero-single::after {
    position: absolute;
    content: '';
    top: 0; 
    left: 0; 
    right: 0;
    bottom: 0;
    display: block !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 35%);
}

.ihf-details-template #listings-details .listings-hero-single::after,
.ihf-details-template #listings-details .listings-slideshow-no-image::after {
    z-index: 3;
}

.page-id-34 .ai-classic-contact-contents .wpcf7 .col-md-12 {
    position: relative;
}

.page-id-34 .ai-classic-contact-contents .wpcf7 form .wpcf7-spinner {
    position: absolute;
    top: auto;
    bottom: 0;
    right: auto;
    left: 200px;
    margin: 0;
}

.page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aiosp-content .aiosp-close {
    right: 15px;
    top: 15px;
    color: #000;
}

.page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aiosp-content .aiosp-close::before {
    color: inherit;
}

.page-id-39 .listings-filter-tab a:not(.active).btn-primary,
.page-id-566 .listings-filter-tab a:not(.active).btn-primary,
.page-id-566 #ihf-main-container .ihf-listing-search-results .mt-25 .btn-group-justified a:not(.active).btn-primary {
    display: none;
}


body.page-id-37 .ai-classic-about-agentprofile img {
    height: auto;
}

.page-id-37 .ai-classic-about-greetings {
	padding-right: 0;
}

.page-id-37 .awards-wrp {
	position: relative;
	top: 82px;
	padding-top: 56px;
	background: #000;
	margin-left: -20px;
	margin-right: -20px;
	margin-top: -56px;
}

.page-id-37 .awards-wrp img {
	padding: 5px;
	background: #fff;
}

.page-id-37 .ai-classic-about-agentprofile {
	
	position: relative;
}

.page-id-37 .ai-classic-about-agentprofile {	
	margin-bottom: -20px;
}

@media only screen and (max-width: 1440px) {
    #burger-nav .sub-menu {
        gap: 1.05em 1.5em;
    }
}

@media only screen and (max-width: 1199px) {
    .site-bg canvas {
        background-attachment: scroll;
    }

    #content #ai-classic-contact-wrap .ai-classic-contact-contents {
        padding: 0 3%;
    }

    #content #ai-classic-contact-wrap .ai-classic-contact-informations li {
        font-size: 14px;
    }
}

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

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

    .site-content {
        font-size: clamp(14px, 1.61vw, 16px);
    }

    .site-container {
        width: 80%;
        min-width: 280px;
    }

    .site-title {
        text-align: center;
    }

    .header {
        z-index: 1;
        margin-top: 52px;
        position: relative;
        background: var(--primary);
    }

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

    .header-logo,
    .fixed .header-logo {
        width: 100%;
        margin: 0 auto;
        max-width: 300px;
    }

    .header-contact-menu,
    .header-bg {
        display: none;
    }

    .contact-wrap {
        padding: max(4vw, 20px) 0 max(8vw, 55px);
        flex-direction: column-reverse;
    }

    .contact-text {
        width: 100%;
        padding: 2em 0;
    }

    .contact-photo {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 4em;
    }

    .contact-photo img {
        opacity: 1;
    }

    .footer-wrap {
        padding-bottom: max(8vw, 55px);
    }

    .footer-logo,
    .footer-logo > .textwidget {
        flex-direction: column;
    }

    .footer-logo .primary-logo,
    .footer-logo .secondary-logo {
        width: 100%;
        padding: max(2vw, 20px) 0;
        max-width: 400px;
    }

    .footer-logo .secondary-logo::before {
        right: 0;
        height: 1px;
        width: 100%;
        bottom: auto;
        margin: 0 auto;
        max-width: 100px;
    }

    .footer-info, .footer-info > .textwidget {
        flex-direction: column;
    }

    ul.contact-info-details-wrap:not(:last-child) {
        margin-right: 0;
        flex-direction: column;
        gap: 3em;
    }

    .contact-info-details-wrap li {
        flex-direction: column;
        gap: 1em;
    }

    .contact-info-details-wrap li .contact-info-details a {
        margin: 0;
    }

    .contact-info-details-wrap > a {
        line-height: 1.2;
    }

    .footer-info a {
        margin: 1em 0;
        font-size: 0.9em;
        text-align: center;
    }

    .footer-info a i {
        margin-right: 1em;
    }

    .footer-info a i.ai-font-location-c {
        align-self: flex-start;
    }

    .footer-menu {
        padding-top: 2em;
    }

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

    .aiosp-wrap .aiosp-ref-\#hv-popup .aiosp-content {
        width: 80%;
        max-width: 500px;
        min-width: 290px;
    }

    .aiosp-wrap .aiosp-ref-\#hv-popup .aiosp-content .aiosp-close {
        right: 0;
        top: -40px;
    }

    .hv-wrap {
        flex-direction: column-reverse;
        padding: max(4vw, 30px) 0;
    }

    .hv-text {
        width: 100%;
        padding: max(5vw, 40px) max(4vw, 20px) 0;
    }

    .hv-photo {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .sm-popup {
        min-width: 280px;
    }

    .sm-wrap {
        flex-direction: column;
    }

    .sm-close {
        color: rgba(0, 0, 0, 0.65);
    }

    .sm-text {
        width: 100%;
        padding-top: 2em;
        padding-bottom: 3em;
    }

    .sm-field {
        width: 100%;
    }

    .sm-field #sm-subject {
        flex-flow: row wrap;
        justify-content: center;
        gap: 1em 2em;
    }

    .sm-field .wpcf7-list-item-label {
        line-height: 1;
    }

    .sm-form .wpcf7 form .wpcf7-response-output {
        font-size: 0.7em;
        margin-top: 0.5em;
    }

    .sm-photo {
        width: 100%;
        display: none;
        max-height: 100px;
    }

    .burger-active {
        overflow: visible;
    }

    .burger-wrap, .burger-active .burger-wrap {
        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%;
    }

    #content .archive-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: clamp(38px, 7.06vw, 70px);
    }

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

    .page-id-37 .aiosp-wrap .aiosp-ref-\#popup-join .aios-popup-body {
        width: 80%;
        min-width: 280px;
        padding: 4em 2em;
    }

    #content #ai-classic-contact-wrap .ai-classic-contact-contents {
        width: 100%;
        padding-bottom: 15px;
    }

    #content #ai-classic-contact-wrap .ai-classic-contact-contents .wpcf7 input[type="submit"] {
        margin-left: auto;
        margin-right: auto;
    }

    #content #ai-classic-contact-wrap .ai-classic-contact-informations li {
        display: flex;
        justify-content: center;
    }

    .seller-ip-section:nth-child(even) {
        flex-direction: column;
        align-items: center;
    }

    .seller-ip-section:nth-child(odd) {
        flex-direction: column-reverse;
        align-items: center;
    }

    .seller-ip-section:last-child {
        flex-direction: column;
    }

    .seller-ip-section:last-child .left {
        margin-bottom: 20px;
    }

    .seller-ip-section .left {
        padding: 0;
    }

    .seller-ip-section .left,
    .seller-ip-section .right {
        width: 100%;
        text-align: center;
    }
    .ai-classic-about-details{
      padding-bottom: 15px !important;
    }
    #agents-results .agents-col .agents-name, #agents-results .agents-col:nth-child(odd) .agents-name{
      align-items: center;
    }
    #agents-results .agents-col .agents-name, #agents-results .agents-col:nth-child(even) .agents-name{
      text-align: center;
    }
    #content #agents-results .agents-button{
      margin: 0 auto;
    }
    #agents-results .agents-img,
    #agents-single .agents-img{
      max-width: 350px;
      margin: 0 auto;
    }
    #agents-single .agents-contact li.agents-contact-half > div{
      display: flex;
      justify-content: center;
    }

    .ihf-details-template #listings-details .listings-slideshow-no-image::after,
    .ihf-details-template #listings-details .listings-hero-single::after {
        display: none !important;
    }

    .page-id-34 #content #ai-classic-contact-wrap .entry-title {
        width: 750px;
    }

    .page-id-34 #content #ai-classic-contact-wrap .ai-classic-contact-image {
        width: 100%;
    }

    .page-id-34 .ai-classic-contact-contents .wpcf7 form .wpcf7-spinner {
        left: auto;
        right: 30%;
    }
}

@media only screen and (max-width: 767px) {
    .site-title {
        text-align: center;
        font-size: 1em;
    }

    .site-title span {
        font-size: 3.5em;
    }

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

    .page-id-34 #content #ai-classic-contact-wrap .entry-title {
        width: 100%;
    }
}

@media screen and (max-width: 567px) {
    .form-field {
        width: 100%;
    }

    .page-id-34 #content #ai-classic-contact-wrap .ai-classic-contact-informations li:first-child,
    .page-id-34 #content #ai-classic-contact-wrap .ai-classic-contact-informations li:nth-child(2) {
        align-items: center;
        flex-direction: column;
    }

    .page-id-34 #ai-classic-contact-wrap .ai-classic-contact-informations li span:first-child,
    .page-id-34 #ai-classic-contact-wrap .ai-classic-contact-informations li span:nth-child(2),
    .page-id-34 #ai-classic-contact-wrap .ai-classic-contact-informations li span:last-child{
        width: 100%;
        text-align: center;
    }

    .page-id-34 .ai-classic-contact-contents .wpcf7 form .wpcf7-spinner {
        position: absolute;
        right: 18px;
        top: auto;
        left: auto;
        margin: 0;
        bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    #agents-single .agents-contact li a,
    #agents-single .agents-contact li div{
        font-size: 12px;
    }

    #agents-single .agents-contact li.agent-email-address{
        margin: 0 auto !important;
    }

    #listings-details .listings-slideshow-splide.splide-default .listings-slideshow-splide-text span{
        font-size: 12px !important;
    }

    .page-id-34 .ai-classic-contact-contents .wpcf7 {
        margin-bottom: 78px;
    }
}

@media print {
    header, footer, .ip-banner, #breadcrumbs, #footer-form {
        display: none;
    }

    .ihf-results-template .sold-btn,
    .ihf-results-template #listings-results .listings-grid,
    .ihf-results-template #listings-results .listings-grid.active,
    .ihf-results-template #listings-results .listings-top {
        display: none;
    }

    .ihf-results-template #listings-results .listings-list {
        display: block !important;
    }

    .ihf-results-template #listings-results .listings-list .listings-link {
        display: none;
    }

    .ihf-results-template #listings-results .listings-list .listings-logo-attribution > span {
        color: #fff !important;
        text-shadow: 0px 2px 3px #000 !important;
    }

    .ihf-results-template #listings-results .listings-list .listings-logo-attribution>span.listings-openhouse>em {
        color: #01e087 !important;
        text-shadow: 0px 2px 3px #000 !important;
    }

    .post-page-sell-with-us #listings-results .listings-list .listings-img {
        margin: 0 auto;
        width: 100%;
    }

    .post-page-sell-with-us .seller-sold {
        display: none;
    }

    .post-page-sell-with-us .seller-ip-section {
        flex-flow: row wrap;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .post-page-sell-with-us .seller-ip-section:nth-child(even) {
        flex-direction: column-reverse;
    }

    .post-page-sell-with-us .seller-ip-section .left, 
    .post-page-sell-with-us .seller-ip-section .right {
        width: 100%;
        padding: 0;
    }

    .post-page-sell-with-us .seller-ip-section .text {
        font-size: 18px;
    }

    .post-page-sell-with-us .seller-ip-section:last-child .right {
        padding: 20px;
        font-size: 20px;
    }
}