:root {
    /** Font default */
    --font-family-default: europa;
    --font-family-title: freight-neo-pro;
    --font-size-default: 18px;
    --font-size-title: 90px;
    --font-color-default: #454545;
    --font-color-title: #a07167;
    /** Use for input, button, and any other element */
    --primary: #a07167;
    --secondary: #e7d3cb;
    --tertiary: #be9f98;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    --gradient-1: linear-gradient(90deg, rgba(160,113,103,1) 0%, rgba(229,189,176,1) 50%, rgba(160,113,103,1) 100%);
    --gradient-2: linear-gradient(70deg, rgba(160,113,103,1) 0%, rgba(229,189,176,1) 50%, rgba(160,113,103,1) 100%);
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    font-weight: 500;
    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; */
}

/* home: smis */
.hp-smis-list {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.hp-smis-list .divider {
    height: 30px;
    width: 1px;
    background: #fff;
    margin: 10px 0;
}

.hp-smis-list a {
    display: inline-flex;
    text-align: center;
    color: #fff;
    margin: 0;
    transition: all var(--default-transition);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    transition: all .5s;
    justify-content: center;
    align-items: center;
}

.hp-smis-list a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .5s;
}

.hp-smis-list a.aios-ai-phone, .hp-smis-list a.asis-mailto-obfuscated-email {
    font-size: 0;
}

.hp-smis-list a.aios-ai-phone i {
    font-size: 13px;
}

.hp-smis-list a.asis-mailto-obfuscated-email i {
    font-size: 11px;
}

.hp-smis-list a:hover, .hp-smis-list a:hover span {
    color: #000 !important;
}

.hp-smis-list a:hover::before {
    opacity: 1;
}

.hp-smis-list .follow-text {
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 3px;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    font-weight: normal;
}

.hp-smis-list a i.ai-font-phone {
    font-size: 13px;
    line-height: 1;
}

.hp-smis-list a {
    text-decoration: none!important;
}

body:not(.home) .hp-smis-list a, body:not(.home) .hp-smis-list span {
    color: #454545;
}

body:not(.home) .hp-smis-list .divider {
    background: #454545;
}

#main-wrapper {
    overflow: hidden;
}

a, a:hover {
    text-decoration: none;
}

.relative {
    position: relative;
}

.custom-container {
    width: 95%;
    max-width: 1480px;
    margin: 0 auto;
}

.canvas-img {
    display: block;
    position: relative;
    overflow: hidden;
}

.canvas-img canvas {
    display: block;
    width: 100%;
    height: auto;
}

.canvas-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--default-transition);
    object-fit: cover;
}

.canvas-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.canvas-bg canvas {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: block;
}

.canvas-bg.bg-texture {
    opacity: .09;
}

.canvas-bg.section-logo-bg canvas {
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .06;
}

.canvas-bg + .custom-container, .custom-container > .canvas-bg ~ div {
    position: relative;
    z-index: 2;
}

.canvas-bg canvas.is-gray {
    filter: grayscale(1);
}

.canvas-bg.is-white::before, .canvas-bg.is-primary::before, .canvas-bg.is-gradient::before {
    content: '';
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .90;
}

.canvas-bg.is-primary, .canvas-bg.is-primary::before {
    background: var(--primary);
}

.canvas-bg.is-white::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
    top: 0;
    z-index: 1;
}

.canvas-bg.is-black::before {
    content: '';
    position: absolute;
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .75;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    display: inline-block;
    text-align: left;
    font-size: 90px;
    font-weight: 400;
    font-family: var(--font-family-title);
    position: relative;
    margin: 0;
    color: var(--primary);
}

.section-title.text-center h2 {
    text-align: center;
    font-size: 70px;
}

.section-title h2 strong {
    display: block;
    font-weight: 400;
    color: #454545;
}

.section-title h2 small {
    display: block;
    font-family: var(--font-family-default);
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.section-title h2 span.section-number {
    font-size: 15px;
    font-weight: 400;
    position: absolute;
    top: 3px;
    left: -22px;
    transform: rotate(90deg);
    font-family: var(--font-family-default);
    color: #fff;
}

.section-btn {
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
    display: inline-block;
    min-width: 190px;
    height: 55px;
    line-height: 55px;
    vertical-align: middle;
    transition: all var(--default-transition);
    text-decoration: none;
    text-align: center;
    position: relative;
    border: 1px #cccccc solid;
    border-radius: 20px;
}

.section-btn.active, .section-btn:hover {
    color: #fff;
    text-decoration: none;
}

.section-btn::before {
    content: '';
    position: absolute;
    background: var(--gradient-1) !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all var(--default-transition);
    opacity: 0;
    border-radius: 20px;
}

.section-btn.active::before, .section-btn:hover::before {
    opacity: 1;
}

.slide-arrow {
    background: transparent;
    margin: 0 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--default-transition);
    display: inline-block !important;
    vertical-align: middle;
    padding: 0;
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px #d1d1d1 solid;
    border-top: 0;
    border-radius: 50px;
    font-size: 0;
    color: var(--primary);
}

.slide-arrow:hover {
    color: #000;
}

.slide-arrow::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 1px;
    background: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    right: -7px;
}

.slide-arrow:hover::before {
    background: #000;
}

.slide-arrow-n::before {
    right: auto;
    left: -10px;
}

.slide-arrow i {
    font-size: 11px;
}

.slide-arrow-p {
    border-left: 0;
}

.slide-arrow-n {
    border-right: 0;
}

.slide-arrow:hover {
    border-color: transparent;
}

.slide-arrow::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: var(--gradient-2);
    z-index: -1;
    opacity: 0;
    transition: all .5s;
}

.slide-arrow:hover::after {
    opacity: 1;
}

/* header */
.header {
    width: 100%;
    height: auto;
    z-index: 99999;
    position: absolute;
    top: 0;
    left: 0;
    padding: 75px 0 ;
}

.header .navwrap {
    position: relative;
}

.header .custom-container {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    width: 90%;
}

.header .logo {
    display: none;
}

.ip-container .header:not(.fixed) {
    padding: 25px 0;
}

.ip-container .header .custom-container {
    max-width: 1460px;
}

.ip-container .header .logo {
    display: block;
    margin-right: 50px;
}

.ip-container .header:not(.fixed) .logo img {
    width: 210px;
    height: auto;
}

.ip-container #breadcrumbs {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.100em;
    max-width: 1330px;
    padding: 0 15px;
    margin: 0 auto 90px auto;
}

.single-aios-communities.ip-container #breadcrumbs{
    position: relative;
    z-index: 3;
}

.ip-container #breadcrumbs a {
    /*color: #808080;*/
    color: #767676 !important;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ip-container #breadcrumbs a:hover {
    color: #a07167 !important;
}

.header .logo a {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 5;
}

.header .logo .logo-image {
    background: #009bbb;
    display: inline-block;
    vertical-align: top;
    width: 69px;
}

.header .navigation {
    display: flex;
    align-items: center;
    padding: 14px 0;
    width: 100%;
}

.header.fixed {
    position: fixed;
    animation: smoothScroll 1s forwards;
    background: #fff;
    padding: 8px 0;
    border-bottom: 3px var(--primary) solid;
    ; }

.header.fixed .logo {
    display: block;
    margin-right: 50px;
    max-width: 102px;
}

