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

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

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

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

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

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

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

/*global photo*/
.global-photo {
    position: relative;
}

.global-photo canvas {
    display: block;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/*global title*/
.global-title {
    font-size: 24px;
    font-weight: 300;
    color: var(--font-color-title);
    letter-spacing: 1.3px;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
}

.global-title span {
    font-size: var(--font-size-title);
    font-family: var(--font-family-title);
    display: block;
    letter-spacing: 0;
    margin-top: 5px;
}

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

/*global btn*/
.global-btn {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--secondary) !important;
    letter-spacing: .7px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 170px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--secondary);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

.global-btn.white-btn {
    color: #fff !important;
    border: 1px solid #fff;
}

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

/*global arrow*/
.global-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.global-arrow button {
    padding: 0;
    border: 1px solid var(--secondary);
    background: transparent;
    width: 60px;
    height: 60px;
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-arrow button:hover {
    background: var(--secondary);
}

.global-arrow button:hover em {
    filter: invert(1) brightness(100);
}

.prev-icon {
    display: inline-block;
    width: 7px;
    height: 12px;
    background: url(../../assets/images/prev.png) no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.next-icon {
    display: inline-block;
    width: 7px;
    height: 12px;
    background: url(../../assets/images/next.png) no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

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

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

/* 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: 230px;
    left: 50%;
    margin-left: -115px;
    padding-top: 13px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

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

ul#nav .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px;
    background: var(--primary);
}

ul#nav .sub-menu a:hover {
    background: var(--secondary);
    text-decoration: none;
}

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

ul#nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

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

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

/*fixed header*/
header.main-header.show-fixed {
    padding: 1px 15px;
}

header.main-header.show-fixed::after {
    opacity: 1;
    height: 100%;
}

header.main-header.show-fixed .hdr-logo a {
    max-width: 180px;
    filter: invert(1);
}

header.main-header.show-fixed nav.header-nav ul#nav>li>a {
    color: #2b2b2b;
}

header.main-header.show-fixed .hdr-bmenu span {
    background: rgb(146, 113, 64);
    background: linear-gradient(90deg, rgba(146, 113, 64, 1) 0%, rgba(168, 139, 92, 1) 50%, rgba(205, 179, 123, 1) 100%);
}

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    padding: 25px 15px 15px;
    width: 100%;
    left: 0;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

header.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: url(../../assets/images/hdr-fixed-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-holder {
    position: relative;
    z-index: 5;
    max-width: 1435px;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.site-logo a {
    display: block;
    position: relative;
    max-width: 344px;
    max-width: 244px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

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

/*header nav*/
nav.header-nav {
    position: relative;
    text-align: center;
}

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

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

nav.header-nav ul#nav>li>a {
    font-size: var(--font-size-default);
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .4px;
    display: block;
    position: relative;
    z-index: 5;
    padding: 5px;
    margin: 0 33px;
    transform: translateZ(0);
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav.header-nav ul#nav>li>a:hover {
    opacity: .7;
}

nav.header-nav ul#nav .sub-menu a {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 1px;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*end*/
/*burger menu*/
.header-burger-menu {
    padding-left: 65px;
}

.hdr-bmenu {
    position: relative;
    width: 40px;
    cursor: pointer;
    transition: var(--default-transition);
}

.hdr-bmenu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 10px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hdr-bmenu:hover {
    opacity: .7;
}

/*Slide menu*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}

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

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

.slide-menu-content {
    position: fixed;
    bottom: 0;
    right: -50%;
    width: 100%;
    max-width: 750px;
    height: 100%;
    opacity: 0;
    z-index: 1002;
    visibility: hidden;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.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: 15px 0;
}

body.body-overflow {
    overflow: hidden;
}

.slide-menu {
    position: relative;
    z-index: 5;
    padding: 15px 15px 10px 90px;
}

.close-b-menu {
    color: #000;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    text-align: center;
    position: absolute;
    top: 35px;
    right: 30px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

.slide-menu-logo {
    margin: 17px 0 50px;
}

.slide-menu-logo a {
    display: block;
    position: relative;
    max-width: 240px;
    filter: invert(1);
}

.slide-menu-nav {
    position: relative;
}

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

ul#slidenav>li {
    display: block;
    margin: 0 0 45px;
}

ul#slidenav>li:nth-child(2) {
    /*margin-bottom: 55px;*/
}

ul#slidenav>li>a {
    display: inline-block;
    color: #000;
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-title);
    letter-spacing: .7px;
    text-transform: uppercase;
    position: relative;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul#slidenav>li>a:hover, ul#slidenav>li>.sub-menu>li a:hover, .slide-menu-contacts>span a:hover, .slide-menu-smi span a:hover {
    color: var(--secondary);
}

ul#slidenav>li>.sub-menu>li a {
    font-size: 18px;
    font-weight: 200;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1.8px;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

ul#slidenav>li>.sub-menu>li:not(:last-child) {
    margin-bottom: 15px;
}

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

