:root {
    /** Font default */
    --font-family-default: "Nunito", sans-serif;
    --font-family-title: "Playfair Display", serif;
    --font-size-default: 16px;
    --font-size-title: clamp(50px, 4.5vw, 72px);
    --font-color-default: #000;
    --font-color-title: #022b2a;
    /** Use for input, button, and any other element */
    --primary: #022b2a;
    --secondary: #b29e75;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: all 0.4s ease-in-out;
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    color: var(--font-color-default);
    font-weight: 400;
    background: #fff;
    margin: 0;
}

a,
a:hover,
a:visited,
a:focus,
input,
input:focus,
textarea,
textarea:focus,
select:focus,
select {
    outline: none !important;
    text-decoration: none !important;
}

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

.slick-slide {
    outline: none !important;
}

.label-hide {
    display: none !important;
}

#main-wrapper {
    overflow: hidden;
    position: relative;
}

/*aspect ratio*/
.site-image {
    position: relative;
}

.site-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--default-transition);
}

/*global title*/
.global-title {
    font-size: clamp(19px, 1.5vw, 24px);
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    color: var(--font-color-title);
    letter-spacing: 5px;
    position: relative;
}

.global-title span {
    font-size: var(--font-size-title);
    display: block;
    letter-spacing: 0;
    position: relative;
    color: var(--primary);
    margin-top: 6px;
}

.global-title.is-center {
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
}

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

/*global btn*/
.global-btn {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.7px;
    color: #f3e7cd !important;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    height: 46px;
    background: var(--primary);
    border-radius: 50px;
}

.global-btn:hover {
    color: #fff !important;
    background: var(--secondary);
}

.global-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 1px solid var(--primary);
    border-radius: 50px;
    pointer-events: none;
    transition: var(--default-transition);
}

.global-btn:hover::after {
    border: 1px solid var(--secondary);
}

.global-btn.is-center {
    margin: 0 auto;
}

/*global arrow*/
.global-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.global-arrow button {
    font-size: 12px;
    font-weight: 300;
    color: #161618;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding: 0;
    border: none;
    background: transparent;
}

.global-arrow button em {
    font-size: 15px;
    font-weight: 200;
    vertical-align: sub;
}

.global-prev em {
    margin-right: 17px;
}

.global-next em {
    margin-left: 17px;
}

.global-arrow button:hover {
    opacity: .7;
}

/*site bg*/
.site-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-bg.fixed-bg canvas {
    background-attachment: fixed;
}

.site-bg.grayscale-bg canvas {
    filter: grayscale(1);
}

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    width: 100%;
    left: 0;
    background: transparent;
    padding: 50px 15px 15px;
    transition: var(--default-transition);
}

header.main-header.show-fixed {
    background: #fff;
    padding: 24.5px 15px;
}

.hdr-holder {
    position: relative;
    z-index: 5;
    max-width: 1502px;
    margin: 0 auto;
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-logo a {
    display: block;
    position: relative;
    max-width: 129px;
    margin: 0 auto;
    /*opacity: 0;
    pointer-events: none;*/
}

/*.show-fixed .hdr-logo a {
    opacity: 1;
    pointer-events: auto;
}*/

.hdr-col-3 {
    display: flex;
    align-items: center;
}

.hdr-contacts {
    font-size: 0;
}

.hdr-contacts span {
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
}

.hdr-contacts span a i {
    display: none;
}

span.hdr-contacts-divider {
    width: 1px;
    height: 20px;
    background: #fff;
    margin: 0 9px;
    vertical-align: bottom;
}

span.hdr-email {
    font-size: 13px;
}

.hdr-contacts span a {
    color: #fff;
    position: relative;
}

.hdr-contacts span a:hover {
    opacity: .7;
}

.show-fixed .hdr-contacts span a {
    color: #000;
}

.show-fixed span.hdr-contacts-divider {
    background: #000;
}

/*header nav*/
nav.header-nav {
    position: relative;
    transition: var(--default-transition);
}

.show-fixed nav.header-nav {
    padding-left: 8.594vw;
}

nav.header-nav ul#nav {
    font-size: 0;
    position: relative;
    z-index: 5;
}

nav.header-nav ul#nav>li {
    vertical-align: top;
    position: relative;
}