.header.fixed .navwrap {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header.fixed .custom-container {
    display: flex;
    max-width: 1380px;
    width: 100%;
}

.header.fixed .navigation {
    position: relative;
}

.header.fixed .hdrnav > li > a {
    color: #000;
}

.header .fixed-logo, .header.fixed .default-logo {
    display: none;
}

.header.fixed .fixed-logo {
    display: block;
}

.header-signup {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
    background: var(--tertiary);
    letter-spacing: 2px;
}

.header-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: all var(--default-transition);
    opacity: 0;
}

.header-signup:hover::before {
    opacity: 1;
}

.header.fixed .header-signup {
    border-radius: 50px;
}

.header-signup a {
    color: #fff;
    border-radius: 0;
    font-size: 18px;
    display: block;
    width: 215px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all var(--default-transition);
    text-decoration: none;
}

.header-signup a:hover {
    color: #000;
}

.single-aios-agents #content {
    margin-top: 233px;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sub Menu */
.hdrnav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family-default);
}

.hdrnav > li {
    position: relative;
    margin: 0;
}

.hdrnav > li:not(:last-child) {
    margin-right: 65px;
}

.hdrnav > li::after {
    content: '';
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    width: 0;
    height: 0;
    border-left: 7.5px solid transparent;
    border-right: 7.5px solid transparent;
    border-top: 5px solid #fff;
    transition: all .5s;
}

.header.fixed .hdrnav > li::after {
    border-top: 5px solid var(--primary);
}

.hdrnav > li:hover::after {
    opacity: 1;
}

.hdrnav > li > a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
    padding: 5px 0;
    display: block;
    position: relative;
    transition: var(--default-transition);
}

.ip-container .hdrnav > li > a, .ip-container .hdrnav > li > a:hover {
    color: #000;
}

.hdrnav > li > a:hover {
    color: #fff;
}

.hdrnav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 22px 0 0;
    position: absolute;
    width: 100%;
    min-width: 195px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    transition: var(--default-transition);
    opacity: 0;
    visibility: hidden;
}

.header.fixed .hdrnav .sub-menu {
    padding-top: 35px;
}

.hdrnav li:hover > .sub-menu, .hdrnav li:focus > .sub-menu, .hdrnav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.hdrnav .sub-menu li {
    display: block;
    position: relative;
    padding: 0;
    margin-bottom: 1px;
    background: rgb(0 0 0 / 75%)
}

.hdrnav .sub-menu li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: var(--default-transition);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.hdrnav .sub-menu li:hover:before, .hdrnav .sub-menu li:focus:before {
    opacity: 1;
}

.hdrnav .sub-menu li.menu-item-has-children:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 7px solid #fff;
    z-index: 2;
    pointer-events: none;
}

.hdrnav .sub-menu a {
    font-size: 12px;
    color: #fff;
    line-height: 1;
    display: block;
    text-align: center;
    padding: 14px 10px !important;
    text-transform: uppercase;
    line-height: 1;
    transition: var(--default-transition);
    position: relative;
    z-index: 2;
}

.hdrnav .sub-menu a:hover, .hdrnav .sub-menu a:focus {
    color: #fff;
}

.hdrnav .sub-menu .sub-menu {
    margin-left: 100%;
    padding: 0 0 0 1px;
    top: 0;
}

/* offcanvas menu */
.offcanvas-toggle {
    position: absolute;
    left: 30px;
    top: 50%;
    width: 30px;
    height: 18px;
    transform: translateY(-50%);
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--default-transition);
}

.offcanvas-menu {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

body.offcanvas-open .offcanvas-menu {
    right: 0;
}

body.offcanvas-menu-open {
    overflow: hidden !important;
}

.offcanvas-menu-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    max-width: 885px;
    background: #fff;
}

.offcanvas-menu-inner .canvas-bg::before {
    background: rgb(157 34 41 / 90%);
}

.offcanvas-menu-body {
    padding: 45px 30px 60px 20px;
    color: #fff;
    overflow-x: auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

.offcanvas-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 25px;
}

.offcanvas-logo {
    position: absolute;
    background: url(../images/site-monogram.png) no-repeat;
    width: 100%;
    /*max-width: 420px;*/
    max-width: 50%;
    height: 100%;
    background-size: contain;
    /* top: 0;  	left: 0;*/
    top: 50%;
    left: 50%;
    opacity: .05;
    transform: translate(-50%, -50%);
    pointer-events: none;
    margin-top: 20%;
}

.side-navi {
    width: 95%;
    text-align: right;
}

