:root {
    /** Font default */
    --font-family-default: "Open Sans", sans-serif;
    --font-family-title: "Baskervville", serif;
    --font-family-cursive: "Francisco", cursive;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #656464;
    /** Use for input, button, and any other element */
    --primary: #e1a63d;
    --secondary: #008080;
    --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;
    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; */
}

body:not(.home) {
    color: var(--font-color-title);
}

section {
    position: relative;
}

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;
    color: inherit;
}

#main-wrapper {
    overflow: hidden;
    background: linear-gradient(0deg, #000 1px, transparent 1px);
}

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

.site-content p {
    font-size: 0.813em;
    font-weight: 400;
    line-height: 1.769;
    margin: 1.769em 0;
}

.site-title {
    font-size: 4.688em;
    font-weight: 400;
    line-height: 0.933;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    color: var(--font-color-default);
}

.site-title span {
    display: block;
    text-transform: capitalize;
    color: var(--font-color-title);
    font-family: var(--font-family-cursive);
    position: relative;
    z-index: 1;
    margin-bottom: -0.093em;
    line-height: 0.693;
    padding-top: 0.267em;
    padding-left: 0.68em;
    margin-left: -0.68em;
}

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

.site-title strong {
    display: block;
    font-weight: 400;
}

.site-button {
    font-weight: 500;
    line-height: 1.667;
    font-size: 0.938em;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--default-transition);
    padding: 0.867em 1.8em 0.8em;
    background: transparent;
    display: inline-block;
    min-width: 13.467em;
    position: relative;
    outline: none;
    z-index: 1;
    border: 1px solid #008080;
    border-image: linear-gradient(to right, var(--secondary), #000) 1;
}

.site-button:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    border-image: linear-gradient(to right, var(--primary), var(--primary)) 1;
}

.site-button.is-light {
    border-image: linear-gradient(to right, var(--secondary), #fff) 1;
}

.site-button.is-light:hover {
    border-image: linear-gradient(to right, var(--primary), var(--primary)) 1;
}

.site-arrow {
    min-width: 0;
    outline: none;
    width: 2.737em;
    height: 2.737em;
    font-size: 1.188em;
    background: transparent;
    border: 1px solid #008080;
    transition: var(--default-transition);
    border-image: linear-gradient(to right, var(--secondary), #000) 1;
}

.site-arrow.prev {
    padding-left: 0.947em;
    padding-right: 1.053em;
}

.site-arrow.next {
    padding-left: 1.053em;
    padding-right: 0.947em;
}

.site-arrow i {
    top: 0.053em;
}

.site-arrow.is-light {
    border-image: none;
    border-color: #fff;
}

.site-arrow:hover {
    color: #fff;
    background: var(--primary);
    border-image: linear-gradient(to right, var(--primary), var(--primary)) 1;
}

.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;
    backface-visibility: hidden;
    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%;
    display: block;
    background: #000;
}

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

.site-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.375em;
}

.site-info span {
    display: inline-flex;
    align-items: center;
}

.site-info a {
    line-height: 1;
    font-weight: 400;
    font-size: 0.938em;
    letter-spacing: 0.05em;
    margin-left: 0.667em;
}

.site-info .icon-phone,
.site-info .icon-email {
    background: linear-gradient(to right, var(--secondary), #fff);
}

.site-info .ai-font-location-c {
    align-self: flex-start;
}

.site-info i[class^="ai-font"] {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, var(--secondary), #fff);
    background-clip: text;
    text-fill-color: transparent;
}

.site-info .icon-phone {
    font-size: 0.813em;
    width: 1.154em;
}

.site-info .icon-email {
    font-size: 0.688em;
    width: 1.364em;
}

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

.site-smi a {
    width: 2.5em;
    height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.site-smi a i {
    font-size: 1.375em;
}

.site-smi a i.ai-font-facebook {
    left: -0.045em;
}

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

[class^="icon-"] {
    position: relative;
    content: '';
    height: 1em;
    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;
}

.icon-phone {
    -webkit-mask-image: url('../images/home/icon-phone.svg');
    mask-image: url('../images/home/icon-phone.svg');
    width: 1em;
}

.icon-email {
    -webkit-mask-image: url('../images/home/icon-email.svg');
    mask-image: url('../images/home/icon-email.svg');
    width: 1.364em;
}

.icon-search {
    -webkit-mask-image: url('../images/home/icon-search.svg');
    mask-image: url('../images/home/icon-search.svg');
    width: 1em;
}

.icon-bed {
    -webkit-mask-image: url('../images/home/icon-bed.png');
    mask-image: url('../images/home/icon-bed.png');
    width: 1.25em;
}

.icon-shower {
    -webkit-mask-image: url('../images/home/icon-shower.png');
    mask-image: url('../images/home/icon-shower.png');
    width: 0.9em;
}

.icon-sqft {
    -webkit-mask-image: url('../images/home/icon-sqft.png');
    mask-image: url('../images/home/icon-sqft.png');
    width: 1em;
}

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

.is-light {
    color: #fff;
}

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

.header-wrap {
    margin: 0 auto;
    /* max-width: 1420px; */
    width: calc((1420/1600)*100%);
    padding: 1.313em 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--default-transition);
}

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

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

.header:not(.intro-active) {
    animation: fadeDown 1s ease 1 forwards;
}

@keyframes fadeDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.header-menu {
    margin: 0 3.75em;
}

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

#header-nav li {
    position: relative;
}