nav.header-nav ul#nav>li>a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    text-shadow: 1px 1.732px 1px rgba(2, 43, 42, 0.85);
    display: block;
    position: relative;
    z-index: 5;
    padding: 8px 0 10px;
    margin: 0 38px;
    transform: translateZ(0);
    background: transparent;
}

.show-fixed nav.header-nav ul#nav>li>a {
    text-shadow: none;
    color: #000;
}

nav.header-nav ul#nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--default-transition);
}

nav.header-nav ul#nav>li>a:hover::after {
    width: 54%;
}

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

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

/*end*/

/* Sub Menu */
ul#nav li {
    position: relative;
    display: inline-block;
}

ul#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 164px;
    top: calc(100% + 15px);
    left: 50%;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header.main-header.show-fixed ul#nav .sub-menu {
    padding-top: 30px;
}

ul#nav .sub-menu a {
    color: var(--primary);
    display: block;
    padding: 7px 10px 6px;
    background: #FFF;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    transform: translateZ(0);
    border-bottom: 1px solid var(--secondary);
}

ul#nav ul.sub-menu>li:last-child>a {
    border: none;
}

ul#nav .sub-menu a:hover {
    color: var(--secondary);
    background: var(--primary);
}

ul#nav .sub-menu .sub-menu {
    margin-left: calc(100% + 1px);
    top: 0 !important;
    left: 0;
    padding-top: 0 !important;
    transform: unset;
}

ul#nav li:hover>.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

ul#nav .sub-menu li {
    position: relative;
    display: block;
}

ul#nav .sub-menu li:last-child {
    border-bottom: none;
}

/*end*/

/*burger menu*/
.hdr-burger-menu {
    margin-left: 64px;
}

.hdr-bm {
    position: relative;
    width: 26px;
    cursor: pointer;
}

.hdr-bm span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 6px 0;
    margin-left: auto;
    transition: var(--default-transition);
}

.hdr-bm:hover span {
    opacity: .7;
}

.show-fixed .hdr-bm span {
    background: #000;
}

/*burger menu*/
.body-overflow {
    overflow: hidden;
}

.site-offcanvas {
    overflow: hidden;
    position: relative;
}

.site-offcanvas .offcanvas-backdrop.active {
    visibility: visible;
}

.site-offcanvas .offcanvas-backdrop {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    visibility: hidden;
}

.slide-menu-content {
    position: fixed;
    bottom: 0;
    right: -50%;
    width: 100%;
    max-width: 684px;
    height: 100%;
    opacity: 0;
    z-index: 1002;
    visibility: hidden;
    background: var(--primary);
    transition: var(--default-transition);
}

.slide-menu-content.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.slide-menu-inner-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
    z-index: 2;
    padding: 0;
}

.close-b-menu {
    font-size: 30px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 60px;
    right: 50px;
    cursor: pointer;
    z-index: 5;
    transition: var(--default-transition);
}

.close-b-menu:hover {
    opacity: .7;
}

.bm-nav {
    position: relative;
    padding: 9.427vw 4.427vw 0.781vw;
}

ul#slidenav {
    font-size: 0;
    column-count: 2;
    gap: 21px;
}

ul#slidenav>li:first-child {
    display: none;
}

ul#slidenav>li {
    display: block;
    margin-bottom: 42px;
    line-height: 1.5;
}

ul#slidenav>li>a {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 1.2px;
    position: relative;
}

ul#slidenav>li>.sub-menu {
    margin-left: 20px;
    margin-top: 14px;
}

ul#slidenav .sub-menu li {
    margin-bottom: 13px;
    line-height: 1.5;
}

ul#slidenav .sub-menu a {
    font-size: 16px;
    font-weight: 300;
    color: #f3e7cd;
    letter-spacing: 1px;
    position: relative;
}

ul#slidenav .sub-menu a:hover {
    opacity: .7;
}

ul#slidenav>li>.sub-menu .sub-menu {
    margin-left: 36px;
    margin-top: 6px;
}

ul#slidenav>li:nth-child(3) {
    margin-bottom: 370px;
}

ul#slidenav>li:nth-child(4) {
    margin-bottom: 116px;
}

.bm-contacts ul {
    margin-top: 10px;
}

