:root {
    /** Font default */
    --font-family-default: "Outfit", sans-serif;
    --font-family-title: "Outfit", serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #467faa;
    /* --secondary: #3ab2c3;*/
    --secondary: #488691;
    --accent: #48a55e;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    /*--gradient: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);*/
    --gradient: linear-gradient(90deg, rgb(99, 155, 165) 0%, #488691 100%);
    /*--gradient-alt: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 25%, rgba(58,178,195,1) 77%, rgba(70,127,170,1) 100%);*/
    --gradient-alt: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 25%, rgba(99, 155, 165, 1) 77%, rgba(72, 134, 145, 1) 100%);
}

.post-page-aios-custom-idx-broker-global-page .ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-draggable {
    width: 241px !important;
}

/* 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 {
    color: inherit;
}

a:focus, a:hover {
    color: #488691;
}

a:hover,
a:focus,
.slick-slide,
.slick-slide a {
    outline: none;
    text-decoration: none;
}

input,
select,
textarea {
    outline: none;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.flex:before,
.flex:after {
    display: none;
}

.dir-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.dir-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse wrap;
    flex-flow: column-reverse wrap;
}

.dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
}

.al-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.al-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.al-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.ju-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ju-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ju-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ju-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


/* Global */

#main-wrapper {
    overflow: hidden;
}


/*header*/

header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 29px 0 0;
}

.header-inner {
    padding: 0 2.5%;
}

.header-logo {
    width: 143px;
    padding: 7px 0 0;
}

.header-logo a {
    display: block;
}

.header-logo a img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.header-nav {
    flex-grow: 1;
    margin: 35px 0 0;
}

.site-nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.site-nav li {
    position: relative;
}

.site-nav li a {
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
}

.site-nav > li {
    margin: 0 17px;
}

.site-nav > li:first-child {
    margin-left: 0;
}

.site-nav > li:last-child {
    margin-right: 0;
}

.site-nav > li > a {
    font-size: 15px;
    color: #fff;
    padding: 0;
    position: relative;
    transition: opacity var(--default-transition), color var(--default-transition);
}

.site-nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    z-index: -1;
    background: #fff;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    width: 100%;
    height: 2px;
    right: 0;
    transform: scaleX(0);
}

.site-nav > li:hover > a,
.site-nav > li:focus-within > a {}

.site-nav > li:hover > a:before,
.site-nav > li:focus-within > a:before {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav .sub-menu {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 198px;
    text-align: center;
    padding: 16px 0 0;
    transform: translateY(20px) translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--default-transition);
}

.site-nav .sub-menu li {
    background: rgba(33, 33, 33, .80);
    margin-bottom: 1px;
}

.site-nav .sub-menu a {
    /* background: rgba(33,33,33,.20); */
    color: #fff;
    padding: 12px 10px;
    text-transform: initial;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.site-nav .sub-menu li:hover > a {
    color: #488691;
}

.site-nav .sub-menu li:hover > a,
.site-nav .sub-menu li:focus-within > a {
    /* background: var(--gradient); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.site-nav > li > .sub-menu {
    top: 100%;
    margin-left: 0;
    left: 50%;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header-contact-info {}

.header-contact-info span a {
    transition: color var(--default-transition), opacity var(--default-transition);
}

.header-contact-info span a:hover {
    color: #fff;
    opacity: 0.6;
}

.header-contact-info span.contact-phone {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: #fff;
}

.header-contact-info span.contact-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    border-bottom: 2px solid rgb(255 255 255 / 50%);
    margin-bottom: 20px;
    padding-bottom: 1px;
}


/*fixed header*/

.fixed-header.sticking {
    transform: translateY(0);
    opacity: 1;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    background: #fff;
    padding: 15px 0 13px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--default-transition);
}

.fheader-logo {
    width: 93px;
}

.fheader-logo a {
    display: block;
}

.fheader-logo a img {
    display: block;
    width: 100%;
    height: auto;
}

.fheader-nav {
    flex-grow: 1;
    padding-left: 4%;
}

.fixed-header .site-nav > li > a:before {
    background-color: #000;
}

.fixed-header .site-nav .sub-menu {
    padding: 25px 0 0;
}



#fnav {
    justify-content: flex-start;
}

#fnav > li {}

#fnav > li:first-child {
    margin-left: 0;
}

#fnav > li:last-child {
    margin-right: 0;
}

#fnav > li > a {
    color: #000;
    font-size: 14px;
    padding: 0;
}

#fnav > li:hover > a,
#fnav > li:focus-within > a {
    /* color: #fff; */
}

.fcontact-info {}

.fcontact-info span.contact-phone {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #000;
    margin-right: 35px;
}

.fcontact-info span.contact-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    border-bottom: 2px solid rgb(0 0 0 / 50%);
    padding-bottom: 1px;
}

.fcontact-info span.contact-phone a,
.fcontact-info span.contact-link a {
    transition: opacity var(--default-transition), color var(--default-transition);
}

.fcontact-info span.contact-phone a:hover,
.fcontact-info span.contact-link a:hover {
    color: #000;
    opacity: 0.6;
}


/*mobile header*/

.mobile-header-info {
    margin-left: auto;
}

.mobile-header-info {
    font-size: 20px;
}

.mobile-header-info > span {
    margin-right: 30px;
}

.mobile-header-info a {
    color: #fff;
    transition: color var(--default-transition), opacity var(--default-transition);
}

.mobile-header-info a:hover {
    opacity: 0.6;
}

.mobile-header-info button.bm-menu-open {
    background: transparent;
    width: 28px;
    height: 28px;
    border: none;
    padding: 0;
}

.mobile-header-info button.bm-menu-open span {
    display: block;
    margin-left: auto;
    height: 2px;
    background: #fff;
}

.mobile-header-info button.bm-menu-open span:first-child {
    width: 14px;
}

.mobile-header-info button.bm-menu-open span:nth-child(2) {
    margin: 6px 0;
}


/*dark header*/

.is-dark .header-logo a img {
    -webkit-filter: none;
    filter: none;
}

.is-dark .site-nav > li > a,
.is-dark .header-contact-info span.contact-link,
.is-dark .header-contact-info span.contact-phone,
.is-dark .header-contact-info span.contact-link a:hover,
.is-dark .header-contact-info span.contact-phone a:hover {
    color: #000;
}

.is-dark .header-contact-info span.contact-link {
    border-color: rgb(0 0 0 / 50%);
}

.is-dark .site-nav > li > a:hover {
    /* color: #fff; */
}

.is-dark .site-nav > li > a:before {
    background: #000;
}


.is-dark .mobile-header-info a {
    color: #000;
}

.is-dark .mobile-header-info button.bm-menu-open span {
    background: #000;
}


/*dark header end*/

body.menu-is-active {
    overflow: hidden !important;
}

.custom-mobile-header.is-active {
    transform: translateX(0);
}

.custom-mobile-header-bg.is-active {
    display: block;
}

.custom-mobile-header-bg {
    position: fixed;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: none;
    z-index: 9999;
}

.custom-mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 360px;
    width: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: all .5s ease;
}

.cmh-scrollable {
    height: 100% !important;
    overflow: auto;
}

.cmh-inner {
    min-height: 100%;
}

.cmh-inner .textwidget.custom-html-widget {
    width: 100%;
}

.cmh-info {
    padding: 19px 20px 0;
    width: 100%;
}

.cmh-info-phone {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
}

.cmh-info-phone a {
    transition: all var(--default-transition);
}

.cmh-info-phone a:hover {
    color: var(--secondary);
}

.bm-menu-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #000;
    transition: opacity var(--default-transition);
}

.bm-menu-close:hover {
    opacity: 0.6;
}

.cmh-nav {
    padding: 30px 20px;
    margin: auto;
    width: 100%;
}

#cmh_nav {}

#cmh_nav > li {}

#cmh_nav > li > a {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #000;
    display: block;
    border-bottom: 1px solid #ebebeb;
    text-transform: uppercase;
    padding: 14px 0;
    position: relative;
}

#cmh_nav > li:last-child > a {
    border-bottom: 0;
}

#cmh_nav > li.menu-item-has-children > a {}

#cmh_nav > li.menu-item-has-children > a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 7px;
    height: 11px;
    background: url(../images/icon-arrow.png) center/contain no-repeat;
    transform: rotate(180deg);
    margin: auto;
    transition: all var(--default-transition);
}

#cmh_nav > li.menu-item-has-children.open > a:before {
    transform: rotate(270deg);
}

#cmh_nav .sub-menu {
    border-bottom: 1px solid #ebebeb;
    padding: 10px 0;
    display: none;
}

#cmh_nav .sub-menu li {}

#cmh_nav .sub-menu li a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #000;
    display: block;
    text-transform: uppercase;
    padding: 5px 15px;
}

.cmh-portal-link {
    width: 100%;
    text-align: left;
    padding: 20px;
}

.cmh-portal-link a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    /* border-bottom: 2px solid rgb(0 0 0 / 50%); */
    padding-bottom: 1px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.cmh-portal-link span.contact-link {
    border-bottom: 2px solid rgb(0 0 0 / 50%);
}