#header-nav li a {
    line-height: 1;
    font-size: 0.938em;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    transition: var(--default-transition);
}

#header-nav > li > a {
    position: relative;
}

#header-nav > li > a::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    width: 4.333em;
    height: 0.133em;
    margin-top: 1.2em;
    background: #fff;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
    transition: var(--default-transition);
}

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

#header-nav .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 14.063em;
    transform: translateY(0%, 0.625em);
    transition: var(--default-transition);
    visibility: hidden;
    color: #000;
    opacity: 0;
}

#header-nav .sub-menu li {
    background: #fff;
}

#header-nav .sub-menu li:first-child {
    padding-top: 0.688em;
}

#header-nav .sub-menu li:last-child {
    padding-bottom: 0.625em;
}

#header-nav .sub-menu li a {
    display: block;
    line-height: 2.333;
    letter-spacing: 0.025em;

    line-height: 1;
    padding: 0.667em 1em;
}

#header-nav .sub-menu li a:hover {
    background: var(--primary);
    /* padding: 11px 0 10px; */
    color: #fff;
}

#header-nav li:hover > .sub-menu,
#header-nav li:focus-within > .sub-menu {
    transform: translate(0%, 0%);
    visibility: visible;
    opacity: 1;
}

#header-nav > li > .sub-menu {
    top: 100%;
    left: 50%;
    padding-top: 2.438em;
    transform: translate(-50%, 0.625em);
}

#header-nav > li:hover > .sub-menu,
#header-nav > li:focus-within > .sub-menu {
    transform: translate(-50%, 0px);
}

.header-toggle {
    color: #fff;
    width: 1.938em;
    height: 1.188em;
    border: none;
    outline: none;
    position: relative;
    background: transparent;
    border-top: 0.188em solid currentColor;
}

.header-toggle::before,
.header-toggle::after {
    position: absolute;
    content: '';
    top: -0.188em;
    right: 0;
    bottom: 0;
    height: 0.188em;
    margin: auto;
    background: currentColor;
}

.header-toggle::before {
    width: 1.313em;
}

.header-toggle::after {
    width: 1.625em;
    top: auto;
    bottom: 0;
    margin: 0;
}

.fixed.header {
    background: rgba(0, 0, 0, 0.85);
}

.fixed.header .header-wrap {
    padding: 1.063em 0 1em;
}

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

/* Main Menu */
.slide-active {
    overflow: hidden;
}

.slide-active .slide-header {
    transform: translateY(0%);
}

.slide-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-100%);
    transition: var(--default-transition);
    transition-duration: 1s;
    overflow-y: auto;
    min-height: 100vh;
    /*display: flex;
    align-items: center;
    justify-content: center;*/
}

.slide-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    padding: 8.5em 0 11em;
}

.slide-wrap {
    display: flex;
    margin: 0 auto;
    /* max-width: 1280px; */
    width: calc((1280/1600)*100%);
    justify-content: space-between;
}

.slide-toggle {
    position: absolute;
    padding: 0;
    top: 2em;
    right: 3.333em;
    width: 1em;
    height: 1em;
    border: none;
    outline: none;
    font-size: 1.688em;
    background: transparent;
}

.slide-menu {
    height: calc((453/1600)*100vw);
    margin-top: 1.25em;
}

.slide-menu > div {
    height: 100%;
}

#slide-nav {
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    max-height: 44em;
    gap: 0 4em;
}