.side-navi > li {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.side-navi > li > ul {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    /*transition: all .5s;*/
    -webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.side-navi > li.menu-item-has-children:hover > ul {
    max-height: 1000px;
    -webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.side-navi a {
    transition: all .5s;
    color: #454545;
}

.side-navi a:hover {
    color: var(--secondary);
}

.side-navi > li > ul a {
    color: #000;
}

.offcanvas-close {
    cursor: pointer;
    left: 0;
    top: 20px;
    position: absolute;
    font-size: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--default-transition);
}

.offcanvas-close i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.offcanvas-close:hover {
    background: #fff;
}

.offcanvas-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header.fixed .offcanvas-toggle {
    display: none;
}

.offcanvas-toggle-lines {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 23px;
    flex-direction: column;
}

.offcanvas-toggle-lines i {
    width: 34px;
    height: 3px;
    background: #fff;
    display: block;
}

.offcanvas-contact-info {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    text-align: left;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    text-transform: none;
}

.offcanvas-contact-info a {
    color: #fff;
}

.offcanvas-contact-info-phone {
    text-transform: uppercase;
}

.offcanvas-contact-info i {
    width: 25px;
    text-align: center;
    color: var(--secondary);
    position: absolute;
    font-size: 18px;
    top: 4px;
    left: 0;
}

.offcanvas-contact-info i.ai-font-location-c {
    font-size: 0;
    background: url(../images/mail-box.png) no-repeat;
    width: 17px;
    height: 18px;
    top: -1px;
}

.offcanvas-contact-info i.ai-font-envelope-f {
    font-size: 11px;
}

.offcanvas-contact-info-smis {
    margin-top: 30px;
}

.offcanvas-contact-info-smis a {
    margin-right: 25px;
    font-size: 30px;
    color: var(--secondary);
    transition: all var(--default-transition);
}

.offcanvas-contact-info-smis a:hover {
    color: #fff;
}

/* footer */
.footer {
    width: 100%;
    /*background: #fff;*/
    background: #000;
    padding: 100px 0 60px;
    font-size: 15px;
    color: #fff;
}

.footer .canvas-bg.is-primary::before {
    opacity: .70;
}

.footer .canvas-bg.is-black::before {
    width: calc(100% - 70px);
    height: calc(100% - 60px);
    bottom: 0;
    top: auto;
}

.footer a {
    color: #fff;
    transition: all var(--default-transition);
}
.footer a:hover{
    color: var(--primary);
}
.footer .custom-container {
    max-width: 1140px;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col-main {
    width: 50%;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    filter: brightness(2);
    max-width: 100%;
    height: auto;
}

.footer-contact {
    display: inline-block;
    vertical-align: top;
}

.footer-contact-info {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 1.5;
    text-align: left;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.footer-contact-info i {
    width: 25px;
    text-align: center;
    color: var(--secondary);
    position: absolute;
    font-size: 18px;
    top: 4px;
    left: 0;
}

.footer-contact-info i.ai-font-location-c {
    font-size: 0;
    background: url(../images/mail-box.png) no-repeat;
    width: 17px;
    height: 18px;
    top: -1px;
}

.footer-contact-info i.ai-font-envelope-f {
    font-size: 10px;
    top: 8px;
}

.footer-nav {
    display: inline-block;
    vertical-align: top;
    margin-left: 30px;
}

.footernav {
    columns: 2;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footernav li {
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-disclaimer {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: right;
    color: #a3a3a3;
}

.footer-disclaimer a {
    color: #a3a3a3;
}
.footer-disclaimer a:hover{
    color: #fff;
}
.footer-copyright {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

.footer-copyright a[target="_blank"] {
    color: var(--secondary);
}
.footer-copyright a[target="_blank"]:hover{
    color: #fff;
}
.footer-copyright .ai-font-footer-logo {
    margin-top: 20px;
    display: inline-block;
    font-size: 30px;
    color: var(--secondary);
}

/* footer form */
.footer-col-form {
    width: 45%;
}

.footer-cf {
    position: relative;
    padding: 60px 0 0;
    max-width: 880px;
    margin: 0 auto;
}

.footer-cf .custom-container {
    position: relative;
    z-index: 2;
}

.footer-cf .section-title h2 {
    font-size: 90px;
    text-align: center;
    color: var(--secondary);
}

.footer-cf .section-title h2 small {
    color: #afa5a5;
}

.footer-cf .section-title p {
    line-height: 1.7;
}

.footer-cf .wpcf7 {
    position: relative;
}

.footer-cf .wpcf7 form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}

.footer-cf .wpcf7 .wpcf7-response-output {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    bottom: 0;
    margin: 0;
    padding: 5px;
}

.cf-field {
    width: calc(50% - 8px);
    padding: 5px 0;
    position: relative;
    margin-bottom: 15px;
}

.cf-field-full {
    width: 100%;
}

.cf-field input, .cf-field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1.1px;
    outline: none;
    color: #fff;
    border-bottom: 1px #fff solid;
}

.cf-field input::placeholder, .cf-field textarea::placeholder {
    text-transform: uppercase;
    color: #fff;
}

.cf-field textarea {
    resize: none;
    padding-top: 20px;
    height: 100px;
    padding-right: 45px;
}

.cf-field textarea::-webkit-scrollbar {
    display: none;
}

.cf-submit {
    position: absolute;
    bottom: 40px;
    right: 0;
}

.cf-submit .section-btn {
    border: 0;
    min-width: auto;
    height: auto;
    padding: 0;
    color: #fff;
    line-height: normal;
}

.cf-submit .section-btn span {
    font-size: 0;
}

.cf-submit .section-btn::before {
    display: none;
}

.cf-submit .section-btn i {
    font-size: 25px;
    font-weight: 700;
}

.cf-submit .section-btn:hover i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cf-submit .section-btn:hover {
    background: transparent;
    color: #fff;
}

.cf-field .wpcf7-not-valid-tip {
    position: absolute;
    left: auto;
    right: 0;
    width: auto;
}

.footer.cf .wpcf7-spinner {
    position: absolute;
}

.footer-smis-wrap {
    margin: 45px 0;
}

.footer-smis-wrap h3 {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 20px;
}

.footer-smis-wrap a {
    width: 35px;
    height: 35px;
    border: 2px #808080 solid;
    border-radius: 50%;
    display: inline-flex;
    margin-right: 10px;
    font-size: 18px;
    color: var(--secondary);
    transition: all var(--default-transition);
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.footer-smis-wrap a:hover {
    /*color: #fff;*/
    color: #000;
    /*background: var(--primary);*/
    background: var(--gradient-1);
}

.footer .aios-scroll-to {
    border: 1px #d1d1d1 solid;
    width: 92px;
    height: 92px;
    position: absolute;
    border-radius: 50%;
    right: 50px;
    bottom: 70px;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    text-decoration: none;
    overflow: hidden;
    transition: all .5s;
}

.footer .aios-scroll-to::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .5s;
}

.footer .aios-scroll-to:hover {
    color: #000;
    border-color: transparent;
}

.footer .aios-scroll-to:hover::before {
    opacity: 1;
}

.footer .aios-scroll-to i {
    font-size: 25px;
    color: var(--secondary);
}

.footer .aios-scroll-to:hover i {
    color: #000;
}

/* popup: signup */
.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-signup .aios-popup-body {
    max-width: 1280px;
    width: 90%;
    padding: 0;
    margin: 50px auto 0;
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-signup .aios-popup-body .aiosp-close {
    width: 60px;
    height: 60px;
    background: var(--tertiary);
    color: #fff;
    border-radius: 50%;
    font-size: 51px;
    font-weight: 400;
    opacity: 1;
    top: -20px;
    right: -20px;
}

.aiosp-container.aiosp-inline-holder.aiosp-ref-\#popup-signup .aios-popup-body .aiosp-close:hover {
    background: var(--gradient-1);
    color: #000;
}

.aiosp-wrap {
    z-index: 999999 !important;
}

#popup-signup {
    display: flex;
    flex-wrap: wrap;
}

#popup-signup .wpcf7 {
    position: relative;
}

.popup-signup-content {
    padding: 20px 60px;
    width: calc(100% - 500px)
}

.popup-signup-content .section-title::before {
    content: '';
    width: 70px;
    height: 130px;
    display: block;
    margin: 0 auto 20px;
    background: url(../images/site-monogram-1.png) no-repeat;
    background-size: contain;
}

.popup-signup-content p {
    font-size: 16px;
    color: #454545;
    line-height: 1.5;
}

.popup-signup-img {
    width: 500px;
}

#popup-signup .wpcf7 form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}

#popup-signup .wpcf7 .wpcf7-response-output {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    bottom: -40px;
    margin: 0;
    padding: 5px;
}

.pu-field {
    width: calc(50% - 8px);
    padding: 5px 0;
    position: relative;
    margin-bottom: 15px;
}

.pu-field-full {
    width: 100%;
}

.pu-field input, .pu-field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1.1px;
    outline: none;
    color: #000;
    border-bottom: 1px #000 solid;
}

.pu-field input::placeholder, .pu-field textarea::placeholder {
    color: #878787;
}

.pu-field textarea {
    resize: none;
    padding-top: 20px;
    height: 100px;
}

.pu-submit {
    margin-top: 30px;
}

.cf-submit .section-btn:hover {
    background: transparent;
    color: #fff;
}

.pu-field .wpcf7-not-valid-tip {
    position: absolute;
    left: auto;
    right: 0;
    width: auto;
}

/* Global */
/*******************************************************   *   * 4. IP Styles   *   *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
    display: none;
}

.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, .ai-classic-testimonials-wrap #content {
    min-height: 500px;
    /* margin-top: 20px;*/
    margin-top: 233px;
}

.ai-classic-testimonials-wrap #content p#breadcrumbs {
    margin-bottom: 0;
}

.aios-communities-page, .aios-testimonials-page {
    margin-top: 233px;
}

#content .archive-subtitle, #content .archive-title, #content .entry-title {
    font-size: var(--font-size-title);
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    position: relative;
    margin: 0;
    color: var(--primary);
    line-height: 1;
}