.cmh-portal-link a:hover {
    opacity: 0.6;
}


/*section title*/

.section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    line-height: 1;
}

.section-title strong {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title strong:before {
    content: '';
    position: absolute;
    bottom: -8px;
    /* left: 0; */
    right: -13px;
    height: 23px;
    background: var(--gradient-alt);
    z-index: -1;
    opacity: 0.8;
    min-width: 215px;
    width: 100%;
    max-width: 305px;
    display: none;
}

.img-canvas {
    display: block;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: #999;
}

.hp-accent-line,
.ip-accent-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #000;
    opacity: 0.08;
    z-index: -1;
}

.hp-accent-line.line-left,
.ip-accent-line.line-left {
    left: 7.5%;
}

.hp-accent-line.line-right,
.ip-accent-line.line-right {
    right: 7.5%;
}


/*global btn*/

button.btn-a,
a.btn-a,
.btn-a {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    padding: 11px 14px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    background: transparent;
    border: none;
}

button.btn-a:before,
a.btn-a:before,
.btn-a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
}

button.btn-a:hover:before,
a.btn-a:hover:before,
.btn-a:hover:before {
    width: 100%;
}

button.btn-a.is-white,
a.btn-a.is-white,
.btn-a.is-white {
    color: #fff;
}

button.btn-a.is-white:before,
a.btn-a.is-white:before,
.btn-a.is-white:before {
    background: #fff;
}


/*custom slick arrow*/

.custom-slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 2;
}

.custom-slick-arrow-icon {
    display: block;
    margin: auto;
    width: 16px;
    height: 25px;
    background: url(../images/icon-arrow.png) center/contain no-repeat;
}

.custom-slick-arrow.slick-prev {
    left: 0;
}

.custom-slick-arrow.slick-next {
    right: 0;
}

.custom-slick-arrow.slick-next .custom-slick-arrow-icon {
    transform: rotateY(180deg);
}


/*bg*/

.bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.bg-section:before,
.bg-section:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
    width: auto;
}


/*footer*/

footer.footer {
    /*    min-height: 678px;*/
    background: #323232;
    position: relative;
    margin-top: 146px;
    padding-bottom: 51px;
}

.footer-accent {
    position: absolute;
    top: -146px;
    left: 0;
    right: 0;
    z-index: -1;
}

.footer-accent img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-logo {
    margin-top: -117px;
    margin-left: 72px;
    margin-bottom: 39px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    padding: 37px;
    background: #fff;
    box-shadow: 7px 28px 30px 0px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.footer-info-row {}

.footer-info {}

.footer-info span {
    display: block;
    font-size: 16px;
    letter-spacing: 0.15em;
    line-height: 1.857142857142857;
    color: #fff;
    margin-bottom: 10px;
}

.footer-info span.smi {
    margin-top: 43px;
    margin-bottom: 0;
}

.footer-info span.smi a {
    font-size: 21px;
    margin-right: 23px;
}

.footer-info span a:last-child {
    margin-right: 0;
}

.footernav {
    text-align: right;
}

.footernav li {
    margin-bottom: 10px;
}

.footernav li a {
    font-size: 14px;
    letter-spacing: 0.15em;
    line-height: 1.857142857142857;
    color: #fff;
    text-transform: uppercase;
}

.footer-line {
    margin: 48px 3.125% 51px;
    height: 1px;
    background: #fff;
    opacity: 0.1;
}

.footer-copyright {}

.footer-copyright-text {
    width: 500px;
    width: 44%;
}

.footer-copyright-text p {
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.538461538461538;
    color: #a3a3a3;
    margin-bottom: 18px;
}

.footer-copyright-text p:last-child {
    margin-bottom: 0;
}

.footer-icons {
    width: 426px;
    width: 37.369%;
    margin-left: auto;
}

.footer-icons-top {
    margin: 9px 0 34px;
}

.footer-icons-top img {
    display: block;
    height: auto;
    margin: 0 15px;
    max-height: 70px;
    object-fit: contain;
}

.footer-icons-top img:first-child {
    margin-left: 0;
}

.footer-icons-top img:last-child {
    margin-right: 0;
}

.footer-icons-bottom {}

.footer-icons-bottom span {
    font-size: 36px;
    color: #949494;
}

.footer-icons-bottom span i.ai-font-eho {
    margin-left: 10px;
    font-size: 30px;
}

.footer-icons-bottom img {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-left: 38px;
    max-height: 30px;
    object-fit: contain;
}

.footer-info span a,
.footernav li a,
.footer-copyright-text p a {
    transition: color var(--default-transition);
}

.footer-info span a:hover,
.footernav li a:hover,
.footer-copyright-text p a:hover {
    color: var(--secondary);
}




/*landing page header*/
.blp-header {
    position: relative;
    background: #fff;
    z-index: 101;
}

.blp-header-inner {
    padding: 0 3.25%;
}

.blp-header-logo {
    width: 182px;
    text-align: center;
    margin-bottom: -38px;
    margin-top: 3px;
}

.blp-header-logo a {
    display: block;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 29px 30px 0px rgba(0, 0, 0, 0.2);
    padding: 24px;
    margin: 0 auto;
    max-width: 100%;
}

.blp-header-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.blp-navigation {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#blp_nav {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    flex-grow: 1;
    justify-content: space-between;
    padding: 0 65px 0 125px;
}

#blp_nav > li {
    position: relative;
}

#blp_nav > li > a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    letter-spacing: 0.15em;
    color: #000;
    text-transform: uppercase;
    padding: 19px 0;
}

#blp_nav > li > a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #488691;
    height: 2px;
    transition: all var(--default-transition);
    transform: scaleX(0);
}

#blp_nav > li:hover > a:before, #blp_nav > li:focus-within > a:before {
    transform: scaleX(1);
}

#blp_nav .sub-menu {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 248px;
    text-align: center;
    padding: 16px 0 0;
    transform: translateY(20px) translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--default-transition);
}

#blp_nav .sub-menu li {
    position: relative;
    background: #fff;
}

#blp_nav .sub-menu li a {
    display: block;
    padding: 15px 10px;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

#blp_nav li:hover > .sub-menu,
#blp_nav li:focus-within > .sub-menu {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#blp_nav > li > .sub-menu {
    top: 100%;
    padding-top: 32px;
}

#blp_nav > li.dropdown-lg > .sub-menu {
    max-height: 494px;
    overflow: auto;
}

#blp_nav .sub-menu li:hover > a,
#blp_nav .sub-menu li:focus-within > a {
    color: var(--secondary);
}

.blp-navigation a.aios-ai-phone {
    display: flex;
    width: 277px;
    height: 62px;
    border: 1px solid #6b9abd;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #488691;
    letter-spacing: 0.05em;
    transition: all var(--default-transition);
    transition-property: color, background, border;
}

.blp-navigation a.aios-ai-phone:hover {
    background: #488691;
    border-color: #488691;
    color: #fff;
}

/*landing page header end*/


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
}

.post-page-communities .ip-banner,
.single-post .ip-banner {
    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.3);
}

.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: 0;
}


/** 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) */


/* Styles for category/archive/search/etc subheadings (h2) */

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;
}

.ip-container #main-wrapper {
    color: #3b3b3b;
}

#content p {
    /*font-size: 15px;*/
    letter-spacing: 0.02em;
    line-height: 1.6;
}

#content .entry-title,
#content .archive-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    line-height: 1;
}

#content .archive-subtitle {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #000;
    line-height: 1;
}

.footer-back-to-top {
    position: absolute;
    bottom: 93px;
    right: 38px;
    z-index: 999;
    width: 46px;
}

.footer-back-to-top a {
    font-size: 11px;
    letter-spacing: 0.100em;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    writing-mode: vertical-lr;
    display: block;
    position: relative;
    cursor: pointer;
}

.footer-back-to-top a span {
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-origin: center;
}

.footer-back-to-top a span em {
    margin-bottom: 22px;
    color: var(--secondary);
    font-weight: 700;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #b5b5b5;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    font-size: 16px;
}

.footer-back-to-top a:hover {
    color: var(--secondary);
}

.footer-back-to-top a:hover span em {
    background-color: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.footer-info span.smi a.ai-font-facebook:hover {
    background: linear-gradient(90deg, #3b5998 0%, #3b5998 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info span.smi a.ai-font-youtube:hover {
    background: linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info span.smi a.ai-font-instagram:hover {
    background: linear-gradient(120deg, #405de6 40%, #c13584 30%, #fcaf45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p#breadcrumbs,
#content p#breadcrumbs {
    line-height: 2;
    font-size: 15px;
    /* color: #797979;*/
    /* margin: 14px 0;*/
    margin: -40px 0 40px 0;
    /**/
    color: #fff;
    color: #767676;
}

.post-page-communities #content p#breadcrumbs {
    margin-bottom: 60px;
    display: none;
}

p#breadcrumbs .breadcrumb_last {
    /*color: #000;*/
    /*color: #fff;*/
    color: #767676;
}

p#breadcrumbs > span > span {
    padding: 0 3px;
}

p#breadcrumbs > span > span:first-child {
    padding-left: 0;
}