.bm-contacts ul li {
    display: flex;
    font-size: 15px;
    font-weight: 300;
    color: #f3e7cd;
    letter-spacing: .3px;
    line-height: 1.7;
    margin-bottom: 1px;
}

.bm-contacts ul li a {
    color: #f3e7cd;
    position: relative;
}

.bm-contacts ul li a:hover {
    opacity: .7;
}

.bm-contacts ul li em {
    margin-right: 10px;
    font-size: 12px;
    color: var(--secondary);
}

.bm-contacts ul li em.ai-font-envelope-f {
    font-size: 9px;
}

.bm-contacts ul li em.ai-font-location-c {
    font-size: 16px;
    margin-right: 6px;
}

/*get in touch section*/
section.contact-form-area {
    position: relative;
    padding: 7.604vw 15px 6.719vw;
    background: var(--primary);
}

.cf-inner {
    position: relative;
    z-index: 5;
    max-width: 71.5vw;
    margin: 0 auto;
}

.cf-col-wrap {
    display: flex;
    flex-wrap: wrap;
}

.cf-col-left,
.cf-col-right {
    width: 50%;
}

.cf-col-left {
    padding-right: 15px;
}

.cf-left-content {
    position: relative;
}

.cf-title {
    margin: 0 0 43px
}

.cf-title .global-title,
.cf-title .global-title span {
    color: var(--secondary);
}

.cf-text {
    color: #f3e7cd;
    font-weight: 200;
    line-height: 1.77;
    letter-spacing: .6px;
}

.cf-text p {
    display: block;
}

.cf-right-content {
    position: relative;
    margin-left: -12px;
}

.cf-form form {
    font-size: 0;
    position: relative;
    margin: 0 -10px;
}

.cf-field {
    position: relative;
    width: 100%;
    padding: 0 10px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
}

.cf-field.w-50 {
    width: 50%;
}

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"],
.cf-field textarea {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .7px;
    background: transparent;
    width: 100%;
    height: 48px;
    color: #f3e7cd;
    padding: 0 16px;
    resize: none;
    border: 1px solid var(--secondary);
    -webkit-appearance: none;
    -moz-appearance: none;
}

.cf-field.cf-textarea textarea {
    padding-top: 18px;
    height: 80px;
}

.cf-field.cf-textarea {
    margin-bottom: 0;
    width: 100%;
}

.cf-field.cf-checbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 18px;
}

.cf-checbox-label {
    display: block;
    font-size: 15px;
    font-weight: 200;
    color: #f3e7cd;
    letter-spacing: .7px;
}

.cf-field.cf-checbox span.wpcf7-list-item {
    display: inline-block;
    margin-right: 17px;
}

.cf-checbox span.wpcf7-list-item label {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 200;
    color: #f3e7cd;
    letter-spacing: .7px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cf-checbox span.wpcf7-list-item label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cf-checbox span.wpcf7-list-item label span.wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background: transparent;
    border: solid 1px var(--secondary);
}

.cf-checbox span.wpcf7-list-item label:hover input~span.wpcf7-list-item-label::before {
    background-color: var(--secondary);
}

.cf-checbox span.wpcf7-list-item label input:checked~span.wpcf7-list-item-label::before {
    background-color: var(--secondary);
}

.cf-field.cf-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    gap: 34px;
}

.cf-submit input {
    font-size: 12px;
    font-weight: 200;
    text-transform: uppercase;
    color: #f3e7cd;
    letter-spacing: 1.7px;
    width: 140px;
    height: 46px;
    background: transparent;
    border: 1px solid var(--secondary);
    border-radius: 50px;
}

.cf-field.cf-btn input:hover {
    color: #fff;
    background: var(--secondary);
}

.cf-contacts span {
    display: inline-block;
    font-size: 15px;
}

.cf-contacts span a {
    color: #f3e7cd;
    position: relative;
}

.cf-contacts span a:hover {
    opacity: .7;
}

.cf-contacts-divider {
    width: 1px;
    height: 20px;
    background: var(--secondary);
    margin: 0 9px;
    vertical-align: bottom;
}

.acceptance {
    font-size: 10px;
    font-weight: 200;
    color: #f3e7cd;
    line-height: 1.7;
    letter-spacing: 1.2px;
}