/** 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;
}

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;
}

/* 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-light-background, #pojo-a11y-toolbar .pojo-a11y-btn-grayscale {
    display: none !important;
}

/*kvcore*/
.page-id-39 #inner-page-wrapper .container, .page-id-128 #inner-page-wrapper .container, .page-id-127 #inner-page-wrapper .container, .page-id-35 #inner-page-wrapper .container, .page-id-38 #inner-page-wrapper .container, .page-id-2062 #inner-page-wrapper .container {
    width: 100%;
}

.kv-pagination.kv-text-center .kv-form-label-button, .kv-detail-requesttour.kv-button.kv-button-inverted, .kv-detail-request.kv-button.kv-button-inverted {
    background: var(--tertiary);
    border: none;
    color: #fff;
    position: relative;
}

.kv-detail-v2-agent .kv-detail-v2-agent-cta .kv-button-inverted-v2 {
    background: var(--tertiary) !important;
    border: none;
    color: #fff;
    position: relative;
    border: none;
}

.kv-detail-v2-agent .kv-detail-v2-agent-cta .kv-button-inverted-v2:hover {
    background: var(--gradient-1) !important;
    color: #000 !important;
}

.kv-pagination.kv-text-center .kv-form-label-button::before, .kv-detail-requesttour.kv-button.kv-button-inverted::before, .kv-detail-request.kv-button.kv-button-inverted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: all var(--default-transition);
    opacity: 0;
    z-index: -1;
}

.kv-detail-requesttour.kv-button.kv-button-inverted:hover, .kv-detail-request.kv-button.kv-button-inverted:hover {
    background: var(--gradient-1) !important;
    color: #000 !important;
}

.kv-pagination.kv-text-center [type='radio']:checked+.kv-form-label-button::before, .kv-pagination.kv-text-center [type='checkbox']:checked+.kv-form-label-button::before, .kv-pagination.kv-text-center .kv-form-label-button:hover::before {
    opacity: 1;
}

.kv-pagination.kv-text-center [type='radio']:checked+.kv-form-label-button, .kv-pagination.kv-text-center [type='checkbox']:checked+.kv-form-label-button, .kv-pagination.kv-text-center .kv-form-label-button:hover {
    background: transparent;
    color: #000 !important;
}

.kv-form-label-button .fa {
    font-style: normal !important;
}

#inner-page-wrapper {
    z-index: unset !important;
}

.kv-detail-v2-slider-controls .fa, .kv-detail-v2 .kv-list-bar li .fa {
    font-style: normal !important;
}

div#kvcoreidx-shortcode--listing-detail--slider {
    padding-right: 0 !important;
}

section#kv-detail-v2-map:empty {
    display: none;
}

.kv-mortgage-calculator-sidebar-image img {
    width: 100%;
    max-width: 100%;
}

.kv-detail-v2-back-to-search-button {
    border: 0;
    background: var(--tertiary);
    border: none;
    color: #fff !important;
}

.kv-detail-v2-back-to-search-button:hover {
    background: var(--gradient-1) !important;
    color: #000 !important;
}

.kv-detail-v2-compliance, .kv-list-bar li {
    color: #000 !Important;
}

.kv-properties-search-form .kv-properties-search-submit button {
    color: #000;
}

.ip-container #content .entry-content a {
    /*color: #a07167;*/
    color: #9a6b61;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.ip-container #content .entry-content a :before {
    position: absolute;
    content: '';
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #a07167;
    pointer-events: none;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ip-container #content .entry-content a :hover:before {
    width: 100%;
}

body .aiosCommunitiesGalaxy__col a:hover .aiosCommunitiesGalaxy__content::before {
    opacity: 0.6;
}

.aiosCommunitiesGalaxy .ai-communities-pagination ul a {
    color: #808080;
    transition: color var(--default-transition);
}

.aiosCommunitiesGalaxy .ai-communities-pagination ul span.page-numbers.current {
    color: #a07167;
}

.aiosCommunitiesGalaxy .ai-communities-pagination ul a.next i, .aiosCommunitiesGalaxy .ai-communities-pagination ul a.prev i {
    color: #808080;
}

.aiosCommunitiesGalaxy .ai-communities-pagination ul a:hover, .aiosCommunitiesGalaxy .ai-communities-pagination ul a.next:hover i, .aiosCommunitiesGalaxy .ai-communities-pagination ul a.prev:hover i {
    color: #a07167!important;
}

body.page-id-47 #breadcrumbs, #post-47 {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

body.page-id-47 #breadcrumbs {
    padding: 0 15px;
}

body.page-id-47 #agents-results .agents-list {
    margin-top: 20px
}

body.page-id-47 #content .entry-content {
    padding: 0;
}

body.page-id-47 #agents-results .agents-list .agents-box-row {
    padding: 20px;
}

body.page-id-47 #agents-results .agents-list .agents-box-col > .agents-box > div .agent-information .agent-name {
    line-height: 1;
}

body.page-id-47 #agents-results .agents-list .agents-box-col .agents-box .agent-image-photo::after {
    background: rgb(163 116 106 / 60%);
}

body.page-id-47 #agents-results .agents-list .agents-box .agent-box-hover > .agent-box-hover-info span {
    margin-right: 8px;
}

#ai-minimalist-properties-results .ai-minimalist-properties-results-grid .ai-minimalist-properties-results-button {
    position: absolute !important;
    display: flex !important;
}

.ihf-listing-search-results .btn-group a {
    display: table-cell !important;
    color: #fff !important;
}

#content #agents-single .agents-button {
    display: none;
}

#content #agents-single {
    margin-top: 80px;
}

/* KVCORE LISTINGS */
/* listings */
.ip-cd-listings {
    width: 95%;
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.ip-cd-listings-item {
    display: inline-block;
    position: relative;
    transition: all .5s;
}

.ip-cd-listings-item a {
    display: block;
    position: relative;
}

.ip-cd-listings-item-img::before, .ip-cd-listings-item-img::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    top: 0;
    left: 0;
    transition: all var(--default-transition);
    pointer-events: none;
}

.ip-cd-listings-item-img::after {
    background: rgb(163 116 106 / 60%);
    opacity: 0;
}

.ip-cd-listings-item:hover .ip-cd-listings-item-img::after {
    opacity: 1;
}

.ip-cd-listings-item-img-price {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    padding-bottom: 25px;
    font-size: 28px;
    font-weight: 500;
    z-index: 3;
}

.ip-cd-listings-item-img-price::before {
    content: '';
    display: block;
    background: url(../images/hp-hover-logo.png) no-repeat;
    width: 99px;
    height: 69px;
    transition: all var(--default-transition);
    margin: 0 auto 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.ip-cd-listings-item:hover .ip-cd-listings-item-img-price::before {
    opacity: 1;
}

.ip-cd-listings-item {
    padding: 5px;
    background: #fff;
    filter: blur(0);
    opacity: 1;
    transition: .5s all;
    position: relative;
    width: 33.33%;
}

.ip-cd-listings-item::before {
    content: '';
    background: url(../images/site-monogram.png) no-repeat;
    background-size: contain;
    width: 127px;
    height: 231px;
    transition: all var(--default-transition);
    margin: 0 auto 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(1);
    opacity: 0;
    z-index: 2;
}

.ip-cd-listings-item:hover::before {
    opacity: .80;
}

.ip-cd-listings-item:hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 0 10px rgb(0 0 0 / .50);
}

.ip-cd-listings-list .slick-slide[aria-hidden="true"] .ip-cd-listings-item {
    filter: blur(5px);
    opacity: 0;
}