p#breadcrumbs > span > span:last-child {
    padding-right: 0;
}

.post-page-communities .ai-communities-minimalist-wrap,
.tax-community-group .ai-communities-minimalist-wrap {
    padding: 9.750vw 0 0;
}

.ai-communities-minimalist-search .ai-communities-minimalist-sort {
    display: none !important;
}


/*IDX Search pages and tabs*/

.post-page-aios-custom-idx-broker-global-page #IDX-main.IDX-wrapper-standard {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .IDX-navbar-collapse.IDX-collapse {
    display: flex !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-navbar-nav {
    margin-left: auto !important;
    margin-right: auto !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .IDX-control-group {
    min-height: 65px;
    justify-content: space-between !important;
    display: flex !important;
    /*width: 100% !important;*/
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard label {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
}

.post-page-aios-custom-idx-broker-global-page #content ul {
    margin-left: unset;
    margin: unset;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .select2-container {
    width: 100% !important;
    padding: 0 !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .select2-container .select2-choice,
.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .IDX-advancedWrap input.IDX-advancedRange,
.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard input {
    border: 0 !important;
    border-bottom: solid 1px #000000 !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .select2-container .select2-choice,
.post-page-aios-custom-idx-broker-global-page .select2-container-multi .select2-choices .select2-search-field input {
    font-size: 12px !important;
    color: #666666;
    text-transform: uppercase;
    font-weight: normal;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard a {
    color: #333333;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .select2-container .select2-choice .select2-arrow b {
    border-width: 5px !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons {
    display: flex;
    justify-content: center;
    /*margin-top: 25px;*/
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced #IDX-action-buttons {
    margin-top: 45px
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons button,
.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons-bottom button {
    /*
    max-width: 230px;
    min-height: 50px;
    margin: 0 20px !important;
    background: var(--gradient-alt) !important;
  border: black 1px solid !important;
    color: #000;
*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    padding: 11px 14px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    background: transparent;
    border: none;
    width: auto !important;
    /*    min-width: 300px;*/
    margin: 0 15px;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons button::before,
.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons-bottom button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons button:hover::before,
.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard #IDX-action-buttons-bottom button:hover::before {
    width: 100%;
}

.IDX-wrapper-standard .select2-container.select2-container-multi .select2-choices .select2-search-choice {
    background: #f0f0f0 !important;
    color: #6F6F6F !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .select2-container.select2-container-multi .select2-choices {
    border: none;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .select2-container.select2-container-multi .select2-choices input,
.post-page-aios-custom-idx-broker-global-page .select2-container-multi .select2-choices .select2-search-field input {
    appearance: none;
    display: block;
    width: 100%;
    height: 27px;
    margin-top: 10px;
    border: 0;
    border-bottom: solid 1px #000000;
    font-size: 14px;
    color: #000000;
    outline: 0;
}

.post-page-aios-custom-idx-broker-global-page .IDX-wrapper-standard .IDX-hidden {
    display: none !important;
}

.post-page-aios-custom-idx-broker-global-page #IDX-price-group div:first-child {
    padding-right: 10px;
}

.post-page-aios-custom-idx-broker-global-page #IDX-price-group div:last-child {
    padding-left: 10px;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced #IDX-price-group.IDX-control-group {
    width: 100%;
    padding: 0;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced .IDX-advancedWrap input.IDX-advancedRange {
    min-height: 40px;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced #IDX-advancedSearchFields #IDX-boxLabel_mlsAreaMajor input {
    /*margin-top: 0;*/
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced #IDX-advanced_newConstructionYN {
    margin-top: 16px;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced #IDX-advanced_yearBuilt {
    margin-top: 9px;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced #IDX-boxLabel_sqFt label {
    margin-bottom: 0;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-address .IDX-control-group .IDX-controls {
    width: 100% !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-address #IDX-addressWrap input {
    border: none !important;
    border-bottom: 1px solid #000 !important;
    padding-top: 0;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-address #IDX-action-buttons,
.post-page-aios-custom-idx-broker-global-page .IDX-page-listingid #IDX-action-buttons {
    margin-top: 25px !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-listingid .IDX-control-group {
    display: block !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-listingid .IDX-control-label {
    font-weight: normal !important;
    font-size: 14px !important;
    margin-bottom: 0;
    line-height: normal;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-listingid .IDX-control-group .IDX-controls {
    width: 100% !important;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-listingid #IDX-listingID-group {
    padding: 0 15px;
}

.basic-search #breadcrumbs,
.advanced-search #breadcrumbs,
.address-search #breadcrumbs,
.listingid-search #breadcrumbs,
.map-search #breadcrumbs {
    display: none;
}

.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li > a:hover,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li > a:focus,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li.IDX-active > a,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li.IDX-active > a:focus {
    /*    background: var(--gradient-alt);*/
    background: var(--secondary);
    color: #fff !important;
}

.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li > a,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li > a:hover,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li > a:focus,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li.IDX-active > a,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-nav > li.IDX-active > a:focus {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #000;
    line-height: 1;
}

.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-collapse,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-form {
    border-color: transparent !important;
}

.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-toggle,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-toggle:focus,
.IDX-wrapper-standard .IDX-mobileFirst--neutral .IDX-navbar-default .IDX-navbar-toggle:hover {
    background-color: transparent !important;
}

.aiosp-close {
    font-size: 42px !important;
}

#content ol,
#content ul {
    font-size: 15px;
}

.ai-communities-minimalist-row .ai-communities-minimalist-list {
    width: calc(100% / 3) !important;
    padding: 0.5% !important;
}


/*pagination communites*/

.ai-communities-minimalist-pagination .page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px !important;
    line-height: 1;
    letter-spacing: 0.050em;
    /*color: #898989;*/
    color: #767676;
    width: 44px;
    height: 40px;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: 0 !important;
    font-weight: normal !important;
    margin: 0 10px !important;
}

.ai-communities-minimalist-pagination .page-numbers::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ai-communities-minimalist-pagination .page-numbers.current,
.ai-communities-minimalist-pagination .page-numbers:hover {
    color: #000 !important;
}

.ai-communities-minimalist-pagination .page-numbers.current::before,
.ai-communities-minimalist-pagination .page-numbers:hover::before {
    opacity: 1;
    visibility: visible;
    color: #000;
}

#inner-page-wrapper .ai-communities-minimalist-pagination .prev.page-numbers,
#inner-page-wrapper .ai-communities-minimalist-pagination .next.page-numbers {
    font-family: var(--font-family-default) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em;
    color: #000 !important;
    width: auto !important;
    height: 40px !important;
    padding: 0 13px !important;
    background: none;
}

#inner-page-wrapper .ai-communities-minimalist-pagination .prev.page-numbers:before,
#inner-page-wrapper .ai-communities-minimalist-pagination .next.page-numbers:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
    opacity: 1;
    visibility: visible;
}

#inner-page-wrapper .ai-communities-minimalist-pagination .prev.page-numbers:hover:before,
#inner-page-wrapper .ai-communities-minimalist-pagination .next.page-numbers:hover:before {
    width: 100%;
}

.ai-communities-minimalist-pagination .page-numbers.dots {
    pointer-events: none;
}


/*end of pagination*/


/*blog pagination*/

.category .page-links .page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px !important;
    line-height: 1;
    letter-spacing: 0.050em;
    /*color: #898989;*/
    color: #767676;
    width: 44px;
    height: 40px;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    border: 0 !important;
    font-weight: normal !important;
    margin: 0 10px !important;
}

.category .page-links .page-numbers::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.category .page-links .page-numbers.current,
.category .page-links .page-numbers:hover {
    color: #000 !important;
}

.category .page-links .page-numbers.current::before,
.category .page-links .page-numbers:hover::before {
    opacity: 1;
    visibility: visible;
    color: #000;
}

.category .page-links .prev.page-numbers,
.category .page-links .next.page-numbers {
    font-family: var(--font-family-default) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em;
    color: #000 !important;
    width: auto !important;
    height: 40px !important;
    padding: 0 13px !important;
    background: none;
}

.category .page-links .prev.page-numbers:before,
.category .page-links .next.page-numbers:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
    opacity: 1;
    visibility: visible;
}

.category .page-links .prev.page-numbers:hover:before,
.category .page-links .next.page-numbers:hover:before {
    width: 100%;
}

.category .page-links .page-numbers.dots {
    pointer-events: none;
}


/*end of blog pagination*/

.ip-custom-breadcrumbs {}

.ip-custom-breadcrumbs p,
#content p#breadcrumbs {
    font-size: 13px;
    letter-spacing: 0.05em;
    /*color: #fff;*/
    color: #767676;
    line-height: 1.846153846153846;
}

.ip-custom-breadcrumbs p span.breadcrumb_last,
#content p#breadcrumbs span.breadcrumb_last {
    font-weight: 600;
}


/*custom upload form*/

.upload-form-wrapper {}

.upload-form-title {
    /*background-color: #999;*/
    background-color: #767676;
    padding: 15px 30px;
    margin-bottom: 0;
    margin-top: 1.875rem;
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.upload-form-title small {
    display: block;
    font-size: 16px !important;
    text-transform: initial;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.upload-form-content {
    border-right: 1px #8a8a8a solid;
    border-left: 1px #8a8a8a solid;
    border-bottom: 1px #8a8a8a solid;
    background-color: #fff;
    padding: 15px 22px;
}

.upload-form-wrapper .wpcf7 {
    margin: 0 -8px;
    font-size: 0;
}

.upload-form {}

.upload-field-group {
    margin-bottom: 30px;
}

.upload-field-group:last-child {
    margin-bottom: 0;
}

.upload-field-group-title {
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    padding: 0 8px;
}

.upload-field-group-title em {
    font-style: normal !important;
    color: #790000;
}

.upload-field-group-title.mb-30 {
    margin-bottom: 30px;
}

.upload-field-group-title.mt-20 {
    margin-top: 20px;
}

.upload-field-col {
    width: 50%;
    display: inline-block;
    vertical-align: top;
}

.upload-field {
    display: inline-block;
    vertical-align: top;
    padding: 8px;
}

.upload-field.field-1,
.upload-field-col.col-1 {
    width: 8.33333333%;
}

.upload-field.field-2,
.upload-field-col.col-2 {
    width: 16.66666667%;
}

.upload-field.field-3,
.upload-field-col.col-3 {
    width: 25%;
}

.upload-field.field-4,
.upload-field-col.col-4 {
    width: 33.33333333%;
}

.upload-field.field-5,
.upload-field-col.col-5 {
    width: 41.66666667%;
}

.upload-field.field-6,
.upload-field-col.col-6 {
    width: 50%;
}

.upload-field.field-7,
.upload-field-col.col-7 {
    width: 58.33333333%;
}

.upload-field.field-8,
.upload-field-col.col-8 {
    width: 66.66666667%;
}

.upload-field.field-9,
.upload-field-col.col-9 {
    width: 75%;
}

.upload-field.field-10,
.upload-field-col.col-10 {
    width: 83.33333333%;
}

.upload-field.field-11,
.upload-field-col.col-11 {
    width: 91.66666667%;
}

.upload-field.field-12,
.upload-field-col.col-12 {
    width: 100%;
}

.upload-field-file-box {
    border: 1px dashed #ccc;
    background-color: #fafafa;
    padding: 15px;
}

.upload-field small {
    font-size: 14px !important;
    font-weight: 300;
    display: block;
}

.upload-field input[type="text"],
.upload-field input[type="email"],
.upload-field input[type="tel"],
.upload-field select {
    width: 100%;
    padding: 0.625rem;
    color: #333;
    margin-bottom: 0.1875rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 45px;
}

.upload-btn {
    position: relative;
    margin: 30px 0 80px;
}

.page-id-958 .upload-btn {
    margin: 30px 0 20px;
}

.page-id-958 footer.footer {
    margin-top: 246px;
}

.upload-btn .btn-a {
    position: relative;
}

.upload-btn .btn-a input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.upload-btn .btn-a .wpcf7-spinner,
.upload-btn .btn-a .ajax-loader {
    position: absolute;
    bottom: -30px;
    left: 0;
    margin: 0;
}

#content .upload-form-content p {
    padding-left: 8px;
    padding-right: 8px;
}

#content p.upload-small {
    font-size: 13px;
    padding: 0 8px;
}


/* Archive Blog */


/** Single Default Layout (Post Content) */

#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}


/** End of Single Default Layout (Post Content) */


/** Archive Default Layout (Archive Page) */

#content .archive-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list > article.article-long {
    margin-bottom: 60px;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 25px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}