#slide-nav > li {
    margin: 0 0 2.063em;
    max-width: 14.375em;
}

#slide-nav > li > a {
    line-height: 1;
    font-size: 1.438em;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    transition: var(--default-transition);
}

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

#slide-nav .sub-menu {
    margin: 0.75em 0 -0.813em;
}

#slide-nav .sub-menu li a {
    color: #9d9d9d;
    font-size: 0.875em;
    font-weight: 300;
    line-height: 2.143;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    font-family: var(--font-family-default);
    display: inline-block;
    padding: 0.429em 1.714em 0.357em;
    transition: var(--default-transition);
    line-height: normal;
}

#slide-nav .sub-menu li a:hover,
#slide-nav .sub-menu li a:focus {
    color: var(--primary);
}

.slide-info {
    width: calc((434/1280)*100%);
}

.slide-info .site-info {
    flex-flow: column;
    margin: 2.563em 0 1.938em;
}

.slide-info .site-info a {
    text-align: center;
    transition: var(--default-transition);
    line-height: 1.2;
}

.slide-info .site-info a:hover,
.slide-info .site-info a:focus {
    color: var(--primary);
}

.slide-info .site-smi a {
    transition: var(--default-transition);
}

.slide-logo {
    width: calc((324 / 374) * 100%);
    margin: 0 auto;
    display: block;
    max-width: 324px;
}

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

.slide-bg {
    position: fixed;
    background: transparent;
}

.slide-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 2.5em;
    bottom: 2.5em;
    background: rgba(0, 0, 0, 0.85);
    min-height: calc(min(47.5vw, 760px) - 2.5em);
}

.slide-bg canvas {
    opacity: 0.55;
}

/* Contact */
.contact-wrap {
    margin: 0 auto;
    /* max-width: 1420px; */
    width: calc((1420/1600)*100%);
    padding: 6.5em 0 7.313em;
    position: relative;
}

.contact-header {
    width: calc((657/1420)*100%);
    margin-right: auto;
    padding-right: 7.5em;
}

.contact-photo {
    position: absolute;
    right: 0;
    top: 6.5em;
    margin-top: 1.625em;
    width: calc((805/1420)*100%);
}

.contact-photo img.site-logo {
    right: 0;
    top: calc((31/635)*100%);
    width: calc((293/805)*100%);
    opacity: 0.40;
    height: auto;
    margin: auto;
}

.contact-form {
    width: calc((657/1420)*100%);
    padding: 2.188em 5.625em 4.25em 3em;
    margin: 3em auto 0 0;
    background: #000;
    color: #fff;
}

.contact-form-fields {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.contact-form-field {
    width: calc((250/519)*100%);
    margin-top: 0.813em;
}

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

.contact-form-field input:not([type="checkbox"]),
.contact-form-field input:not([type="radio"]),
.contact-form-field textarea {
    font-size: 0.75em;
    font-weight: 400;
    line-height: 1.417;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 100%;
    border: none;
    outline: none;
    display: block;
    padding: 1.25em 0;
    appearance: none;
    background: transparent;
    border-bottom: 0.083em solid #fff;
}

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

.contact-form-submit {
    margin-top: 2.625em;
    position: relative;
}

.contact-form-submit .wpcf7-spinner {
    margin: 0;
    vertical-align: bottom;
}

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

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

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

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

/* Footer */
.footer {
    background: #000;
    position: relative;
    color: #fff;
}

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

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

.footer-wrap {
    margin: 0 auto;
    /* max-width: 1142px; */
    width: calc((1142/1600)*100%);
    padding: 4.188em 0 3.125em;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-header {
    line-height: 1;
    font-size: 1.563em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    margin-top: 2.48em;
}

.footer-info .site-info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 1.375em 0 1.5em;
    gap: 1.375em;
}

.footer-info .site-smi {
    padding-left: 1.75em;
    justify-content: flex-start;
}

.footer-logo {
    width: calc((420 / 1142)* 100%);
}

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

.footer-logo .logo {
    display: flex;
    align-items: center;
    margin: 3.25em auto 0;
}

.footer-logo .logo > img {
    width: 38%;
    margin-left: 6%;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.footer-logo .logo > a {
    display: block;
    width: 56%;
}

.footer-menu {
    margin-top: 1.313em;
}

#footer-nav {
    column-count: 2;
}

#footer-nav li {
    padding-bottom: 1.313em;
    display: flex;
}

#footer-nav li a {
    line-height: 1;
    font-size: 0.938em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-brokerage {
    margin: 1.125em 0 1.563em;
}