.acceptance a {
    color: #f3e7cd;
    text-decoration: underline !important;
}

.acceptance a:hover {
    opacity: .7;
}

.acceptance label {
    display: flex;
    align-items: self-start;
    gap: 10px;
}

.cf-form div.wpcf7 .ajax-loader {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -18px;
}

.cf-form span.wpcf7-not-valid-tip {
    font-size: 14px;
}

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

.cf-form div.wpcf7-response-output {
    margin: auto;
    position: absolute;
    width: calc(100% - 20px);
    font-size: 14px;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    bottom: -35px;
}

.cf-form .wpcf7-spinner {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    margin: auto;
}

.cf-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    bottom: 5px;
    left: 0;
    z-index: 100;
    border: 1px solid #ff0000;
    background: #fff;
    padding: .2em .8em;
    width: auto;
}

/*end*/

/*footer*/
footer.main-footer {
    position: relative;
    padding: 3.385vw 0 3.125vw;
    text-align: center;
}

.ftr-bg.site-bg canvas {
    opacity: .53;
}

.ftr-inner {
    position: relative;
    z-index: 5;
    max-width: 77.313vw;
    margin: 0 auto;
}

.ftr-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px 70px;
}

.ftr-logos-divider {
    width: 1px;
    height: 56px;
    background: #bcb3a2;
    opacity: .48;
    margin-bottom: 10px;
}

.ftr-contacts {
    display: flex;
    justify-content: center;
    gap: 30px 120px;
    margin-top: 40px;
}

.ftr-contacts span {
    display: block;
}

span.ftr-contacts-label {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: .5px;
    margin-bottom: 15px;
}

.ftr-contacts>div {
    font-size: 15px;
    font-weight: 200;
    color: #161618;
    letter-spacing: .4px;
    line-height: 1.75;
}

.ftr-contacts span a {
    color: #161618;
    position: relative;
}

.ftr-contacts span a:hover {
    opacity: .7;
}

.ftr-contacts span em {
    color: var(--secondary);
    font-size: 12px;
    margin-right: 10px;
}

.ftr-location span em {
    font-size: 15px;
    margin-right: 0;
}

.ftr-smi {
    margin-top: 13px;
}

.ftr-smi a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 27px;
    background: var(--primary);
    border-radius: 100%;
    color: var(--secondary);
    margin: 0 10px;
}

.ftr-smi a:hover {
    background: var(--secondary);
    color: #fff;
}

/*end*/

/*footer nav*/
.ftr-nav {
    padding: 24px 0;
    border-top: 1px solid #beb2a3;
    border-bottom: 1px solid #beb2a3;
}

ul.footernav {
    font-size: 0;
}

ul.footernav>li {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
}

ul.footernav>li>a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #161618;
    display: inline-block;
    position: relative;
}

ul.footernav>li>a:hover {
    opacity: .7;
}

/*end*/

/*disclaimer*/
.ftr-disclaimer p {
    line-height: 2;
    font-size: 12px;
    font-weight: 300;
    color: #161618;
    letter-spacing: .45px;
    margin-bottom: 26px;
}

.ftr-disclaimer a {
    color: #161618;
}

.ftr-disclaimer a:hover {
    opacity: .7;
}

.ftr-disclaimer {
    position: relative;
    margin: 33px 0 25px;
}

.ftr-disclaimer img {
    margin: 0 auto 11px;
}

/*end*/

/*copyright & mls*/
.footer-copyright-holder {
    margin-top: 32px;
}

.footer-copyright,
.footer-copyright a {
    font-size: 12px;
    font-weight: 300;
    color: #161618;
    letter-spacing: 1px;
    line-height: 1.2;
}

.footer-copyright a:hover {
    opacity: .7;
}

.footer-copyright a[href="https://www.agentimage.com"] {
    color: #161618;
    text-decoration: underline !important;
    font-weight: 700;
}

.footer-copyright a[href="https://www.agentimage.com"]:hover {
    opacity: .7;
}

.mls {
    font-size: 28px;
    color: var(--secondary);
    margin-top: 25px;
}

.mls em {
    margin: 0 3px;
}

/*end*/

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