.category footer.footer {
    margin-top: 246px;
}

.single-post footer.footer {
    margin-top: 246px;
}

.single-aios-agents footer.footer {
    margin-top: 246px;
}

.single-post p#breadcrumbs,
.single-post #content p#breadcrumbs {
    margin-bottom: 60px;
}


/** End of Archive Default Layout (Archive Page) */


/** Button */

.global-button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #c1c1c1;
    width: 283px;
    max-width: 100%;
    height: 59px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.61px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #676767;
    background: transparent;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-button:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.archive p#breadcrumbs,
.archive #content p#breadcrumbs {
    margin-bottom: 60px
}


/** End of Button */


/* End Archive Blog */

#agents-single {
    padding: 0 0 60px;
}

#agents-single .agents-left {
    text-align: center;
}

.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit].alt {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#content .page-links {
    margin-top: 60px;
}


/*cta*/

#hp-cta {
    position: relative;
    padding: 111px 0 15px;
}

.page-id-5 #hp-cta {
    padding-top: 30px;
}

#hp-cta .section-title {
    text-align: center;
    margin-bottom: 65px;
}

.cta-list {
    margin: 0 -15px;
}

.cta-item {
    width: 25%;
    padding: 0 15px;
}

.cta-item a {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    color: #000;
    padding: 16px 0 23px;
    transition: color var(--default-transition);
}

.cta-item a:before,
.cta-item a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 72px;
    right: 0;
    bottom: 0;
    z-index: -1;
    box-shadow: 7px 29px 30px 0px rgba(0, 0, 0, 0.1);
    transition: all var(--default-transition);
}

.cta-item a:before {
    background: #fff;
}

.cta-item a:after {
    opacity: 0;
    background: var(--gradient);
}

.cta-item a span {
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.02em;
    position: relative;
    padding: 15px 0;
    line-height: 1.230769230769231;
}

.cta-item a span:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 72px;
    height: 3px;
    background: var(--gradient);
    transition: all var(--default-transition);
}

.cta-item a:hover:before {
    left: 0;
    opacity: 0;
}

.cta-item a:hover:after {
    left: 0;
    opacity: 1;
}

.cta-item a:hover {
    color: #fff;
}

.cta-item a:hover span:before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 100%;
}

body.page-id-5 #inner-page-wrapper > .container {
    /*    width: 1390px;*/
    max-width: 100%;
}

.ip-about-section-6 {
    position: relative;
}

.ip-about-section-6 .hp-accent-line {
    bottom: -12vw;
}

.ip-about-s6-inner {
    margin: 0 3.125%;
    position: relative;
    padding: 84px 0 209px;
}

.bg-section.bg-ip-about-s6 {
    background-position: center bottom;
}

.ip-about-s6-form-wrap {
    width: 550px;
    width: 36.667%;
    max-width: 100%;
    margin-left: auto;
    margin-right: 214px;
    margin-right: 14.267%;
}

.ip-about-s6-form-wrap .section-title {
    text-align: center;
    margin-bottom: 44px;
}

.ip-about-s6-form-wrap p {
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: center;
    padding: 0 15px;
}

.ip-about-s6-form-wrap .wpcf7 {
    margin: 0 -6px;
    font-size: 0;
}

.ip-about-s6-form-wrap .wpcf7 form {
    position: relative;
}

.ip-about-s6-form-field.field-12 {
    width: 100%;
}

.ip-about-s6-form-field.field-6 {
    width: 50%;
    margin-bottom: 8px;
}

.ip-about-s6-form-field {
    display: inline-block;
    vertical-align: top;
    padding: 0 6px;
}

.ip-about-s6-form-field input,
.ip-about-s6-form-field textarea {
    width: 100%;
    height: 53px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: #3b3b3b;
}

.ip-about-s6-form-field textarea {
    resize: none;
    padding-top: 13px;
    height: 92px;
}

.ip-about-s6-form-field-btn {
    text-align: center;
    position: relative;
    margin: 29px 0 0;
}

.ip-about-s6-form-field-btn .ajax-loader,
.ip-about-s6-form-field-btn .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.ip-about-s6-form-field-btn .btn-a {
    position: relative;
}

.ip-about-s6-form-field-btn .btn-a input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.ip-about-s6-form-wrap .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 15px 6px 0;
    font-size: 12px;
    text-align: center;
}

.post-page-find-a-home #content p,
.post-page-communities #content p {
    font-size: 18px;
}

.single-aios-communities #breadcrumbs {
    position: relative;
}

.ui-dialog {
    font-family: var(--font-family-default);
    font-size: 15px;
    line-height: normal;
    padding: 30px !important;
    border-radius: 0;
}

.ui-dialog .ui-dialog-titlebar {
    padding: 0 0 30px;
    margin: 0 0 30px;
}

.ui-dialog .ui-dialog-title {
    float: none;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    line-height: 1;
    padding: 0;
}

.ui-dialog .ui-dialog-titlebar-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    top: 12px;
    opacity: 0.5;
    transition: all var(--default-transition);
}

.ui-dialog .ui-dialog-titlebar-close::before {
    content: '\b0241';
    font-family: agentimage !important;
    font-size: 20px;
    color: #000;
}

.ui-dialog .ui-dialog-titlebar-close span {
    display: none;
}

#IDX-registration {
    padding: 0;
    overflow: hidden;
}

#IDX-registrationDefaultMessage b {
    display: none;
}

#IDX-registrationLogin p,
#IDX-registrationDefaultMessage p,
.IDX-signupLoginContent p {
    margin: 0 0 19px;
}