.footer-brokerage .site-brokerage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.75em 5.438em;
}

.footer-brokerage .site-brokerage img {
    width: auto;
    height: 100%;
    display: block;
}

.footer-brokerage .site-brokerage img.kw-gulf-coast {
    width: calc((261/1142)*100%);
}

.footer-brokerage .site-brokerage img.kw-luxury {
    top: 0.25em;
    position: relative;
    width: calc((303/1142)*100%);
}

.footer-brokerage .site-brokerage img.kw-military {
    width: calc((362/1142)*100%);
}

.footer-disclaimer {
    padding: 0 2.375em;
    text-align: center;
    margin: 1.563em 0 2.25em;
}

.footer-disclaimer p {
    font-size: 0.75em;
    font-weight: 300;
    color: #b6b6b6;
    line-height: 2.083;
    letter-spacing: 0.05em;
}

.footer-copyright {
    line-height: 1;
    font-size: 0.75em;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2em;
}

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

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

.footer-bg {
    left: 50%;
    top: auto;
    bottom: 0;
    height: auto;
    margin: 0 auto;
    z-index: initial;
    /* max-width: 1639px; */
    transform: translateX(-50%);
    width: calc((1639 / 1600)* 100%);
}

.footer-bg canvas {
    opacity: 0.10;
}

/* 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-title:not(.archive-custom-title),
#content .entry-title:not(.entry-custom-title) {
    font-size: max(min(4.6875vw, 75px), 32px);
    font-weight: 500;
    line-height: 0.933;
    letter-spacing: 0.025em;
    color: var(--font-color-default);
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

#content .archive-title:not(.archive-custom-title) span,
#content .entry-title:not(.entry-custom-title) span {
    display: block;
    font-weight: 400;
    font-size: 0.35em;
    margin-bottom: 0.25em;
}

#content .archive-title.archive-custom-title,
#content .entry-title.entry-custom-title {
    font-size: max(min(1.625vw, 26px), 16px);
    font-weight: 400;
    line-height: 0.933;
    letter-spacing: 0.025em;
    color: var(--font-color-default);
    text-transform: uppercase;
    font-family: var(--font-family-title);
    margin: 1.67em 0;
}

#content .archive-title.archive-custom-title span,
#content .entry-title.entry-custom-title span {
    font-size: 2.885em;
    font-weight: 500;
    margin-top: 0.053em;
    display: block;
}

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

/** Single Default Layout (Post Content) */
#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
    display: none;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/** End of Single Default Layout (Post Content) */

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-thumbnail {
    padding: 15px;
    background-color: #efefef;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

/** End of Archive Default Layout (Archive Page) */

/** Button */
.global-button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #c1c1c1;
    width: 283px;
    max-width: 100%;
    height: 59px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.61px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #676767;
    background: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-button:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/** End of Button */

.aios-custom-ihomefinder-results-template.page-template-template-fullwidth #inner-page-wrapper .container {
    width: 100% !important;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .aios-popup-body {
    background: #000;
    max-width: 700px;
    color: #fff;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .aios-popup-body .aiosp-close {
    color: #fff;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .vsp-wrap {
    padding: 1.875em;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .vsp-wrap .site-title {
    color: #fff;
    font-size: 4em;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .vsp-wrap .site-title span {
    color: #9f9e9e;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-field {
    margin-top: 0.813em;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-field input:not([type="checkbox"]),
.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-field input:not([type="radio"]),
.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-field textarea {
    font-size: 0.75em;
    font-weight: 400;
    line-height: 1.417;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 100%;
    border: none;
    outline: none;
    display: block;
    padding: 1.25em 0;
    appearance: none;
    background: transparent;
    border-bottom: 0.083em solid #fff;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-field textarea {
    height: 8.167em;
    resize: none;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-submit {
    margin-top: 2.625em;
    position: relative;
}

.aiosp-wrap .aiosp-ref-\#vendors-service-providers .popup-form-submit .wpcf7-spinner {
    margin: 0;
    vertical-align: bottom;
}

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

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

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

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

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

.error404 .wpcf7 form {
    position: relative;
    font-family: var(--font-family-default);
}

.error-page-content-wrapper,
.error404 .error-page-content-wrapper .error-forms input[type="text"],
.error404 .error-page-content-wrapper .error-forms input[type="email"],
.error404 .error-page-content-wrapper .error-forms input[type="phone"],
.error404 .error-page-content-wrapper .error-forms textarea,
.error404 .error-page-content-wrapper .error-forms input[type="submit"] {
    font-family: var(--font-family-default);
}

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

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

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

.page-id-16 #content .aios-cu-contact span + span {
    display: flex;
    align-items: center;
}

.page-id-16 #content .aios-cu-contact em.ai-font-location-c {
    align-self: flex-start;
    margin-right: 8px;
    left: -2px;
}

.page-id-16 #content .aios-cu-img img {
    margin: 0 auto;
}

.page-id-19 #ai-modern-about .ai-modern-about-contact li {
    display: flex;
    align-items: center;
}