.slide-menu-contacts {
    margin-left: auto;
    margin-top: -20px;
    max-width: 315px;
    padding-left: 15px;
}

.slide-menu-contacts>span {
    display: block;
    margin: 0 0 17px;
}

.slide-menu-contacts>span a {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    letter-spacing: .7px;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.slide-menu-contacts>span a em {
    margin-right: 15px;
    color: var(--secondary);
}

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

.slide-menu-smi {
    font-size: 0;
}

.slide-menu-smi span {
    display: inline-block;
    padding-right: 32px;
}

.slide-menu-smi span a {
    display: block;
    position: relative;
    font-size: 21px;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*main footer*/
footer.main-footer {
    position: relative;
    padding: 50px 0 40px;
    background: var(--secondary);
    text-align: center;
}

.ftr-site-logo a {
    position: relative;
    display: block;
    max-width: 230px;
    margin: 0 auto;
}
    .ftr-site-logo a img {
        filter: brightness(0);
    }

.ftr-contacts {
    font-size: 0;
    margin-top: 23px;
}

.ftr-contacts span {
    display: inline-block;
    padding: 0 43px;
    font-size: 13px;
    font-weight: 300;
    color: #000;
    letter-spacing: .5px;
}

.ftr-contacts span a em {
    color: #fff;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ftr-contacts span a {
    color: #000;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ftr-contacts span a:hover {
    color: #fff;
}

span.ftr-email em {
    font-size: 11px;
}

span.ftr-smi a {
    font-size: 17px;
}

span.ftr-smi a:hover em {
    color: #000;
}

span.ftr-smi {
    font-size: 0;
}

span.ftr-smi a em {
    margin: 0 12px;
}

span.ftr-smi a:first-child em {
    margin-left: 0;
}

span.ftr-smi a:last-child em {
    margin-right: 0;
}

/*end*/
/*footer nav*/
ul.footernav {
    font-size: 0;
}

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

ul.footernav>li>a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .3px;
    color: #000;
    display: inline-block;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul.footernav>li>a:hover {
    color: #fff;
}

.ftr-nav {
    padding: 55px 0 51px;
}

/*end*/
/*disclaimer*/
.ftr-disclaimer p {
    line-height: 1.2;
    letter-spacing: .6px;
    font-size: 12px;
    font-weight: 400;
    margin: 0 -30px;
}

.ftr-disclaimer a {
    color: #000;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ftr-disclaimer a:hover, .ftr-links a:hover {
    color: #fff;
}

.ftr-disclaimer {
    position: relative;
    padding: 0 0 15px;
}

.ftr-links a {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    letter-spacing: .65px;
    text-decoration: underline !important;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

span.ftr-links-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    vertical-align: middle;
    background: #000;
    margin: 0 8px;
}

.ftr-links {
    margin: 0 0 21px;
}

/*end*/
/*copyright & mls*/
.footer-copyright, .footer-copyright a {
    line-height: 1.2;
    letter-spacing: .6px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

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

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

.mls {
    font-size: 0;
    color: #fff;
}

.mls em {
    margin: 0 7px;
    display: inline-block;
    font-size: 25px;
    color: #fff;
}

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

body.pojo-a11y-readable-font em[class^=ai-font], body.pojo-a11y-readable-font a[class^=ai-font] {
    font-family: 'agentimage' !important;
}

/*end*/
/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.error404 .ip-banner {
    display: block;
}
.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;
}

/* 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-weight: 400;
    font-family: var(--font-family-title);
    color: #000;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
}

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

.page-id-34 #inner-page-wrapper>.container {
    width: 100%;
    padding: 0;
}

.page-id-34 .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-agent-photo img {
    height: auto;
}

.page-id-34 .aios-home-valuation-form-steps-wrap .aios-home-valuation-footer .aios-home-valuation-footer-steps.active .aios-home-valuation-icon {
    border-color: #fff;
    color: #fff;
}

.page-id-34 .aios-home-valuation-form-steps-wrap .aios-home-valuation-footer .aios-home-valuation-footer-steps.active h6, .page-id-34 .aios-home-valuation-form-steps-wrap .aios-home-valuation-footer .aios-home-valuation-footer-steps.active p {
    color: #fff;
}

.page-id-21 #ip-amante-ii-contact {
    padding: 0 0 40px;
}

.page-id-21 #ip-amante-ii-contact #breadcrumbs {
    padding: 0 15px;
    /*max-width: 1170px;
    margin-left: auto;
    margin-right: auto;*/
    max-width: 50%;
}
    .page-id-21 #ip-amante-ii-contact #breadcrumbs > span {
        max-width: 514px;
        width: 90%;
        margin: 0 auto;
        display: block;
    }