.ip-cd-listings-item-details {
    color: #fff;
    margin-top: 20px;
    display: block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 40px 40px 0;
}

.ip-cd-listings-item-details a {
    color: #fff;
}

.ip-cd-listings-item-price {
    font-size: 30px;
    font-family: var(--font-family-title);
    position: relative;
    margin-bottom: 5px;
}

.ip-cd-listings-item-price::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: -40px;
    background: linear-gradient(90deg, rgba(229, 189, 176, 1) 0%, rgba(229, 189, 176, 0) 100%);
}

.ip-cd-listings-item:hover .ip-cd-listings-item-price::before {
    left: -50px;
}

.ip-cd-listings-item-address-1 {
    font-size: 20px;
    font-weight: 700;
}

.ip-cd-listings-item-address-2 {
    font-size: 16px;
}

.ip-cd-listings-item-specs {
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--default-transition);
}

.ip-cd-listings-item:hover .ip-cd-listings-item-specs {
    max-height: 100px;
}

.ip-cd-listings-item-spec {
    display: inline-block;
    font-size: 14px;
    margin: 0 2px;
}

.ip-cd-listings .icon-fp-bed, .ip-cd-listings .icon-fp-bath, .ip-cd-listings .icon-fp-sqft {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 10px;
}

.ip-cd-listings .icon-fp-bed {
    background-image: url(../images/icon-qs-bed.png);
    top: 2px;
}

.ip-cd-listings .icon-fp-bath {
    background-image: url(../images/icon-qs-bath.png);
}

.ip-cd-listings .icon-fp-sqft {
    background-image: url(../images/icon-sqft.png);
}

.ip-cd-listings-item-details .section-btn {
    margin-top: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    min-width: 145px;
    height: 44px;
    line-height: 44px;
    color: #000;
    border-color: transparent;
    font-size: 12px;
}

.ip-cd-listings-item:hover .ip-cd-listings-item-details .section-btn {
    max-height: 45px;
    opacity: 1;
    margin-bottom: 30px;
}

.ip-cd-listings-item-details .section-btn::before {
    opacity: 1;
}

.ip-comm-pagi {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    margin: 30px 0 45px;
}

.pagi-counter {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #454545;
    border: solid 1px #e5bdb0;
    width: 88px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    letter-spacing: 1px;
    margin: 0 -1px;
}

.ip-comm-pagi a.pagi-arrow {
    width: 47px;
    height: 47px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: solid 1px #e5bdb0;
    padding: 0 0 3px;
    color: #454545;
    font-weight: 700;
    font-size: 16px;
    -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;
    text-decoration: none;
}

.ip-comm-pagi a.pagi-arrow:hover {
    background: #e5bdb0;
    color: #fff;
}

a.pagi-arrow.prev {
    border-radius: 13px 0 0 13px;
}

a.pagi-arrow.next {
    border-radius: 0 13px 13px 0;
}

a.pagi-arrow.prev span {
    transform: rotate(180deg);
    top: 4px;
    position: relative;
}

.ip-cd-listings-disclaimers {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.ip-cd-listings-disclaimer {
    margin-bottom: 45px;
}

.ip-cd-listings-disclaimer img {
    margin-bottom: 15px;
}

.ip-cd-listings-disclaimer p {
    font-size: 12px;
    color: #454545;
    line-height: 1.5;
    margin-bottom: 15px;
}

.page-template-template-kvcore-listings .ip-cd-listings {
    margin-top: 40px;
}

.page-template-template-kvcore-listings .kv-properties-container .kv-property-filters {
    margin-bottom: 0.5rem !important;
    margin-right: 105px !important;
}

.page-template-template-kvcore-listings #content form {
    line-height: 1.7;
    margin: 0;
}

.page-template-template-kvcore-listings #section-kvCore-listings {
    margin-top: 30px;
}

.page-template-template-kvcore-listings .kv-layout-card .listings-and-mls {
    display: none;
}

/* Advanced Search */
.post-page-advanced-search .kv-properties-search-form .kv-filters-control-container .kv-filters-container {
    position: relative;
    width: 100% !important;
    display: block;
    max-width: unset;
}

.post-page-advanced-search .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more {
    position: relative;
    width: 100% !important;
    display: block;
    max-width: unset;
    height: unset;
}

.post-page-advanced-search .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .filters-container-more-wrapper {
    overflow: auto;
}

.post-page-advanced-search .kv-properties-search-form>.kv-form-group.kv-properties-search-filters {
    width: 100%;
    flex-wrap: wrap;
}

.post-page-advanced-search .kv-properties-search-form {
    flex-wrap: wrap;
}

.post-page-advanced-search button#kv-filters-search-more {
    display: none;
}

.page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select-container {
    position: relative;
    top: 8px;
}

.page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select-container .kv-multiple-select-search-container {
    height: 55px;
}

.page-template-template-kvcore-listings .kv-properties-search-form>.kv-properties-search-filters {
    top: 8px;
    position: relative;
}

.page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-submit, .page-template-template-kvcore-listings .kv-properties-search-form #kv-properties-alerts {
    position: relative;
    top: 10px;
}

body.error404 #content {
    margin-top: 233px;
}

body.error404 .error-page-cf-wrap .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    width: auto;
}

body.error404 .error-page-cf-wrap .wpcf7-response-output {
    text-align: center;
}

.kv-types-row label {
    position: relative;
}

.kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-row-proptypes .kv-imagecheck-group .kv-imagecheck {
    position: absolute;
    visibility: unset !important;
    margin-top: 17px;
    right: 10%;
}

#content i.fa.fa-search {
    font-style: normal;
}

.page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select-container .kv-multiple-select-search-container {
    height: 38px;
}


.page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select-container {
    top: -1px;
}

.page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form>.kv-properties-search-filters,
.page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form .kv-properties-search-submit, 
.page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form #kv-properties-alerts {
    top: 0;
}

.kv-filters-get-shortcode.collapse.in,
.kv-filters-save-hotsheet.collapse.in {
    display: block;
}

.kv-multiple-select-search-container input[type="text"] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.page-template-template-kvcore-details #content .entry-title {
    margin-bottom: 35px;
}

.kv-list-v2-item-name {
    max-width: 215px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
}

#kvcoreidx-properties-search {
    margin-bottom: 25px;
}

.kv-bg-light, .kv-row-container:not(section):nth-of-type(even), .kv-list-v2-item:nth-of-type(odd), .kv-agent-profile-v2-header-image {
    background-color: #f7f7f7 !important;
}

.kv-box-footer a {
    display: inline-flex !important;
}

.lcp {
    opacity: 0;
    transition: all .5s;
}
.lcp-show {
    opacity: 1;
}

.grecaptcha-badge {
    z-index: 1000;
}

/*#kvcoreidx-listing-details-page .kv-detail-v2-main div:first-of-type > .kv-mt-4:first-child > h1{
    display: none;
}*/

.page-id-8980 #content h1.entry-title{
    display: none;
}


/* Communities Copy START */
.post-page-communities-2 #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}
.post-page-communities-2 #content .entry-title {
    display: none;
}
.post-page-communities-2.ip-container #breadcrumbs {
    margin-bottom: 30px;
}
.ip-fc-copy {

}
.ip-fc-copy .ip-fc-section {
    margin-bottom: 80px;
}

.ip-fc-copy .ip-fc-section-container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1410px;
    margin: 0 auto;
}