#IDX-registrationDefaultMessage p a.close {
    float: none;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
    text-shadow: none;
    color: #488691;
}

.IDX-customRegistrationFields {
    display: flex !important;
    flex-flow: row wrap;
    margin: 0 -15px;
}

.IDX-control-group {
    width: 50% !important;
    padding: 0 15px;
    margin: 0 0 30px !important;
}

#IDX-loginForm .IDX-control-group {
    width: 100% !important;
    padding: 0;
}

.IDX-control-group input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 0;
}

#IDX-FormActions {
    text-align: center;
    padding: 0 0 30px;
    margin: 0 0 15px;
}

.IDX-signupLoginToggleWrap p {
    float: none;
    text-align: center;
    padding: 0;
    margin: 0 !important;
}

#IDX-registration .IDX-btn,
.IDX-signupLoginToggleWrap p a {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    padding: 11px 14px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    background: transparent;
    border: none;
    width: auto;
    text-decoration: none !important;
    float: none !important;
}

#IDX-registration .IDX-btn:hover,
.IDX-signupLoginToggleWrap p a:hover {
    background: transparent;
    color: #000;
    text-decoration: none;
}

#IDX-registration .IDX-btn:before,
.IDX-signupLoginToggleWrap p a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
}

#IDX-registration .IDX-btn:hover:before,
.IDX-signupLoginToggleWrap p a:hover:before {
    width: 100%;
}

#IDX-keepLoggedIn {
    float: none;
    text-align: center;
}

.IDX-errorMessage {
    text-align: center;
    margin: 30px 0 0 !important;
}

.IDX-errorIcon {
    display: none;
}

.ai-communities-minimalist-search .ai-communities-minimalist-search-form .aic-wrap input,
.ai-communities-minimalist-search-form .aic-wrap select {
    font-weight: bold;
}

.ai-communities-minimalist-search .ai-communities-minimalist-search-form label {
    font-weight: bold;
}

.page-id-5362 .ip-banner {
    display: none;
}

.page-id-5362 #content p#breadcrumbs {
    display: none;
}

.aios-smf-theme-two .aios-smf-left #theme-title ul li a .ai-smi {
    margin-top: 43px !important;
}

.aios-smf-theme-two .aios-smf-left #theme-title ul li a .social-followers {
    display: none !important;
}

.aios-smf-theme-two .aios-smf-right #theme-content li.filter-view .filter-view-img canvas {
    background-size: contain !important;
}

.aios-smf-theme-two .aios-smf-left #theme-title ul li a .ai-smi.ai-font-facebook {
    color: #4267B2;
}

.aios-smf-theme-two .aios-smf-left #theme-title ul li a .ai-smi.ai-font-instagram {
    background: linear-gradient(120deg, #405de6 40%, #c13584 30%, #fcaf45 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aios-smf-theme-two .aios-smf-left #theme-title ul li a .ai-smi.ai-font-youtube {
    color: #F00;
}

.aios-smf-theme-two .aios-smf-right #theme-content li.filter-view .filter-view-status .filter-view-description {
    font-size: 16px !important;
    letter-spacing: 0.02em !important;
    line-height: 1.6 !important;
}

.post-page-communities .ai-communities-minimalist-wrap #content > .container,
.post-page-communities .ai-communities-minimalist-wrap .ai-communities-minimalist-container .container,
.tax-community-group .ai-communities-minimalist-wrap .container {
    width: 100%;
    padding: 0 6.65%;
}

div#comm-tax-group {
    margin-top: 0 !important;
}

#comm-tax-group h1.entry-title {
    margin-top: .67em;
}

.ai-communities-minimalist-wrap p {
    margin: 1.12em 0;
}

.market-reports #content p#breadcrumbs,
.market-reports p#breadcrumbs .breadcrumb_last {
    color: #3b3b3b;
}

.market-reports .idx-mk-report-landing-page {
    background: none !important;
}

.market-reports .idx-mk-report-summary .idx-mk-report-summary__title {
    font-style: normal !important;
}

.market-reports .idx-mk-report-landing-page__title {
    display: none;
}

.market-reports .idx-mk-report-landing-page__subheader {
    color: #3b3b3b !important;
    font-size: 18px !important;
    line-height: 1.8;
    margin-top: 20px;
}

.market-reports .idx-mk-report-location-search__no-results--show,
.market-reports .idx-mk-report-location-search .idx-mk-report-location-input__header,
.market-reports .idx-mk-report-summary .idx-mk-report-summary__title {
    color: #3b3b3b !important;
}

.idx-mk-report-summary .idx-mk-report-summary__subheader,
.idx-mk-report-summary .idx-mk-report-summary__points,
.idx-mk-report-location-search .idx-mk-report-location-input__header,
.idx-mk-report-location-search .idx-mk-report-autocomplete__input::placeholder {
    font-family: inherit !important;
}

.idx-mk-report-location-search .idx-mk-report-autocomplete__input,
.idx-mk-report-location-search .idx-mk-report-autocomplete__input-button,
.idx-mk-report-location-search .idx-mk-report-autocomplete__input::placeholder,
.idx-mk-report-location-search .idx-mk-report-autocomplete__result {
    font-family: inherit !important;
}

.error404 .wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
}

body .ai-communities-minimalist-row .ai-communities-minimalist-list a .ai-communities-minimalist-content h2 {
    text-shadow: 0 0 5px #000;
}


/*custom smw*/

.page-id-5412 .ig-feed {
    display: flex;
    flex-wrap: wrap;
}

.page-id-5412 .ig-feed-item {
    width: 33.33%;
}

.ig-feed-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.page-id-5412 .ig-feed-item canvas {
    background-size: cover;
    background-position: center;
}

.page-id-5412 .ig-feed-item video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-id-5412 .ig-feed-item canvas,
.page-id-5412 .ig-feed-item video {
    display: block;
    width: 100%;
    height: auto;
}

.page-id-5412 .ip-banner,
.page-id-5412 #breadcrumbs {
    display: none;
}

.page-id-5412 #content-full {
    padding-top: 9.750vw;
}

.fb-wrap-ip h2 {
    color: #fff;
}

.ig-wrap-ip h2 a,
.fb-wrap-ip h2 a {
    display: flex;
    align-items: center;
}

.ig-wrap-ip h2 a i,
.fb-wrap-ip h2 a i {
    font-style: normal !important;
    padding-left: 20px;
    font-size: 35px;
}

.ig-wrap-ip {
    background-color: #dadada;
    padding: 10px 20px 30px 20px;
}

.fb-wrap-ip {
    background-color: #3c5998;
    padding: 10px 20px 30px 20px;
}


/*end*/

.category-blog .ip-banner,
.category-blog #breadcrumbs,
.single-post.single-format-standard #breadcrumbs {
    display: none;
}

.category-blog #content-full,
.single-post.single-format-standard #inner-page-wrapper {
    padding-top: 9.750vw;
}

.single-aios-agents .ip-banner {
    display: none;
}

.single-aios-agents #breadcrumbs,
.single-aios-agents p#breadcrumbs .breadcrumb_last {
    color: initial !important;
}

.single-aios-agents #content {
    padding-top: 9.750vw;
}

/*Popup Form*/
html.popup-active {
    overflow: hidden;
}

.ip-popup-form-container {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    overflow: hidden;
    font-size: 0;
}

.ip-popup-form-container.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.ip-popup-form-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 80px 15px 50px;
}

.ip-popup-form-main {
    position: relative;
    width: 100%;
    max-width: 1478px;
    margin: 0 auto 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    background: #fff;
    padding: 50px 30px;
    /*min-height: 650px;*/
}

.ip-popup-form-container.active .ip-popup-form-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.ip-rental-form-container {
    width: 100%;
    max-width: 1218px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ip-popup-form-main:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/apply-new-bg1.jpg) center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    opacity: 0.3;
    /* filter: grayscale(1) contrast(1.5);
    -webkit-filter: grayscale(1) contrast(1.5);*/
}

.ip-rental-form-container > div {
    position: relative;
    z-index: 1;
}

.ip-rental-form-container, .ip-rental-form-title, .ip-rental-form-holder, .ip-rental-form-title-bar, .ip-rental-form-body, .ip-rental-form-text, .ip-rental-form-btn {
    display: block;
    position: relative;
}

.ip-rental-form-title-bar {
    padding: 16px 20px;
    background-color: #488691;
    border-radius: 5px;

    font-size: 16px;
    color: #fff;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.050em;
}

.ip-rental-form-body p {
    margin: 0 0 35px;
}

.ip-rental-form-body p:not(:last-child) {
    margin-bottom: 20px;
}

.ip-rental-form {
    display: block;
    position: relative;
}

.ip-rental-form-label {
    display: block;
    margin-bottom: 15px;
    position: relative;
}

.ip-rental-form-body {
    border: 1px solid #8A8A8A;
    border-top: none;
    margin-top: -4px;
    padding: 30px 30px;
}

.ip-rental-form-field-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ip-rental-form-field-label input[type=checkbox]:checked:after {
    content: '✔';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #488691;
    font-size: 15px;
}