.page-id-21 #content h2.aios-contact-title {
    color: var(--primary);
    font-size: 74px;
    font-weight: 500;
    line-height: 0.875;
    letter-spacing: 0;
    margin: 0;
}

.page-id-21 #content .aios-contact-title span {
    margin: .75em 0;
    color: #000;
    line-height: normal;
}

.page-id-21 #content .aios-contact-form p {
    font-size: 17px;
    margin: 30px 0 0;
}

.page-id-21 #content .aios-contact-form input[type="text"], .page-id-21 #content .aios-contact-form input[type="email"], .page-id-21 #content .aios-contact-form textarea {
    font-size: 16px;
}

.page-id-21 #content .aios-contact-form input[type="submit"].global-btn {
    font-size: 14px;
    font-weight: 300;
    color: var(--secondary) !important;
    letter-spacing: .7px;
    position: relative;
    display: flex;
    width: 100%;
    max-width: 170px;
    border: 1px solid var(--secondary);
    padding: 0;
}

.page-id-21 #content .aios-contact-form input[type="submit"].global-btn:hover {
    background: var(--secondary);
    color: #fff !important;
}

body #aios-home-valuation-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

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

#listings-details .listings-form div.wpcf7-response-output {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1;
}

#listings-details .listings-form form {
    position: relative;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    top: 20%!important;
    left: 20%!important;
    width: auto!important;
    font-size: 12px;
    line-height: 1;
    right: auto!important;
}

body #ihf-main-container.ihf-modal-container .modal .modal-header .modal-title, body #listings-details .listings-form h2, body #listings-details .listings-smi h2, body #listings-details .listings-extras>li>strong, body #listings-details .listings-form h2 span, body #listings-details .listings-accordion-content ul li strong, body #listings-details .listings-accordion-title span, body #listings-details .listings-accordion h2, body #listings-details .listings-price, body #listings-details .listings-description h2, body #listings-details .listings-plan>ul>li>strong, body #listings-details .listings-address, body #listings-details .listings-address strong, body #ihf-main-container.ihf-modal-container .modal div.ihf-email-alert-popup-replace p.fw-bold {
    font-weight: 400!important;
    font-family: var(--font-family-title);
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-git, body.aios-custom-ihomefinder-printable-template #content .listings-printable-info {
    background: #b59f6c;
}

body.aios-custom-ihomefinder-printable-template p#breadcrumbs {
    display: none;
}

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

body.aios-custom-ihomefinder-printable-template #content .listings-printable-header img {
    height: auto;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-header {
    padding: 15px;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-disclaimer a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

body.aios-custom-ihomefinder-printable-template #content .listings-printable-disclaimer a:hover {
    color: #b59f6c;
}

/** Blog Page */
.page-template-template-blog #content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

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

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

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

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

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

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

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

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

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

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

.page-template-template-blog #content .archive-more {
    font-style: normal;
    text-decoration: none;
    width: 190px !important;
}

.page-template-template-blog article.col-md-12.article-long {
    margin-bottom: 20px;
}

.page-template-template-blog .site-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 248px;
    height: 54px;
    max-width: 100%;
    border: 2px solid #000000;
}

.page-template-template-blog .site-button span {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 12px 0 16px;
}

.page-template-template-blog .site-button::before {
    content: '';
    width: 13px;
    height: 1px;
    background: #868686;
}

.page-template-template-blog .site-button i {
    font-size: 10px;
    font-style: normal !important;
}

.page-template-template-blog .ai-font-arrow-h-n:before {
    content: "\b0214";
}

.page-template-template-blog .site-button:hover {
    background: #000;
    border: 2px solid #000000;
    transition: all 0.35s ease-in-out;
    color: #fff;
}

.page-template-template-blog #content a {
    color: var(--secondary);
}

/** End Blog Page */
.single-aios-communities #listings-results .listings-sort .sort-view {
    display: none;
}