#content .ip-fc-copy .ip-fc-section-container p {
    font-size: 22px;
    line-height: 1.6;
    color: #454545;
    margin-bottom: 45px;
}

#content .ip-fc-copy .ip-fc-section-1 .section-title h2 {
    margin: 0;
    font-size: 110px;
    font-weight: 400;
    font-family: var(--font-family-title);  
    position: relative;
    line-height: 1;
}
#content .ip-fc-copy .ip-fc-section-1 .section-title h2 strong {
    font-weight: 400;
    display: inline;
}

#content .ip-fc-copy .ip-fc-section-1 .section-title h2 small {
    color: #afa5a5;
    font-size: 18px;
}

.ip-fc-copy .ip-fc-section-title::before {
  content: '';
  background: url(../../images/galaxy/ip-ab-section-title-icon.png) no-repeat;
  background-size: contain;
  width: 34px;
  height: 62px;
  transition: all var(--default-transition);
  margin: 0 auto 14px;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all .5s;
  pointer-events: none;
}

.ip-fc-copy .ip-fc-section-content {
    flex: 1;
    padding: 0 8%;
}

.ip-fc-copy .ip-fc-section-1 .ip-fc-section-content::before {
  content: '';
  position: absolute;
  background: url(/app/plugins/aios-communities/templates/themes/galaxy/images/site-monogram.png) no-repeat;
  width: 372px;
  max-width: 95%;
  height: 680px;
  background-size: contain;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .05;
  pointer-events: none;
}

.ip-fc-copy .ip-fc-section-1 .canvas-bg {
    max-height: 835px;
    top: auto;
    bottom: 0;
}

.ip-fc-copy .ip-fc-section-1::after  {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.ip-fc-copy .ip-fc-list {
    font-size: 0;
}

.ip-fc-copy .ip-fc-list-item {
    width: calc(33.33% - 10px); 
    display: inline-block;  
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 0 30px rgb(0 0 0 / 30%); */
    transition: transform .5s;  
    border: 5px transparent solid;
}

.ip-fc-copy .ip-fc-list-item::before {
    content: '';
    background: url(../../galaxy/images/site-monogram.png) no-repeat;
    background-size: contain;
    width: 68px;
    height: 123px;
    transition: all var(--default-transition);
    margin: 0 auto 14px;
    position: absolute; 
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);  
    pointer-events: none;
    z-index: 2;
    opacity: 0;
}

.ip-fc-copy .ip-fc-list-item-img::before,
.ip-fc-copy .ip-fc-list-item-img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;    
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    opacity: .85;
    transition: all .5s;
}

.ip-fc-copy .ip-fc-list-item-img::after {
    background: linear-gradient(0deg, rgba(229,189,176,1) 0%, rgba(229,189,176,0) 100%);
    height: 100%;
    opacity: 0;
}

.ip-fc-copy .ip-fc-list-item:hover {
    transform: scale(1.1);
    z-index: 10;
    border: 5px #fff solid;
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
}
.ip-fc-copy .ip-fc-list-item:hover::before {
    opacity: .65;
}
.ip-fc-copy .ip-fc-list-item:hover .ip-fc-list-item-img::after {
    opacity: .85;
}

.ip-fc-copy .ip-fc-list-item-label {
    position: absolute;
    bottom: 40px;
    z-index: 1;
    font-size: 26px;
    font-family: var(--font-family-title);
    color: #000;
    padding: 15px 20px;
    width: 50%;
    background: linear-gradient(90deg, rgba(229,189,176,1) 0%, rgba(229,189,176,0) 100%);
}

/* Communities Copy END */


#inner-page-wrapper .ai-classic-testimonials-pagination ul li a, #inner-page-wrapper .ai-classic-testimonials-pagination ul li span {
    color: #767676;
}

.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
    color: #767676;
}

.kv-detail-v2-slider-photo img {
	max-width: 100%;
}

ul.kv-options-list li input {
    margin: 0 8px 0 0;
}

.aiosp-bg {
    z-index: 999999 !important;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

@media(min-width: 992px) and (max-width: 1360px) {
    .kv-properties-container .kv-property-filters>.kv-form-group.kv-form-with-container {
        justify-content: flex-end !important;   
    }    
    .kv-properties-container.kv-layout-card .kv-property-filters>.kv-form-group.kv-form-with-container {        
        position: relative;
        top: 50px;
    }
    .hp-smis-list {
        right: 5px;
    }
}

@media(max-width: 1560px) {
    .page-template-template-kvcore-listings .kv-properties-container .kv-map-grey-area-filters {
        height: 60px!important;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select-container {
        top: 8px;
    }

    .page-template-template-kvcore-listings .ip-cd-listings {
        margin-top: 60px;
    }

    .page-template-template-kvcore-listings #kvcoreidx-properties-search {
        border: none;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select {
        padding-left: 15px;
    }
}

@media(max-width: 1499px) {
    /* KVCORE Listings */ .ip-cd-listings-item-address-1 {
        font-size: 18px;
    }

    .ip-cd-listings-item-address-2 {
        font-size: 14px;
    }

    .ip-cd-listings-item-spec {
        font-size: 12px;
    }

    .ip-cd-listings-item::before {
        width: 100px;
        height: 180px;
    }

    /* Communities Copy START */
    #content .ip-fc-copy .ip-fc-section-1 .section-title h2 {
        font-size: 90px;
    }
    /* Communities Copy END */
}

@media(max-width: 1360px) {
    .page-template-template-kvcore-listings .kv-properties-container.kv-layout-card .kv-property-column .property-content .filter-header .kv-map-grey-area-filters {
        /* width: 100%; */
    }
}

@media only screen and (min-width: 992px) {
    .section-btn.min-vw {
        font-size: min(0.8750000000000001vw,14px);
        min-width: min(11.875vw,190px);
        height: min(3.438vw,55px);
        line-height: min(3.438vw,55px);
        border-radius: min(1.25vw,20px);
    }

    .section-btn.min-vw::before {
        border-radius: min(1.25vw,20px);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1560px) {
    .ip-container #breadcrumbs {
        font-size: 0.938vw;
        margin-bottom: 5.625vw;
    }
}

@media(max-width: 1440px) {
    .hdrnav > li:not(:last-child) {
        margin-right: 40px;
    }
}

@media(max-width: 1366px) {
    .hdrnav > li > a {
        font-size: 12px;
    }

    .hdrnav > li:not(:last-child) {
        margin-right: 40px;
    }

    .header-translate {
        margin-left: 10px;
    }

    /* Communities Copy START */
    #content .ip-fc-copy .ip-fc-section-1 .section-title h2 {
        font-size: 70px;
    }
    /* Communities Copy END */
}

@media only screen and (min-width: 1200px) {
    html:not(.mobile):not(.safari.ipad):not(.safari.iphone):not(.mobile.android):not(.android) .canvas-bg canvas.is-fixed {
        background-attachment: fixed;
    }
}

@media(max-width: 1199px) {
    .popup-signup-img {
        width: 40%;
    }

    .popup-signup-content {
        width: 60%;
    }

    .footer-contact-info {
        font-size: 13px;
        letter-spacing: 0;
        padding-left: 30px;
    }

    .footernav {
        font-size: 14px;
        letter-spacing: 0;
    }

    .footer-nav {
        margin-left: 18px;
    }

    .hdrnav > li:not(:last-child) {
        margin-right: 25px;
    }

    .header-signup a {
        width: 122px;
        font-size: 16px;
    }

    .hdrnav > li > a {
        font-size: 10px;
    }

    .ip-container .header:not(.fixed) .logo img {
        /* width: 180px;*/
        max-width: 130px;
    }

    .footer .canvas-bg.is-black::before {
        width: calc(100% - 15px);
    }

  
    
}