.ip-rental-form-field-label input[type=checkbox]:checked {
    border: solid 1px #488691;
}

.ip-rental-form-field-label input[type=checkbox] {
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    background: transparent;
    color: #555;
    clear: none;
    cursor: pointer;
    margin: 0 10px 0 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    min-width: 22px;
    -webkit-transition: .05s border-color ease-in-out;
    -o-transition: .05s border-color ease-in-out;
    transition: .05s border-color ease-in-out;
    width: 22px;
    height: 22px;
    border: 1px solid #aaa;
    overflow: hidden;
    border-radius: 3px;
    outline: none !important;
}

.ip-rental-form-field-label input[type=text],
.ip-rental-form-field-label input[type=email] {
    width: 100%;
    height: 53px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: #3b3b3b;
    margin-bottom: 10px;
    padding: 0 10px;
}

.ip-rental-form-body p, .ip-rental-form-field-label, .ip-rental-form-label {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.020em;
    color: #000;
}

.ip-rental-form-btn button,
.ip-rental-form-btn a,
.ip-rental-form-btn input[type="submit"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 50px;
    background-color: var(--accent);
    padding: 0;
    border-radius: 3px;
    font-size: 14px;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.020em;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.ip-rental-form-btn {
    display: block;
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.ip-rental-form-btn button:hover,
.ip-rental-form-btn a:hover,
.ip-rental-form-btn input[type="submit"]:hover {
    background-color: #488691;
}

.ip-popup-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, .50);
    font-size: 14px;
    color: #fff;
    border: none;
    padding: 0;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    z-index: 10;
    cursor: pointer;
}

.ip-popup-close:hover {
    background-color: #000;
}

.ip-rental-form-title {
    font-size: 30px;
    line-height: 1;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;

    margin-bottom: 30px;
}

.ip-rental-form-step-2 {
    display: none;
}


.ip-rental-form-step-2.active {
    display: block;
}

#inner-page-wrapper {
    z-index: auto;


}

.post-page-about-us #inner-page-wrapper::before,
.post-page-contact #inner-page-wrapper::before,
.post-page-contact #inner-page-wrapper::before,
.post-page-listing-results-template #inner-page-wrapper::before,
.post-page-testimonials #inner-page-wrapper::before,
.post-page-communities #inner-page-wrapper::before,
.tax-community-group #inner-page-wrapper::before {
    content: '';
    width: 100%;
    height: 110%;
    background-image: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/11/blog-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*    filter: grayscale(1);*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

.ip-rental-form-checkbox {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.ip-rental-form-checkbox .wpcf7-list-item {
    margin: 0;
}

.ip-rental-form-label {
    line-height: 1.2;
}

.ip-rental-form-label span {
    color: #790000;
    margin-left: 4px;
}

.ip-rental-form-step-3 {
    display: none;
}

.ip-rental-form-step-3.active {
    display: block;
}

.ip-rental-form-sign-field {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.ip-rental-form-sign-field:not(:last-child) {
    margin-right: 150px;
}


.ip-rental-form-reset-btn {
    background-image: url('/app/themes/themorgroup.com/assets/images/rental-form/refresh.png');
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    text-align: right;
    margin-left: auto;
    border: none;
    background-color: transparent;
}


.ip-rental-form-signature {
    display: block;
    position: relative;
    margin: 50px auto 20px;
}


.ip-rental-form-signature + .ip-rental-form-text p {
    margin-bottom: 0 !important;
}

.ip-rental-form-text.disclaimer p {
    margin: 0;
}

.ip-rental-form-text.disclaimer {
    margin: 40px 0 0;
}

.ip-rental-form-sign-field canvas.signature-pad {
    border-width: 2px;
    border-style: dashed;
    border-color: rgb(221, 221, 221);
    background-color: rgb(255, 255, 255);
    cursor: url('/app/themes/themorgroup.com/assets/images/rental-form/ai-pen-icon-sm.png'), pointer;
}

.ip-rental-form-sign-field button {
    background-image: url('/app/themes/themorgroup.com/assets/images/rental-form/refresh.png');
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    text-align: right;
    margin-left: auto;
    border: none;
    background-color: transparent !important;
    padding: 0;
    font-size: 0;
    outline: none !important;
}

.ip-rental-form-container .wpcf7-response-output {
    font-size: 15px;
    text-align: center;
}

.ip-popup-form-main.iframe-active {
    padding: unset;
}

.ip-popup-form-main.iframe-active .ip-rental-form-title {
    display: none
}

.ip-popup-form-main.iframe-active .ip-rental-form-container {
    max-width: 100%;
}

.ip-rental-form .wpcf7-list-item {
    margin: 0;
}

.page-id-5 .ip-banner,
.page-id-5 p#breadcrumbs {
    display: none;
}

/*end of pop up*/

.video-pop {
    width: 665px;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.video-pop a {
    display: block;
    position: relative;
}

.video-pop a i {
    position: absolute;
    right: 50%;
    bottom: 50%;
    width: min(16.349vw, 103px);
    height: min(16.349vw, 103px);
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    transform: translate(50%, 50%);
    font-style: normal !important;
}

.video-pop a i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.85;
    z-index: -1;
}

.page-id-45 .ip-about-section-6 {
    display: none;
}

.page-id-45 #content {
    padding-top: 9.750vw;
}

.page-id-45 .ip-banner {
    display: none;
}

.page-id-45 p#breadcrumbs {
    display: none;
}

.page-id-45 #inner-page-wrapper {
    background: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/11/idx-default-bg.jpg') no-repeat center center/94% 100%;
    background-attachment: fixed;
    padding-bottom: 1px;
    margin-bottom: 250px;
}

.page-id-45 #inner-page-wrapper::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.6;
}

.page-id-45 .container {
    z-index: 1;
    position: relative;
}

.page-id-45 #content .entry-title {
    text-align: center;
    margin-bottom: 38px;
}

.page-id-45 .select2-drop-mask,
.page-id-45 .select2-drop {
    z-index: 101;
}

.page-id-45.basic-search .ip-about-section-6,
.page-id-45.advanced-search .ip-about-section-6,
.page-id-45.listingid-search .ip-about-section-6,
.page-id-45.address-search .ip-about-section-6,
.page-id-45.map-search .ip-about-section-6 {
    display: block;
}

.basic-search .ip-banner,
.advanced-search .ip-banner,
.listingid-search .ip-banner,
.address-search .ip-banner,
.map-search .ip-banner {
    display: none;
}

.basic-search #content,
.advanced-search #content,
.listingid-search #content,
.address-search #content,
.map-search #content {
    padding-top: 9.750vw;
}

.basic-search #inner-page-wrapper,
.advanced-search #inner-page-wrapper,
.listingid-search #inner-page-wrapper,
.address-search #inner-page-wrapper,
.map-search #inner-page-wrapper {
    background: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/11/search-bg.jpg') no-repeat center center/94% 100%;
}

.basic-search #inner-page-wrapper::before,
.advanced-search #inner-page-wrapper::before,
.listingid-search #inner-page-wrapper::before,
.address-search #inner-page-wrapper::before,
.map-search #inner-page-wrapper::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.6;
}

.basic-search .container,
.advanced-search .container,
.listingid-search .container,
.address-search .container,
.map-search .container {
    z-index: 1;
    position: relative;
}

.IDX-wrapper-standard .select2-container.select2-container-multi .select2-choices {
    background: transparent;
}

.IDX-wrapper-standard .select2-container .select2-choice .select2-arrow {
    background: transparent;
}

.IDX-wrapper-standard .select2-container .select2-choice {
    background: transparent;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-advanced .IDX-advancedWrap input.IDX-advancedRange {
    background: transparent;
}

.post-page-aios-custom-idx-broker-global-page .IDX-page-address #IDX-addressWrap input {
    background: transparent;
}

.category-blog #inner-page-wrapper,
.single-post.single-format-standard #inner-page-wrapper {
    padding-bottom: 40px;
}

.category-blog #inner-page-wrapper:before,
.single-post.single-format-standard #inner-page-wrapper:before {
    content: '';
    position: absolute;
    display: block;
    /*top: 0;*/
    bottom: 0;
    left: 3.125%;
    right: 3.125%;
    opacity: 0.7;
    z-index: -1;
    /*        height: 900px;*/
    height: 100%;
    top: initial;
    background: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/11/bg-inner-page-2-gradient.jpg') no-repeat bottom center/cover;
    /*        background: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/11/blog-bg.jpg') no-repeat bottom center/cover;*/
    background-attachment: fixed;
}

.category-blog #inner-page-wrapper:after,
.single-post.single-format-standard #inner-page-wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.category-blog #inner-page-wrapper > .container, .single-post.single-format-standard #inner-page-wrapper > .container {
    position: relative;
    z-index: 2;
}

.tax-community-group .map-responsive {
    width: 100%;
    margin: 0 auto;
}

.tax-community-group.term-henderson .map-responsive {
    max-width: 633px;
}

.tax-community-group.term-summerlin .map-responsive {
    max-width: 633px;
}