button:focus-visible,
a:focus-visible,
#pojo-a11y-toolbar button:focus-within,
#pojo-a11y-toolbar a:focus-within {
    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 {
    display: none !important;
}

/* Readable font on pojo */
body.pojo-a11y-readable-font [class*=ai-font],
body.pojo-a11y-readable-font [class~=ai-font],
body.pojo-a11y-readable-font [class^=ai-font] {
    font-family: agentimage !important;
}

/*end*/

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

#content p,
#content li {
    font-size: clamp(17px, 1.188vw, 19px);
    font-weight: 200;
    color: #161618;
    letter-spacing: .5px;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0;
    line-height: 1;
}

#content .entry-custom-title {
    font-size: clamp(19px, 1.5vw, 24px);
    font-weight: 400;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    color: var(--font-color-title);
    letter-spacing: 5px;
    position: relative;
}

#content .entry-custom-title span {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    display: block;
    letter-spacing: 0;
    position: relative;
    color: var(--primary);
    margin-top: 6px;
}

.page-id-24 #breadcrumbs {
    padding: 0 50px;
}

.page-id-41 #inner-page-wrapper {
    margin-bottom: 0;
}

body #ai-modern-contact .ai-modern-contact-photo span:before {
    top: 30px;
    left: auto;
    right: 30px;
    height: 100%;
    width: calc(100% - 50px);
    max-width: 619px;
    background: var(--primary);
}
.post-31 .custom-page-col select{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    padding-left: 5px;
    border: 1px solid rgba(0, 0, 0, .3);
}

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

body #listings-details .listings-form .ajax-loader {
    bottom: -65px;
    right: 10px;
}

body #ai-modern-contact .ai-modern-contact-info li a:hover {
    opacity: .5;
}

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

.single-aios-agents #content {
    margin-top: 20px;
    margin-bottom: 20px;
}

#breadcrumbs a {
    color: var(--primary);
}

#breadcrumbs a:hover {
    opacity: .5;
}

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

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip,
.post-page-buyers .use-floating-validation-tip .wpcf7-not-valid-tip,
.post-page-sellers .use-floating-validation-tip .wpcf7-not-valid-tip,
.post-page-careers .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 2px;
    width: auto;
}

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
}

.category-blog #inner-page-wrapper {
    margin-bottom: 30px;
}

body #listings-results .listings-sort ul {
    padding-left: 0;
}

body #content .listings-printable-header img {
    filter: invert(1) brightness(100);
}

.hdr-logo a.site-logo {
	max-width: 300px;
	display: flex;
}

.hdr-logo a.site-logo img {
	width: auto;
	/*height: 51px;*/
}

.hdr-logo a.site-logo img:first-child {
	/*padding-right: 20px;
	border-right: 1px solid #fff;
	margin-right: 20px;*/
}

.main-header.show-fixed .hdr-logo a.site-logo {		
	filter: brightness(0) invert(0);
}

.cf-field.f-dl input[type="submit"]{
    background: #022b2a;
    border-radius: 0;
    display: flex;
}
body.page-id-31 #content .cf-field.f-dl input[type="submit"],
body.page-id-49 #content .cf-field.f-dl input[type="submit"],
body.page-id-48 #content .cf-field.f-dl input[type="submit"]{
    font-size: 13px;
    width: 190px;
    height: 55px;
    font-weight: 700;
}

.cf-field.f-dl .wpcf7-form-control-wrap{
    display: block;
}
.cf-field.f-dl input[type="text"],
.cf-field.f-dl input[type="tel"],
.cf-field.f-dl input[type="email"] {
  border: none;             
  border-bottom: 1px solid #022b2a; 
  border-radius: 0;         
  outline: none;            
  background: transparent;  
  padding: 8px 0;            
  color: #022b2a;
  margin-bottom: 10px;
  font-size: 14px;
}

#main-wrapper #aci-custom-map.leaflet-container, #main-wrapper #ihf-map-canvas{
    filter:none;
}

.page-id-24 #ai-modern-contact .ai-modern-contact-map{
    display:none;
}