.page-id-19 #ai-modern-about .ai-modern-about-contact li > span.location {
    font-size: 20px;
    left: -2px;
    top: 4px;
    align-self: flex-start;
}

.page-id-281 .aios-smf-theme-three .aios-smf-header #theme-title {
    padding: 0;
}

.page-id-281 .aios-smf-theme-three .aios-smf-header #theme-title h2 {
    margin: 0;
}

.page-id-281 .aios-smf-theme-three .aios-smf-header #theme-title .filter-feed,
.page-id-281 .aios-smf-theme-three .aios-smf-group {
    display: none;
}

.post-page-about p#breadcrumbs {
    padding: 0 15px;
}

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

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

    .header, .fixed.header {
        position: relative;
        margin-top: 52px;
        background: #000;
        z-index: 2;
    }

    .header-wrap, .fixed.header .header-wrap {
        padding: 1em 0;
    }

    .header-menu {
        display: none;
    }

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

    .header-toggle {
        font-size: 12px;
        display: none;
    }

    .contact-wrap {
        width: 80%;
        min-width: 280px;
    }

    .contact-header {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding-right: 0;
    }

    .contact-photo {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 2em;
        width: 100%;
    }

    .contact-form {
        width: 100%;
        padding: 2em 4em 4em;
    }

    .contact-form-submit {
        text-align: center;
        width: 100%;
    }

    .contact-form-submit .wpcf7-spinner {
        position: absolute;
        top: 100%;
    }

    .footer-wrap {
        width: 80%;
        min-width: 280px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-logo {
        order: 1;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-logo .logo {
        flex-direction: column;
    }

    .footer-logo .logo > a {
        width: 100%;
    }

    .footer-logo .logo > img {
        width: 100%;
        max-width: 180px;
        margin-top: 2em;
        margin-left: 0;
    }

    .footer-info {
        order: 2;
        width: 100%;
        text-align: center;
    }

    .footer-info .site-info {
        align-items: center;
        justify-content: center;
    }

    .footer-info .site-smi {
        padding-left: 0;
        justify-content: center;
    }

    #footer-nav {
        column-count: 1;
    }

    #footer-nav li {
        display: block;
    }

    .footer-brokerage .site-brokerage {
        flex-direction: column;
        margin: 2em 0;
    }

    .footer-brokerage .site-brokerage img,
    .footer-brokerage .site-brokerage img.kw-gulf-coast,
    .footer-brokerage .site-brokerage img.kw-luxury,
    .footer-brokerage .site-brokerage img.kw-military {
        width: 100%;
        max-width: 200px;
    }

    /* 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,
    #content .entry-title {
        font-size: max(min(7.568vw, 75px), 56px);
    }

    #content .archive-title.archive-custom-title,
    #content .entry-title.entry-custom-title {
        font-size: max(min(2.624vw, 26px), 16px);
    }

    /* Blog */
    #content .archive-list > article {
        width: 100%;
    }

    #content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
        margin: 0.75em 0;
        font-size: 24px
    }

    #content .archive-list .article-long p {
        font-size: 17px;
    }

    #content .archive-list .article-long .archive-thumbnail,
    #content .archive-list .article-long .archive-has-thumbnail {
        width: 100%;
        margin-left: 0;
    }
}

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

    .footer-disclaimer {
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: cener;
        gap: 2em;
    }

    .footer-copyright {
        text-align: center;
        line-height: 1.6;
    }

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

    #content .archive-title,
    #content .entry-title {
        font-size: max(min(7.30vw, 56px), 42px);
    }
}

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

    .contact-wrap {
        padding-bottom: 4em;
    }

    .contact-form {
        padding-left: 2em;
        padding-right: 2em;
    }

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

    #content .archive-title,
    #content .entry-title {
        font-size: max(min(7.407vw, 42px), 36px);
    }
}

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