.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100% !important;
    padding: 0 !important;
}

.aios-custom-ihomefinder-results-template #inner-page-wrapper > .container {
    width: 100%;
    /*padding: 0;*/
}

.aios-custom-ihomefinder-results-template.page-id-0 #inner-page-wrapper>.container, .single-aios-communities #inner-page-wrapper>.container {
    padding: 0 15px;
}

#breadcrumbs a, body #listings-details .listings-breadcrumbs a {
    color: var(--secondary);
}

#breadcrumbs a:hover, body #listings-details .listings-breadcrumbs a:hover {
    opacity: .7;
}

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

.page-id-34 .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-info .aios-home-valuation-api-result, .page-id-34 .aios-home-valuation-step-3 .aios-home-valuation-step-3-wrap .aios-home-valuation-info span {
    display: none;
}

#nav .sub-menu.show-menu {
    display: block;
    opacity: 1;
}

body #listings-results .listings-sort .sort-view{
    display: none;
}

ul.sitemap-list li.page_item.page-item-22.current_page_item,
ul.sitemap-list li.page_item.page-item--1{
    display: none;
}

.error404 .wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 0;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
    right: initial;
    position: absolute;
    width: auto;
}

body .leaflet-div-icon {
    border-width: 0;
}

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

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1366px) {
    .site-logo a {
        max-width: 300px;
    }

    .slide-menu-logo {
        margin: 0 0 35px;
    }

    ul#slidenav>li {
        margin: 0 0 35px;
    }

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

    ul#slidenav>li>.sub-menu>li {
        /* margin: 0 0 15px; */
    }

    .slide-menu {
        padding: 15px 15px 20px 90px;
    }

    .ftr-disclaimer p {
        margin: 0 -20px;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    .site-logo a {
        max-width: 250px;
    }

    nav.header-nav ul#nav>li>a {
        margin: 0 10px;
    }

    :root {
        --font-size-title: 55px;
    }

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

    .ftr-disclaimer p {
        margin: 0;
    }

    .page-id-21 #ip-amante-ii-contact #breadcrumbs {
        /*max-width: 970px;*/
    }
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    /* 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*/
    .aios-mobile-header-wrapper {
        z-index: 1001 !important;
    }

    .hdr-col2, .site-offcanvas, header.main-header::after, .side-fixed-contact {
        display: none !important;
    }

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

    header.main-header.show-fixed {
        padding: 70px 15px 15px;
    }

    header.main-header.show-fixed .hdr-logo a {
        max-width: 344px;
        filter: unset;
    }

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

    .site-logo a {
        max-width: 344px;
    }

    :root {
        --font-size-title: 50px;
    }

    .global-btn {
        margin: 0 auto;
    }

    .ftr-contacts span {
        display: block;
        padding: 15px 0;
    }

    .ftr-nav {
        padding: 30px 0;
    }

    span.ftr-links-divider {
        display: none;
    }

    .ftr-links a {
        padding: 7px;
        margin: 5px 0;
    }

    .page-id-21 #ip-amante-ii-contact #breadcrumbs {
        /*padding: 0;
        max-width: 514px;
        margin: 1.12em auto;*/
    }

    .page-id-21 #ip-amante-ii-contact {
        padding: 30px 15px;
    }

    .page-id-21 #content h2.aios-contact-title {
        font-size: 60px;
    }

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

    .page-id-24 img.wp-image-322 {
        float: unset !important;
        margin: 0 auto 30px !important;
        width: 100%;
        max-width: 550px !important;
    }

    .aios-roadmaps-default-wrapper .aios-roadmaps-default-content img {
        object-fit: cover;
        object-position: center;
        height: auto;
    }

    .page-id-21 .aios-contact-photo img {
        display: none;
    }
    .page-id-21 #ip-amante-ii-contact {
        padding-top: 0;
    }
    .page-id-21 #ip-amante-ii-contact #breadcrumbs {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .page-id-21 #ip-amante-ii-contact #breadcrumbs > span {
        width: 100%;
        max-width: 100%;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }

    :root {
        --font-size-title: 45px;
    }

    body #listings-details .listings-form {
        padding: 79px 15px 78px;
    }

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

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    :root {
        --font-size-title: 40px;
    }

    .page-id-21 #content h2.aios-contact-title {
        font-size: 40px;
    }
}

section.featured-properties-area{
    opacity: 0;
}

section.welcome-area, section.map-area, section.about-area, section.cta-area, section.featured-communities-area, section.social-media-area, section.latest-news-area{
    display: none;
}