.grecaptcha-badge {
    z-index: 999;
    margin-bottom: 70px;
}
/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (min-width: 1601px) {}
@media only screen and (min-width: 992px) {
    .cf-field.f-dl.custom_form{
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
    }
    .cf-field.f-dl.custom_form .col-field{
        width: calc(50% - 10px);
    }
    .cf-field.f-dl.custom_form .col-field:nth-child(n + 3){
        margin: 10px 0 0;
    }
}

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

    .cf-checbox-label,
    .cf-checbox span.wpcf7-list-item label {
        font-size: 13px;
    }

    .cf-checbox span.wpcf7-list-item label span.wpcf7-list-item-label::before {
        top: -3px;
    }
}

@media only screen and (max-width: 1366px) {
    .show-fixed nav.header-nav {
        padding-left: 2.594vw;
    }
}

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

    .name-Safari.safari-true .site-bg.fixed-bg canvas {
        background-attachment: local;
    }

}

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

    .site-bg.fixed-bg canvas {
        background-attachment: local !important;
    }

    nav.header-nav ul#nav>li>a {
        font-size: 15px;
        margin: 0 18px;
    }

    .hdr-burger-menu {
        margin-left: 34px;
    }

    .cf-inner {
        max-width: 81.5vw;
    }

    .ftr-inner {
        max-width: 87.313vw;
    }

}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
	
	
	.cf-field.f-dl.custom_form .col-field:nth-child(n + 2){
        margin: 10px 0 0;
    }
    /* 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%;
    }

    /*end*/

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

    .aios-mobile-header-wrapper {
        z-index: 1001 !important;
    }

    .body-overflow {
        overflow: unset;
    }

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

    header.main-header {
        z-index: 101;
        position: relative;
        background: var(--primary);
        padding: 70px 15px 15px;
    }

    header.main-header.show-fixed {
        background: var(--primary);
        padding: 70px 15px 15px;
    }

    .hdr-col-2,
    .hdr-col-3,
    .site-offcanvas {
        display: none;
    }

    .hdr-logo a {
        opacity: 1;
        pointer-events: auto;
    }

    .hdr-inner {
        justify-content: center;
    }

    section.contact-form-area {
        padding: 50px 15px 70px;
    }

    .cf-col-wrap {
        gap: 30px;
    }

    .cf-col-wrap>div {
        width: 100%;
        text-align: center;
        padding: 0 !important;
    }

    .cf-right-content {
        margin-left: 0;
    }

    .cf-field.cf-checbox {
        justify-content: center;
    }

    .cf-field.cf-btn {
        justify-content: center;
        gap: 30px;
    }

    .acceptance label {
        text-align: left;
    }

    footer.main-footer {
        padding: 50px 15px;
    }

    .ftr-logos a {
        flex-direction: column;
    }

    .ftr-logos-divider {
        display: none;
    }

    .ftr-contacts {
        gap: 30px;
        flex-direction: column;
    }

    .ftr-smi a {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 5px;
    }

    ul.footernav>li {
        display: block;
        padding: 10px 0;
    }

    .page-id-24 #breadcrumbs {
        padding: 0 15px;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .post-page-relocation .entry.entry-content .global-btn {
        margin-bottom: 20px;
    }

    .post-page-lifestyle .entry.entry-content .global-btn {
        margin-bottom: 30px;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {

    /*title*/
    :root {
        --font-size-title: clamp(40px, 4.5vw, 72px);
    }

    /*end*/

    .cf-field.w-50 {
        width: 100%;
    }

    .cf-field.cf-checbox {
        flex-direction: column;
    }

    .cf-field.cf-checbox span.wpcf7-list-item {
        display: block;
        margin: 10px;
    }

    .cf-form div.wpcf7-response-output {
        bottom: -45px;
    }

    body #ihf-main-container .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }

}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {

    :root {
        --font-size-title: clamp(30px, 4.5vw, 72px);
    }

    .global-arrow {
        justify-content: center;
        gap: 30px 0 !important;
        flex-wrap: wrap !important;
        max-width: 200px !important;
    }

    .global-arrow .global-btn {
        order: 3;
    }

    .global-arrow button {
        margin: 0 10px;
    }

    .global-title {
        letter-spacing: 1px;
    }

    span.ftr-contacts-label {
        font-size: 19px;
        margin-bottom: 0;
    }

    body #agents-single .agents-contact li {
        height: auto;
    }

}