.tax-community-group.term-southwest-las-vegas .map-responsive {
    max-width: 633px;
}

.tax-community-group .map-responsive .map-container {
    position: relative;
}

.tax-community-group.term-north-las-vegas .map-responsive,
.tax-community-group.term-east-las-vegas .map-responsive,
.tax-community-group.term-northwest-las-vegas .map-responsive,
.tax-community-group.term-strip-condos .map-responsive {
    max-width: 633px;
}

/*schedule a showing*/
.IDX-page-scheduleshowing.IDX-wrapper-standard .IDX-well {
    background: none;
    border: none;
    box-shadow: none;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard .IDX-form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard textarea.IDX-form-control {
    height: 100px;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage .col-sm-6 {
    width: 30%;
    text-align: center;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions .col-sm-6 {
    width: 20%;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-returnToPreviousPage,
.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-goToProperty {
    color: #000;
    display: inline-flex;
    padding: 11px 14px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    width: auto;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-returnToPreviousPage:before,
.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-goToProperty:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage .IDX-btn-default {
    background-color: transparent;
    border-color: transparent;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-returnToPreviousPage:hover:before,
.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-goToProperty:hover:before {
    width: 100%;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-returnToPreviousPage:hover, .IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-returnToPreviousPage:active,
.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-goToProperty:hover, .IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage #IDX-goToProperty:active {
    background-color: transparent;
    border-color: transparent;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 11px 14px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    background: transparent;
    border: none;
    width: auto;
    margin: 0 15px;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent);
    transition: all var(--default-transition);
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions button:hover:before {
    width: 100%;
}

.IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions button:hover, .IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions button:active {
    background-color: transparent;
    border-color: transparent;
}


.grecaptcha-badge {
    z-index: 9999;
}

#formnotice {
    color: #000000;
    font-size: 18px;
    display: block;
    text-align: left;
}

.ui-dialog.IDX-registrationModal.IDX-registration-requestRecurring {
    background: #fff;
    color: #000;
}

.ui-dialog.IDX-registrationModal.IDX-registration-requestRecurring:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/IDX-lead-form.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.ui-dialog.IDX-registrationModal.IDX-registration-requestRecurring .ui-dialog-titlebar {
    border: 0;
}

.ui-dialog.IDX-registrationModal.IDX-registration-requestRecurring #IDX-FormActions {
    border-bottom: 1px solid #000;
}

#content .aios-smf-theme-two .aios-smf-right #theme-content li.filter-feed a {
    color: #949494;
}

.page-id-949 p#breadcrumbs .breadcrumb_last,
.page-id-949 .ip-custom-breadcrumbs p,
.page-id-949 #content p#breadcrumbs {
    color: #767676;
}

@media only screen and (min-width: 992px) {

    /*header*/
    header.header {
        padding: 1.813vw 0 0;
    }

    .header-logo {
        width: 8.938vw;
        padding: 0.438vw 0 0;
    }

    .home .header-logo {
        filter: drop-shadow(-1px 1px 3px #000);
        -webkit-filter: drop-shadow(-1px 1px 3px #000);
    }

    .header-nav {
        margin: 2.188vw 0 0;
    }

    .site-nav li a {
        font-size: 0.938vw;
    }

    .site-nav .sub-menu a {
        padding: 0.750vw 0.625vw;
    }

    .site-nav > li {
        margin: 0 1.063vw;
    }

    .site-nav > li > a {
        font-size: 0.938vw;
    }

    .header-contact-info span.contact-phone {
        font-size: 1.250vw;
    }

    .header-contact-info span.contact-link {
        font-size: 0.938vw;
        margin-bottom: 1.250vw;
    }

    .site-nav > li > a:before {
        bottom: -0.438vw;
        height: 0.125vw;
    }

    .site-nav .sub-menu {
        min-width: 12.375vw;
        padding: 1vw 0 0;
    }

    .fixed-header .site-nav .sub-menu {
        padding: 1.563vw 0 0;
    }

    /*dark header*/
    header.header.is-dark {
        padding: 0.875vw 0 0.813vw;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        background-color: #fff;
    }

    .is-dark .header-inner {
        align-items: center;
    }

    .is-dark .header-logo {
        width: 5.813vw;
        padding: 0;
    }

    /*fixed header*/
    .fixed-header {
        padding: 0.938vw 0 0.813vw;
    }

    .fheader-logo {
        width: 5.813vw;
    }

    #fnav > li > a {
        font-size: 0.875vw;
        /*padding: 0.406vw 1vw;*/
        /*font-size: 0.775vw;*/
        /* padding: 0.406vw 0.8vw; */
    }

    .fcontact-info span.contact-phone {
        /*font-size: 1.125vw;
            margin-right: 2.188vw;*/
        font-size: 1.025vw;
        margin-right: 2.088vw;
    }

    .fcontact-info span.contact-link {
        font-size: 0.875vw;
    }

    .cta-list.fah .cta-item a:not(:hover):before,
    .cta-list.fah .cta-item a:not(:hover):after {
        /*        left: 140px;*/
    }

    .cta-list.fah .cta-item a span {
        min-width: 140px;
    }

    .page-id-5362 #content-full {
        padding: 8.75vw 0 0;
    }

    .market-reports #content-full {
        /*padding: 10.750vw 0 0;*/
    }


    /*landing page header*/
    .blp-header {
        position: relative;
    }

    .blp-header-inner {
        padding: 0 3.25vw;
    }

    .blp-header-logo {
        width: 11.375vw;
        margin-bottom: -2.375vw;
        margin-top: 0.188vw;
    }

    .blp-header-logo a {
        width: 9.375vw;
        padding: 1.5vw;
    }

    .blp-navigation {}

    #blp_nav {
        padding: 0 4.063vw 0 7.813vw;
    }

    #blp_nav > li {
        position: relative;
    }

    #blp_nav > li > a {
        font-size: 1vw;
        padding: 1.188vw 0;
    }

    #blp_nav > li > a:before {
        height: 0.125vw;
    }

    #blp_nav .sub-menu {
        min-width: 15.5vw;
        padding: 1vw 0 0;
    }

    #blp_nav .sub-menu li a {
        padding: 0.938vw 0.625vw;
        font-size: 0.938vw;
    }

    #blp_nav > li > .sub-menu {
        padding-top: 2vw;
    }

    #blp_nav > li.dropdown-lg > .sub-menu {
        max-height: 30.875vw;
    }

    .blp-navigation a.aios-ai-phone {
        width: 17.313vw;
        height: 3.875vw;
        font-size: 1vw;
    }

    /*landing page header end*/

}

@media only screen and (max-width: 1440px) {
    /*.site-nav > li > a {
        padding: 0.406vw 0.375vw;
    }*/

}

@media only screen and (max-width: 1280px) {

    .section-title,
    #content .archive-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: 25px;
    }

    .hp-accent-line.line-left {
        left: 3%;
    }

    .hp-accent-line.line-right {
        right: 3%;
    }

    .footer-icons {
        margin-right: 5%;
    }
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */

@media only screen and (max-width: 1199px) {

    .section-title,
    #content .archive-subtitle,
    #content .archive-title,
    #content .entry-title {
        font-size: 25px;
    }

    header.header {
        padding: 14px 0 0;
        background: transparent;
    }

    .header-inner {
        padding: 0 20px 0 24px;
        justify-content: space-between;
    }

    .header-logo {
        padding: 0;
        width: 79px;
    }

    .footer-icons {
        width: 45%;
    }

    .post-page-communities .ai-communities-minimalist-wrap .container,
    .tax-community-group .ai-communities-minimalist-wrap .container {
        padding: 1.96%;
    }

    #comm-tax-group h1.entry-title {
        font-size: 25px;
    }

    /*pop up*/
    .ip-rental-form-container {
        max-width: 1200px;
    }

    .ip-popup-form-main {
        max-width: 992px;
        padding: 50px 30px;
    }

    .ip-popup-close {
        right: 0;
    }
}


/* iPad(portrait) | Galaxy Tab 4(portrait)  */