@media(min-width: 992px) {
    .visible-mobile {
        display: none;
    }
}

@media(min-width: 992px) and (max-width: 1789px) {
    body.page-template-template-kvcore-listings .kv-layout-map .kv-property-listings-container .kv-property-listings {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    }

    body.page-template-template-kvcore-listings .kv-properties-container.kv-layout-map .kv-property-column .kv-property .kv-properties-container.kv-layout-map .kv-property-column .kv-property, body.page-template-template-kvcore-listings .kv-property-listings .kv-per-row-6 {
        max-width: 100% !important;
    }
}

@media(min-width: 992px) and (max-width: 1280px) {
    .page-template-template-kvcore-listings  .kv-properties-search-form .kv-properties-search-areas {
        min-width: 500px;
        max-width: 500px;
    }

    .section-title h2 small{
        font-size: 15px;
    }

    .section-title h2{
        font-size: 80px;
    }
}

@media(min-width: 992px) and (max-width: 1199px) {
    .section-title h2 small{
        font-size: 13px;
    }

    .section-title h2{
        font-size: 60px;
    }

    .ip-cd-listings-item:hover .ip-cd-listings-item-details .section-btn {
        margin: 20px 0;
        height: 30px;
        line-height: 30px;
    }

    .page-template-template-kvcore-listings .kv-properties-container .kv-property-filters {
        margin-right: 0!important;
    }
    
    .page-template-template-kvcore-listings .kv-properties-container .kv-map-grey-area-filters {
        width: 100%;
    }
    
    .page-template-template-kvcore-listings  .kv-properties-search-form .kv-properties-search-areas {
        min-width: 425px;
        max-width: 425px;
    }
    
    .page-template-template-kvcore-listings  .kv-properties-container .kv-property-filters>.kv-form-group.kv-form-with-container .kv-filters-control-container select {
        font-size: 9px;
        width: 89px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .page-template-template-kvcore-listings  .kv-properties-container .kv-property-filters>.kv-form-group.kv-form-with-container .kv-filters-control-container label {
        font-size: 9px;
    }
    
    .page-template-template-kvcore-listings  .kv-properties-search-form button.kv-filter-control {
        font-size: 10px;
    }
    
    .page-template-template-kvcore-listings  .kv-properties-container .kv-property-filters>.kv-form-group.kv-form-with-container .kv-filters-control-container:last-of-type {
        width: 65px;
    }
    
    .page-template-template-kvcore-listings  .kv-properties-container .kv-property-filters>.kv-form-group.kv-form-with-container .kv-filters-control-container .kv-filters-label-container {
        width: 100%;
    }
    
    
    body.page-id-38 .kv-property.kv-per-row-6 {
        max-width: 100%!important;
    }
}

@media only screen and (max-width: 991px) {
    .visible-mobile {
        display: block;
    }

    .slide-controls.visible-mobile {
        display: block !important;
    }

    .offcanvas-toggle.visible-mobile {
        display: flex;
    }

    .hidden-mobile {
        display: none;
    }

    .slide-controls.hidden-mobile {
        display: none !Important;
    }

    .header {
        position: absolute;
        padding: 35px 0;
    }

    body.offcanvas-open .header {
        display: none;
    }

    .header .custom-container {
        display: flex;
        justify-content: center;
    }

    .header.fixed .navwrap {
        width: 100%
    }

    .header.fixed .header-signup {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .header-signup a {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .header .logo, .header.fixed .logo {
        width: 100%;
        margin-right: 0;
        margin-left: 25px;
        max-width: 100px;
    }

    .header .logo img {
        width: 100%;
        height: auto;
    }

    .header .navigation .mob-menu {
        display: none;
    }

    .header .navigation nav {
        clear: both;
        border-top: 5px solid transparent;
        display: none;
    }

    .header .navigation nav > div > ul {
        width: 100%;
        height: auto;
    }

    .header .navigation nav > div > ul > li {
        display: block;
    }

    .header .navigation nav > div > ul > li > a {
        display: block;
        background: #077f98;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #fff;
    }

    .header .navigation nav > div > ul > li:last-child > a {
        padding-right: 24px;
    }

    .header:not(.fixed) .header-signup a {
        display: none;
    }

    .ip-container .header:not(.fixed) .logo {
        margin: 0 0 0 60px !important;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .header:not(.fixed) .navigation {
        display: none;
    }

    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

    #content-sidebar, #content-full {
        width: 100%;
    }

    .outer {
        width: 100%;
        min-width: 100%;
    }

    #content-sidebar #content {
        width: 100%;
    }

    .footer {
        width: 100%;
        background: #d7d7d7;
        padding: 30px 0;
    }

    .footer .canvas-bg.is-black::before {
        width: calc(100% - 15px);
    }

    .footer-cols {
        flex-direction: column-reverse
    }

    .footer-col {
        width: 100%;
        text-align: center;
        padding-right: 10px;
    }

    .footer-col-logo {
        order: 1;
        margin-bottom: 30px;
    }

    .footer-col-contact {
        max-width: 250px;
        margin: 0 auto 30px;
    }

    .footer .footernav li {
        text-align: left;
    }

    .footer-contact {
        font-size: 11px;
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-nav {
        margin-left: 0;
        margin-top: 20px;
    }

    .footer-disclaimer {
        text-align: center;
        max-width: 80%;
        margin: 0 auto 30px;
    }

    .footer .footer-logo {
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto 50px;
        float: none !important;
    }

    .footer-cf .section-title p br {
        display: none;
    }

    .footer-cf {
        max-width: 90%;
    }

    .cf-field {
        width: 100%;
    }

    #pojo-a11y-toolbar, .hp-smis-list {
        display: none;
    }

    .section-title h2 {
        text-align: center;
        font-size: 50px;
    }

    .section-title h2::before {
        display: none;
    }

    .section-title h2 span.section-number {
        transform: rotate(0);
        left: 0;
        position: relative;
    }

    .popup-signup-img {
        width: 100%;
        height: 250px;
    }

    .popup-signup-content {
        width: 100%;
    }

    .pu-field {
        width: 100%;
    }

    .footer .aios-scroll-to {
        bottom: 85px;
        right: 10px;
    }

    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ip-container #breadcrumbs {
        font-size: 14px;
        margin-bottom: 50px;
    }

    .ip-container #breadcrumbs {
        padding: 0;
    }

    .ip-container .offcanvas-toggle-lines i {
        background: var(--primary);
    }

    #content #agents-single {
        margin-top: 0;
    }

    /* KVCORE LISTINGS */
    .ip-cd-listings-item {
        width: 50%;
    }

    .ip-cd-listings {
        max-width: 460px;
    }

    .ip-cd-listings-item {
        width: 100%;
    }

    #content-sidebar, #content-full, .ai-classic-testimonials-wrap #content {
        margin-top: 150px;
    }

    .ip-container #breadcrumbs {
        margin-bottom: 10px !important;
    }

    /* updates */
    .page-template-template-kvcore-listings .kv-properties-search .kv-filters {
        display: block;
    }

    .page-template-template-kvcore-listings #content form {
        flex-wrap: wrap;
        justify-content: center;
        display: flex;
        width: 100%;
        margin: 0!important;
    }

    .kv-properties-container.kv-layout-card .kv-property-column .property-content .filter-header .kv-map-grey-area-filters {
        height: 100px!important;
        width: calc(100% - 10px)!important;
        text-align: center;
        margin: 10px auto 0;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select {
        padding-left: 0;
    }

    .kv-properties-container .kv-property-filters>.kv-form-group.kv-form-with-container {
        justify-content: center;
    }

    .kv-detail-v2-main div:first-of-type {
        justify-content: center;
        text-align: center;
    }

    .kv-multiple-select-search-container .kv-multiple-select-token {
        top: 5px;
        position: relative;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form button.kv-filter-control {
        padding: 8px;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form>.kv-properties-search-filters {
        top: 10px;
    }

    .page-template-template-kvcore-listings .kv-properties-container.kv-layout-map {
        margin-top: 10px;
    }
    
    .page-template-template-kvcore-listings .kv-property.kv-per-row-6 {
        max-width: 100%!important;
    }

    
    /* Communities Copy START */
    .ip-fc-copy .ip-fc-list-item {
        width: calc(50% - 10px);
    }
    /* Communities Copy END */
    
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }

    .footer-cf .section-title h2 {
        font-size: 60px;
    }

    .kv-properties-container.kv-layout-card .kv-property-column .property-content .filter-header .kv-map-grey-area-filters {
        height: auto!important;
    }

    .kv-form-group>*:not(.kv-form-group-filter) label:not(.kv-form-label-button):not(.kv-fullwidth-label) {
        width: 100%;
    }

    .page-template-template-kvcore-listings .kv-properties-container.kv-layout-card .kv-property-column .property-content .filter-header .kv-map-grey-area-filters .kv-filters-market-report-link {
        position: relative!important;
        display: block!important;
        margin: 15px 0;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-areas .kv-multiple-select {
        padding-left: 0;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-filters-control-container {
        padding: 5px;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form .kv-properties-search-filters {
        margin-left: 0;
    }

    .page-template-template-kvcore-listings .kv-properties-search-form>.kv-properties-search-filters {
        top: 1px;
        padding: 0;
    }

    .kv-properties-container.kv-layout-card .kv-property-column .property-content .filter-header .kv-map-grey-area-filters{
      margin: 0 auto;   
    }

    body .kv-properties-container.kv-layout-map .kv-map-column .kv-map-grey-area-filters .kv-filters-market-report-link {
        text-align: center;
        display: block;
        margin: 0 auto;
        position: relative;
    }
    
    body .kv-properties-container.kv-layout-map .kv-map-column .kv-map-grey-area-filters {
        text-align: center;
    }
    
    body .kv-properties-container.kv-layout-map .kv-map-column {
        padding: 0 4px;
    }



    .page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form>.kv-properties-search-filters{
        top: 0;
    } 

    .page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form .kv-properties-search-submit, 
    .page-template-template-kvcore-listings.page-id-127 .kv-properties-search-form #kv-properties-alerts {
        top: 8px;
    }

    body.page-id-2032 .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-row-proptypes .kv-imagecheck-icon {
        line-height: 1;
        margin-top: -6px;
    }
    
    body.page-id-2032 .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-row-proptypes .kv-imagecheck-group .kv-imagecheck-text {
        margin-right: 40px;
    }

     body.page-id-2032 .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-row-proptypes .kv-imagecheck-group .kv-imagecheck {
    right: 7%;
}

     body.page-id-2032 .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-properties-search-submit button {
    font-size: 11px;
}

 body.page-id-2032 .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-properties-search-submit a#kv-filters-clear {
    margin-right: 15px;
}

 body.page-id-2032 .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-properties-search-submit {
    padding: 10px 20px;
}

body .kv-list-v2 .kv-list-v2-item-name {
    width: 100%;
    float: none;
    display: block;
}

body .kv-list-v2 .kv-list-v2-item-value {
    float: none;
    width: 100%;
    display: block;
    padding: 0;
}

body .kv-list-v2 .kv-list-v2-item {
    display: block;
}


    /* Communities Copy START */
    .ip-fc-copy .ip-fc-section-title::before {
        left: 0;
    }

    .ip-fc-copy .ip-fc-section-title {
        padding-left: 50px;
        font-size: 20px;
    }   
    .ip-fc-copy .ip-fc-list {
        text-align: center;
    }
    .ip-fc-copy .ip-fc-list-item {
        width: 100%;
        margin: 5px 0;
    }
    /* Communities Copy END */


}

@media(max-width: 600px) {
    .footer-cf .wpcf7 .wpcf7-response-output {
        bottom: -20px;
    }

    .footer-logo {
        margin-top: 40px !important
    }

        .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-row-proptypes .kv-imagecheck-group .kv-imagecheck {
    right: 4%;
}
 
}

@media(max-width: 480px) {
    #content .archive-subtitle, #content .archive-title, #content .entry-title {
        font-size: 40px;
    }

    .footer-cf .wpcf7 {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-smis-wrap h3 {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-logo img {
        max-width: 230px;
    }

          body.page-id-2032  .kv-properties-search-form .kv-filters-control-container #kv-filters-container-more .kv-row-proptypes .kv-imagecheck-group .kv-imagecheck {
    right: -2%;
}
  
    /* Communities Copy START */
    .ip-fc-copy .ip-fc-section-content {
        padding: 0;
    }
    #content .ip-fc-copy .ip-fc-section-1 .section-title h2 {
        font-size: 50px
    }
    /* Communities Copy END */

}

@media print {
    .header.fixed,header.header-wrapper,#fixed-header,#navigation,.entry-title,.yoast-breadcrumbs,footer, .sidebar,.amh-fixed-header-nav,.ip-bg,.header-content.wrapper,.menu-main-nav-container, a.header-logo,.header-logo,.amh-header-buttons,.sidebar,.top-logo,#navi,#headerwrapper, .transition,a,#breadcrumbs,.header-ip,.ip-image,.fixed-header,.addtoany_share_save_container, .yoast-breadcrumbs,.entry-title,.slide-gt-connect,.grecaptcha-badge,.main-header,div#main-wrapper::after {
        display: none!important
    }

    #content-sidebar #content {
        width: 100% !important;
    }

    #content-sidebar, #content-full, .ai-classic-testimonials-wrap #content {
        margin-top: -70px;
    }

    body {
        background-image: none !important;
    }

    #main-wrapper {
        overflow: unset!important;
    }

    #inner-page-wrapper .container {
        width: 100% !important;
    }

    #inner-page-wrapper a[href]:after {
        content: none !important;
    }

    .kv-detail-v2-photos-controls, div#kvcoreidx-shortcode--listing-detail--slider .kv-detail-v2-slider-controls, .hp-smis-list, #kv-detail-v2-cta .kv-detail-requesttour, #kv-detail-v2-cta .kv-detail-request, .kv-detail-v2-additional-agent, .kv-detail-v2-additional-agent .kv-detail-v2-agent-cta, #kv-detail-v2-map, #kv-detail-mortgage-calculator, .kv-detail-v2-compliance-similar {
        display: none !important;
    }

    .kv-mb-5, .kv-my-5 {
        margin: unset !important;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
/*cf7 fix*/

.wpcf7-form-control-wrap span.wpcf7-not-valid-tip:not(:first-of-type) {
    display: none;
}