@media only screen and (max-width: 991px) {
    #IDX-searchPageWrapper button.IDX-navbar-toggle {
        display: none;
    }

    .blp-header {
        display: none;
    }

    *[class*="col-md"] {
        width: 100%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-2 {
        width: 16.66666666%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-5 {
        width: 41.66666666%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-12 {
        width: 100%;
    }

    /* 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%;
    }

    a.btn-a,
    .btn-a {
        font-size: 15px;
    }

    header.header {
        padding: 14px 0 0;
        background: transparent;
        position: fixed;
        transition: background var(--default-transition), padding var(--default-transition);
    }

    .header-inner {
        padding: 0 20px 0 24px;
        justify-content: space-between;
    }

    .header-logo {
        padding: 0;
        width: 79px;
        transition: width var(--default-transition);
    }

    .mobile-header-info {
        transition: margin var(--default-transition);
    }

    header.header.sticking,
    header.header.sticking.is-dark {
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .sticking .header-logo {
        width: 60px;
    }

    .sticking .header-logo img,
    .sticking.is-dark .header-logo img {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
        filter: none;
        transition: filter var(--default-transition);
    }

    .sticking .mobile-header-info {
        margin-top: 16px;
    }

    .sticking .mobile-header-info a,
    .sticking.is-dark .mobile-header-info a {
        color: #000;
    }

    .sticking .mobile-header-info button.bm-menu-open span,
    .sticking.is-dark .mobile-header-info button.bm-menu-open span {
        background: #000;
        transition: background var(--default-transition)
    }

    .hp-accent-line {
        display: none;
    }

    footer.footer {
        margin-top: 13.333vw;
        padding-bottom: 60px;
    }

    .footer-accent {
        top: -13.333vw;
    }

    footer.footer .container {
        padding: 0 12.5%;
    }

    .footer-logo {
        margin-top: -13.333vw;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .footer-logo a {
        /*width: 94px;
                height: 94px;
                padding: 15px;*/
        width: 26.111vw;
        height: 26.111vw;
        padding: 4.167vw;
    }

    .footer-logo a img {
        width: 100%;
    }

    .footernav {
        text-align: left;
        width: 50%;
    }

    .footer-info {
        width: 43%;
        margin-bottom: 40px;
    }

    .footer-info span.smi {
        margin-top: 20px;
    }

    .footer-copyright-text {
        width: 100%;
    }

    .footer-icons {
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0;
    }

    .footer-icons-top img:nth-child(1) {
        width: 45px;
    }

    .footer-icons-top img:nth-child(2) {
        width: 40px;
    }

    .footer-icons-top img:nth-child(3) {
        width: 128px;
    }

    .footer-icons-top img {
        margin: 0 5px;
    }

    .footer-icons-bottom span {
        font-size: 22px;
    }

    .footer-icons-bottom span i.ai-font-eho {
        font-size: 20px;
    }

    .footer-icons-bottom img {
        width: 117px;
        margin-left: 25px;
    }

    #pojo-a11y-toolbar {
        display: none;
    }

    .ai-communities-minimalist-row {
        display: flex !important;
    }

    .ai-communities-minimalist-row .ai-communities-minimalist-list {
        width: calc(100% / 2) !important;
    }

    /* Archive Blog */
    #content .archive-list > article {
        width: 100%;
    }

    #content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
        margin: 0.75em 0;
        font-size: 24px
    }

    #content .archive-list .article-long p {
        font-size: 17px;
    }

    #content .archive-list .article-long .archive-thumbnail,
    #content .archive-list .article-long .archive-has-thumbnail {
        width: 100%;
        margin-left: 0;
    }

    /* End Archive Blog */
    #hp-cta {
        padding: 56px 0 60px;
    }

    #hp-cta .section-title {
        text-align: center;
        padding: 0 30px;
        margin-bottom: 30px;
    }

    .cta-list {
        margin: 0;
    }

    .cta-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .cta-item a {
        padding: 6px 10px 13px;
        max-width: 135px;
        margin: 0 auto;
    }

    .cta-item a span {
        font-size: 16px;
        width: 120px;
        max-width: 100%;
    }

    .cta-item a:before {
        left: 30px;
    }

    .ip-about-s6-form-wrap {
        width: 500px;
        margin: 0 auto;
        padding: 0 5%;
    }

    .page-id-5362 #content-full {
        padding-top: 100px;
    }

    .market-reports #content-full {
        /*padding-top: 100px;*/
    }

    .post-page-communities .ai-communities-minimalist-wrap .container,
    .tax-community-group .ai-communities-minimalist-wrap .container {
        padding: 0 15px;
    }

    .post-page-communities .ai-communities-minimalist-wrap,
    .tax-community-group .ai-communities-minimalist-wrap {
        padding-top: 120px;
    }

    .page-id-5412 #content-full {
        padding-top: 120px;
    }

    .category-blog #content-full,
    .single-post.single-format-standard #inner-page-wrapper {
        padding-top: 120px;
    }

    .category-blog #inner-page-wrapper:before,
    .single-post.single-format-standard #inner-page-wrapper:before {
        left: 0;
        right: 0;
    }

    .single-aios-agents #content {
        padding-top: 120px;
    }

    .basic-search #content,
    .advanced-search #content,
    .listingid-search #content,
    .address-search #content,
    .map-search #content {
        padding-top: 120px;
    }

    .page-id-45 #content {
        padding-top: 120px;
    }


    /*pop up*/
    .ip-rental-form-body {
        padding: 30px 15px;
    }

    .ip-popup-form-main {
        padding: 70px 15px 50px;
        min-height: 0;
    }

    .ip-rental-form-sign-field:not(:last-child) {
        margin-right: 50px;
    }

    .ip-popup-close {
        top: 0;
        width: 40px;
        height: 40px;
    }

    .ip-rental-form-body p, .ip-rental-form-field-label, .ip-rental-form-label {
        font-size: 14px;
    }

    .ip-rental-form-title-bar {
        font-size: 14px;
        letter-spacing: normal;
    }

    .ip-rental-form-title-bar {
        padding: 15px 15px;
    }

    .ip-rental-form-text.disclaimer {
        margin: 30px 0 0;
    }

    .tax-community-group .map-responsive {
        display: none;
    }

    .IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-previousPage .col-sm-6 {
        width: auto;
    }

    .IDX-page-scheduleshowing.IDX-wrapper-standard #IDX-scheduleshowingFormActions .col-sm-6 {
        width: auto;
    }

    .fp-item-hover .ip-prop-logo {
        display: none;
    }


    p#breadcrumbs, #content p#breadcrumbs {
        margin-top: 0;
    }

}


/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */

@media only screen and (max-width: 767px) {
    .page-id-5412 .ig-feed-item {
        width: 50%;
    }

    *[class*="col-sm"] {
        width: 100%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-2 {
        width: 16.66666666%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-5 {
        width: 41.66666666%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-12 {
        width: 100%;
    }

    .ip-banner .container {
        width: 100%;
    }

    .footer-logo {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-info-row {
        max-width: 260px;
        margin: 0 auto;
    }

    .footernav {
        text-align: left;
        width: 100%;
    }

    .footer-info {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-back-to-top {
        right: 12px;
    }

    .upload-form-content {
        padding: 15px 15px;
    }

    .upload-form-title {
        padding: 15px 23px;
    }

    .upload-field.field-1,
    .upload-field-col.col-1,
    .upload-field.field-2,
    .upload-field-col.col-2,
    .upload-field.field-3,
    .upload-field-col.col-3,
    .upload-field.field-4,
    .upload-field-col.col-4,
    .upload-field.field-5,
    .upload-field-col.col-5,
    .upload-field.field-6,
    .upload-field-col.col-6,
    .upload-field.field-7,
    .upload-field-col.col-7,
    .upload-field.field-8,
    .upload-field-col.col-8,
    .upload-field.field-9,
    .upload-field-col.col-9,
    .upload-field.field-10,
    .upload-field-col.col-10,
    .upload-field.field-11,
    .upload-field-col.col-11,
    .upload-field.field-12,
    .upload-field-col.col-12,
    .upload-field-col {
        width: 100%;
    }

    .upload-field.field-5.upload-field-file-wrap {
        padding-bottom: 0;
    }

    .upload-field.field-7.upload-field-file-wrap {
        padding-top: 0;
    }

    /*pop up*/
    .ip-rental-form-sign-field canvas {
        width: 100% !important;
    }

    .ip-rental-form-signature {
        width: 100%;
        max-width: 250px;
        margin: 40px auto 20px;
    }

    .ip-rental-form-sign-field:not(:last-child) {
        margin: 0 0 20px;
    }

    .ip-rental-form-sign-field {
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    .page-id-5412 .ig-feed-item {
        width: 100%;
    }

    .footer-info span,
    .footernav li a {
        font-size: 13px;
    }

    .footer-back-to-top {
        bottom: 86px;
        right: 5px;
        width: 30px;
    }

    .footer-back-to-top a {
        font-size: 9px;
    }

    .footer-back-to-top a span em {
        margin-bottom: 12px;
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .ai-communities-minimalist-row {
        display: block !important;
    }

    .ai-communities-minimalist-row .ai-communities-minimalist-list {
        width: 100% !important;
    }

    .IDX-control-group {
        width: 100% !important;
    }

    body #agents-single .agents-contact li {
        height: auto;
    }
}

#content ul.whatwedo {
    /* list-style-image: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/09/bullet.png');*/
    line-height: 1.8;
    list-style: none;
    margin-bottom: 60px;
}

#content ul.whatwedo ul {
    list-style: none;
}

ul.whatwedo li {
    position: relative;
    padding-left: 25px;
}

ul.whatwedo li::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 9px;
    top: 10px;
    left: 0;
    background: url('https://cdn.agentimagehosting.com/AjWxOpBEpz7NZQRXGvHt6/2023/09/icon-check.png') no-repeat;
    background-size: contain;
}

.single-aios-communities.postid-199 ol {
    list-style: decimal !important;
    font-size: 15px;
    line-height: 1.6;
    color: #3b3b3b;
    letter-spacing: 0.02em;
    margin: 0 0 40px 20px;
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */