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


/* Global */

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

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

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

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

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

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

div#main-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.ip-container div#main-wrapper::after {
    min-height: 100px;
}

section,
footer {
    background: #fff;
    position: relative;
}


/*global photo*/

.global-photo {
    position: relative;
}

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

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


/*global title*/

.global-title {
    font-size: var(--font-size-title);
    font-weight: 300;
    color: var(--primary);
    text-transform: uppercase;
}

.global-title span {
    display: inline-block;
    font-weight: 700;
}


/*global btn*/

.global-btn {
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 3.9px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 60px;
    background: var(--primary);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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


/*global arrow*/

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

.global-arrow button,
.global-arrow span {
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #000;
    pointer-events: auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.global-arrow button:hover,
.global-arrow span:hover {
    color: var(--secondary);
}


/*site bg*/

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

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


/* Sub Menu */

ul#nav li {
    position: relative;
    display: inline-block;
}

ul#nav .sub-menu {
    /*list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 218px;
    right: -10px;*/
    /*left: 50%;
    margin-left: -176px;*/
    /*padding-top: 15px;*/
    /*opacity: 0;*/
    /*display: none;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;*/
    list-style: none outside none;
    margin: 0;
    display: none;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 190px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px;
}


/*nav.header-nav ul#nav > li:nth-child(3) > ul.sub-menu {
    min-width: 225px;
}*/

ul#nav .sub-menu a {
    color: #000;
    display: block;
    padding: 3px 10px;
    background: #fff;
}

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

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

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

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

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


/*fixed header*/

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


/*main header*/

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

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

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

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

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

.hdr-btn-holder {
    padding-left: 70px;
}

.hdr-btn {
    min-width: 210px;
}

.hdr-btn a {
    max-width: 100%;
    font-weight: 300;
}


/*header nav*/

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

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

nav.header-nav ul#nav > li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 22px;
}

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

nav.header-nav ul#nav .sub-menu a {
    font-size: 16px;
    /*font-weight: 100;*/
    font-weight: 300;
    padding: 15px 10px;
    text-transform: uppercase;
    letter-spacing: .7px;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

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

nav.header-nav ul#nav > li#menu-item-29 > ul.sub-menu {
    min-width: 270px;
    margin-left: -242px;
}


/*side fixed smi*/

.side-fixed-contact {
    position: fixed;
    top: 0;
    right: 50px;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1000;
}

.fixed-smi {
    position: relative;
}

.fixed-smi span {
    display: block;
    text-align: center;
    margin: 20px 0;
}

.fixed-smi a {
    font-size: 20px;
    color: #000;
    margin: 0;
    pointer-events: auto !important;
    z-index: 4;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

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

.fixed-smi a i {
    display: none;
}

span.fsmi-phone a {
    font-size: 17px;
}

span.fsmi-email a {
    font-size: 14px;
}


/*footer*/

footer.main-footer {
    background: #000;
    padding: 0 15px 44px;
    /*    border-top: 1px solid #888888;*/
}

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

.gt-head {
    text-align: center;
    margin: 0 0 40px;
}

.gt-head .global-title {
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 0 0 25px;
    border-bottom: 1px solid #777777;
}

.gt-form {
    max-width: 740px;
    margin: 0 auto;
}

.gt-form form {
    font-size: 0;
    margin: 0 -15px;
    position: relative;
}

.gt-fields input,
.gt-fields textarea {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 0;
    resize: none;
    border: none;
    border-bottom: 1px solid #848484;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.gt-form textarea {
    padding-top: 10px;
    height: 117px;
}

.gt-fields.gt-textarea {
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.gt-fields {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 36px;
}

.gt-fields.w-50 {
    width: 50%;
}

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

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

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

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

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

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

.gt-fields.gt-btn {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 180px;
    margin: 39px auto 0;
    display: block;
    position: relative;
}

.gt-fields.gt-btn input {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    border: none;
    width: 100%;
    height: 60px;
    background: transparent;
    border: 1px solid #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.gt-fields.gt-btn input:hover {
    background: var(--secondary);
    border: 1px solid var(--secondary);
}

.gt-holder {
    /*margin: 0 0 90px;*/
}

.ftr-inner {
    padding-top: 50px;
}

.ftr-content {
    border-top: 1px solid #888888;
    padding: 56px 0 0;
}

.ftr-col-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ftr-col1 {
    width: 34.063%;
}

.ftr-col2 {
    width: 32.813%;
}

.ftr-col3 {
    width: 33.124%;
}

.ftr-logo a {
    display: block;
    position: relative;
    max-width: 230px;
    margin: 0 auto;
}

.ftr-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 28px;
    border-bottom: 1px solid #888888;
    margin: 0 0 30px;
}

.ftr-contact-holder {
    display: flex;
}

.ftr-smi {
    max-width: 120px;
    width: 100%;
    font-size: 0;
}

.ftr-smi span {
    display: inline-block;
    padding: 0 16px;
}

.ftr-smi span a {
    font-size: 26px;
    color: #fff;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ftr-smi span a:hover,
.ftr-contact a:hover,
ul.footernav > li > a:hover {
    opacity: .7;
}

.ftr-smi span:first-child {
    padding-left: 0;
}

.ftr-smi span:last-child {
    padding-right: 0;
}

.ftr-contact span {
    display: block;
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.ftr-contact a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.ftr-contact em {
    margin-right: 15px;
}

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

span.ftr-phone em {
    margin-right: 19px;
}

span.ftr-phone {
    text-transform: uppercase;
}

ul.footernav {
    font-size: 0;
}

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

ul.footernav > li > a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul.footernav > li:first-child {
    padding-left: 0;
}

ul.footernav > li:last-child {
    padding-right: 0;
}

.ftr-disclaimer p {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .9px;
    color: #7c7c7c;
    text-align: center;
    padding: 5px 0;
}

.ftr-disclaimer {
    /*margin: 0 0 27px;*/
}

.ftr-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #8888;
    border-bottom: 1px solid #8888;
    padding: 18px 92px;
    margin-top: 30px;
}

.ftr-logos img {
    max-width: 95%;
}


/*copyright & mls*/

.footer-copyright-holder {
    text-align: center;
    padding: 35px 0 0;
}

.footer-copyright,
.footer-copyright a {
    font-size: 12px;
    font-weight: 400;
    color: #7c7c7c;
    line-height: 1.2;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

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

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

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

.mls {
    font-size: 25px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.mls em {
    margin: 0 2px;
}


/*map*/

.map-static img {
    width: 100%;
}

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

#inner-page-wrapper > .container {
    display: block !important;
    margin: 0 auto !important;
    border-radius: unset;
}

.ip-custom-container {
    max-width: 1140px;
    margin: 0 auto;
}


/* Global */


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/

.ip-banner {
    position: relative;
    width: 100%;
    margin-top: 130px;
}

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
}


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 20px;
}


/** Adjust width of content columns **/

#content-sidebar #content {
    width: 77.08%;
}

#content-full #content {
    width: 100%;
}


/* Adjust width of sidebar */

.sidebar {
    width: 20.83%;
}


/* fullwidth template */

.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
    margin-left: -15px;
    margin-right: -15px;
}


/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7;
}

#content .entry-title,
#content .archive-title {
    font-size: var(--font-size-title);
    font-weight: 300;
    color: var(--primary);
    text-transform: uppercase;
}

#content .entry-title span {
    font-weight: 700;
    display: inline-block;
}

#breadcrumbs {
    display: none;
}


/* Who We Are START */

.post-page-who-we-are .black-bg {
    position: relative;
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.post-page-who-we-are .black-bg::before {
    width: 1000%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    background-color: #000000;
}

.post-page-who-we-are #content-full {
    margin-top: 0;
}

.post-page-who-we-are #content .entry-title {
    display: none;
}

.post-page-who-we-are #content .black-bg h2 {
    margin-top: 0;
    font-size: var(--font-size-title);
    font-weight: 300;
    text-transform: uppercase;
}

.post-page-who-we-are .about-btn a.global-btn {
    max-width: 340px;
}

.post-page-who-we-are .about-wrap {
    margin-left: calc((100vw - 1140px) / -2);
    margin-right: calc((100vw - 1140px) / -2);
    padding-top: 47px;
    padding-left: 3vw;
    padding-right: 3vw;
    display: flex;
    align-items: center;
    margin-bottom: 53px;
}

.post-page-who-we-are #content .about-wrap h2 {
    margin-top: 0;
    font-size: var(--font-size-title);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}

.about-wrap .about-text {
    padding-right: 7vw;
}

.about-wrap .about-photo img {
    width: 100%;
}


/* Who We Are END */


/* Join Arec START */

body.post-page-join-arec {
    background-color: var(--primary);
}

.post-page-join-arec #inner-page-wrapper > .container {
    width: 100%;
    padding: 47px 3vw;
    color: #ffffff;
}

.post-page-join-arec #content .entry-title {
    color: #ffffff;
}

.post-page-join-arec #content a {
    color: inherit;
}

.post-page-join-arec #content a:hover {
    opacity: 0.7;
}

.post-page-join-arec .ai-default-cf7wrap input[type=email],
.post-page-join-arec .ai-default-cf7wrap input[type=tel],
.post-page-join-arec .ai-default-cf7wrap input[type=text],
.post-page-join-arec .ai-default-cf7wrap select {
    height: 50px;
    color: #000000;
    font-size: 14px;
}

.post-page-join-arec .ai-default-cf7wrap textarea {
    color: #000000;
    font-size: 14px;
}

.post-page-join-arec .ai-default-cf7wrap input.wpcf7-submit,
.post-page-join-arec .ai-default-cf7wrap input[type=submit] {
    width: 125px;
    height: 60px;
}


/* Join Arec END */


/* Sellers & Buyers Guide START */

.post-page-sellers-guide #inner-page-wrapper > .container,
.post-page-buyers-guide #inner-page-wrapper > .container,
.post-page-co-op-agents #inner-page-wrapper > .container {
    width: 100%;
    padding: 47px 3vw;
}

.post-page-sellers-guide #inner-page-wrapper,
.post-page-co-op-agents #inner-page-wrapper {
    margin-bottom: 0;
}

.post-page-sellers-guide #inner-page-wrapper > .container,
.post-page-co-op-agents #inner-page-wrapper > .container {
    padding-bottom: 0;
}

.post-page-co-op-agents .ftr-inner, .post-page-co-op-agents .main-footer {
    padding-top: 0 !important;
}

.post-page-co-op-agents .gt-holder {
    margin: 0;
}

.ip-btn a.global-btn {
    max-width: 340px;
}

.ip-fl-wrap .ip-btn a.global-btn {
    max-width: 350px;
    letter-spacing: .7px;
    font-weight: 500;
}

.ip-checklist .ip-btn a.global-btn {
    max-width: 270px;
}

.post-page-sellers-guide .ip-black-bg,
.post-page-buyers-guide .ip-black-bg,
.post-page-co-op-agents .ip-black-bg {
    position: relative;
    color: #dcd9d0;
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.post-page-sellers-guide .ip-black-bg,
.post-page-co-op-agents .ip-black-bg {
    color: #fff !important;
}

.post-page-sellers-guide .ip-black-bg::before,
.post-page-buyers-guide .ip-black-bg::before,
.post-page-co-op-agents .ip-black-bg::before {
    width: 1000%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    background-color: #000000;
}

.ip-stand-out {
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    margin: 0 -3vw;
}

.ip-stand-out::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    background-color: #000000;
}

.ip-stand-out::after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-image: url(/wp-content/uploads/2023/12/ip-standout-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.post-page-sellers-guide .ip-stand-out::after,
.post-page-co-op-agents .ip-stand-out::after {
    background-image: url(/wp-content/uploads/2023/12/lamb_110KingsChapel_fullsized_01.jpg);
}

.post-page-sellers-guide .ip-btn a.global-btn,
.post-page-buyers-guide .ip-btn a.global-btn,
.post-page-co-op-agents .ip-btn a.global-btn {
    margin: 0 auto;
}

.post-page-sellers-guide .ip-banner canvas,
.post-page-buyers-guide .ip-banner canvas,
.post-page-co-op-agents .ip-banner canvas,
.post-page-preferred-lenders .ip-banner canvas,
.post-aios-rm-financing-getting-started .ip-banner canvas,
.single-aios-rm-financing .ip-banner canvas,
.post-page-submit-your-listing .ip-banner canvas,
.post-aios-rm-sellers-deciding-to-sell .ip-banner canvas,
.post-aios-rm-buyers-deciding-to-buy .ip-banner canvas,
.single-aios-agents .ip-banner canvas,
.single-aios-rm-sellers .ip-banner canvas,
.single-aios-rm-buyers .ip-banner canvas,
.post-page-search-mls .ip-banner canvas,
.post-page-advanced-page .ip-banner canvas {
    display: none;
}

.post-page-advanced-page #content .archive-more {
    display: none;
}

.post-page-advanced-page #content .archive-subtitle {
    font-size: var(--font-size-title);
    font-weight: 300;
    color: var(--primary);
    text-transform: uppercase;
}

.post-page-advanced-page #content .archive-subtitle a,
.post-page-advanced-page #content .archive-subtitle a:hover {
    color: inherit;
    pointer-events: none;
}

.post-page-buyers-guide h2.special-font.special-color {
    color: #000;
}

.post-page-sellers-guide .ip-custom-container,
.post-page-co-op-agents .ip-custom-container {
    padding: 0 15px;
}

.ip-fl-wrap {
    max-width: 915px;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    margin: 50px auto !important;
    padding: 30px 0;
    display: block !important;
    border-radius: unset !important;
}


/* Sellers & Buyers Guide END */

.post-page-our-agents #content #agents-results .agents-name a:hover {
    color: var(--aios-agents-hover-color);
}

.single-aios-agents h1.entry-title.entry-custom-title span {
    font-weight: 400 !important;
}

.single-aios-agents h1.entry-title.entry-custom-title {
    font-weight: 700 !important;
}

.single-aios-agents .aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--aios-agents-hover-color);
}

.post-page-our-agents #agents-results .agents-list .agents-box-col > .agents-box > div .agent-image-photo .agent-box-hover .agent-box-hover-info .agents-read-bio {
    border: solid 1px #000;
    background: #000;
}

.post-page-our-agents #agents-results .agents-list .agents-box-col > .agents-box > div .agent-image-photo .agent-box-hover .agent-box-hover-info .agents-read-bio:hover {
    background: var(--aios-agents-hover-color);
    border-color: var(--aios-agents-hover-color);
}

.post-page-our-agents #agents-results .agents-pagination {
    margin-top: 0;
}

.post-page-our-agents div#wpcf7-f272-o1 {
    padding: 105px 15px 50px;
    background: #000;
    display: none;
}

.post-page-our-agents div#wpcf7-f272-o1 form {
    position: relative;
    max-width: 738px;
    margin: 0 auto;
}

.post-page-our-agents .aidefcf-title {
    color: #fff;
    text-align: center;
}

.post-page-our-agents .aidefcf-title span {
    font-size: 29px;
    font-weight: 400;
    margin: 0 0 35px;
}

.post-page-our-agents .aidefcf-cl2 span,
.post-page-join-arec .aidefcf-cl2 span {
    float: none;
}

.post-page-join-arec .aidefcf-cl2 span {
    width: 100%;
}

.post-page-our-agents .aidefcf-cl2,
.post-page-join-arec .aidefcf-cl2 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.post-page-our-agents .aidefcf-cl2 > div,
.post-page-join-arec .aidefcf-cl2 > div {
    width: 50%;
    padding: 0 5px;
}

.post-page-our-agents .cf7-label,
.post-page-join-arec .cf7-label {
    font-size: 16px;
    color: #fff;
}

.post-page-our-agents .cf7-label em,
.post-page-join-arec .cf7-label em {
    font-style: normal !important;
    font-size: 14px;
    opacity: .7;
}

.post-page-our-agents .cf7-sub-label,
.post-page-join-arec .cf7-sub-label {
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
}

.post-page-our-agents .ai-default-cf7wrap input[type=email],
.post-page-our-agents .ai-default-cf7wrap input[type=tel],
.post-page-our-agents .ai-default-cf7wrap input[type=text],
.post-page-our-agents .ai-default-cf7wrap select,
.post-page-join-arec .ai-default-cf7wrap input[type=email],
.post-page-join-arec .ai-default-cf7wrap input[type=tel],
.post-page-join-arec .ai-default-cf7wrap input[type=text],
.post-page-join-arec .ai-default-cf7wrap select {
    height: 44px;
    margin-bottom: 25px;
}

.post-page-our-agents span.wpcf7-form-control.wpcf7-checkbox > span {
    display: block;
    margin: 10px 0;
    color: #fff;
}

.post-page-our-agents span.wpcf7-form-control.wpcf7-checkbox > span span.wpcf7-list-item-label {
    margin-left: 5px;
}

.post-page-our-agents span.wpcf7-form-control.wpcf7-checkbox {
    margin: 0 0 25px;
    display: block;
}

.post-page-our-agents .ai-default-cf7wrap input.wpcf7-submit,
.post-page-our-agents .ai-default-cf7wrap input[type=submit],
.post-page-join-arec .ai-default-cf7wrap input.wpcf7-submit,
.post-page-join-arec .ai-default-cf7wrap input[type=submit] {
    background: #dcd9d0 !important;
    color: #000 !important;
    height: 60px;
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.post-page-join-arec .ai-default-cf7wrap input.wpcf7-submit,
.post-page-join-arec .ai-default-cf7wrap input[type=submit] {
    margin: 0 !important;
}

.wwu-title {
    font-size: 45px;
}

h2.special-font {
    font-size: 45px !important;
    font-weight: 400 !important;
    margin-top: 0 !important;
    text-transform: uppercase;
}

.special-color {
    color: #dcd9d0;
}

.post-page-buyers-guide .entry.entry-content .row:first-child .ip-btn {
    margin-top: 30px;
}

.post-page-buyers-guide .ip-fl-wrap .ip-btn {
    margin-top: 75px;
}

.post-page-buyers-guide .ip-fl-wrap h2.special-font {
    margin-bottom: 20px !important;
}

.single-aios-agents #agents-single .agents-button {
    color: #fff;
    background: #000;
}

.page-id-275 .ai-default-cf7wrap select,
#inner-page-wrapper .ip-custom-cf .ai-default-cf7wrap select {
    line-height: unset;
}

.aios-custom-ihomefinder-details-template #ihf-main-container.ihf-modal-container .modal .modal-dialog,
.aios-custom-ihomefinder-results-template #ihf-main-container.ihf-modal-container .modal .modal-dialog {
    left: unset;
}

#wpcf7-f276-p275-o1 .ai-default-cf7wrap,
.ip-custom-cf .ai-default-cf7wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#wpcf7-f276-p275-o1 label,
.ip-custom-cf label {
    display: block;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.05em;
}

#wpcf7-f276-p275-o1 label.short,
.ip-custom-cf label.short {
    width: calc(50% - 5px);
}

#wpcf7-f276-p275-o1 label em,
.ip-custom-cf label em {
    font-style: normal !important;
    opacity: 0.7;
}

#wpcf7-f276-p275-o1 label input,
#wpcf7-f276-p275-o1 label select,
#inner-page-wrapper .ip-custom-cf form label input,
#inner-page-wrapper .ip-custom-cf form label select {
    display: block;
    width: 100% !important;
    height: auto !important;
    padding: 10px !important;
    background: #fafafa !important;
    border: 1px solid #a9a9a9 !important;
    font-family: var(--font-family-default) !important;
    font-size: 16px !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 20px !important;
}

#wpcf7-f276-p275-o1 input[type="submit"],
.ip-custom-cf input[type="submit"] {
    display: inline-block;
    width: auto !important;
    height: auto !important;
    background: #000 !important;
    padding: 1.3rem 2.171rem;
    font-family: var(--font-family-default);
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #fff !important;
    text-transform: uppercase;
}

#wpcf7-f276-p275-o1 input[type="submit"]:hover,
.ip-custom-cf input[type="submit"]:hover {
    opacity: 0.8;
}

#wpcf7-f272-o1 p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    color: #fff;
    margin: 30px 0 0 !important;
}

#content #agents-results .agents-button {
    background: #000;
    color: #fff;
}

#agents-results .agents-contact li a {
    font-weight: 700;
}

.post-page-our-agents #inner-page-wrapper {
    margin-bottom: 0;
}

.post-page-our-agents #wpcf7-f272-o1 {
    margin: 0 calc(calc(-100vw + 100%) / 2);
}

.page-id-26 div#inner-page-wrapper > .container {
    width: 100%;
    max-width: 1600px;
}

.page-id-275 h1.entry-title {
    display: none;
}

.page-id-275 #content h2 {
    font-size: 50px;
    font-weight: 400;
}

.page-id-37 .ip-banner h1 {
    display: none;
}

.page-id-54 .ai-default-cf7wrap input[type=email],
.page-id-54 .ai-default-cf7wrap input[type=tel],
.page-id-54 .ai-default-cf7wrap input[type=text],
.page-id-54 .ai-default-cf7wrap select,
.page-id-53 .ai-default-cf7wrap input[type=email],
.page-id-53 .ai-default-cf7wrap input[type=tel],
.page-id-53 .ai-default-cf7wrap input[type=text],
.page-id-53 .ai-default-cf7wrap select {
    height: 41px;
    background: #fafafa;
    border: 1px solid #a9a9a9;
    font-family: var(--font-family-default);
    font-size: 16px;
}

.page-id-54 .ai-default-cf7wrap input.wpcf7-submit,
.page-id-54 .ai-default-cf7wrap input[type=submit],
.page-id-53 .ai-default-cf7wrap input.wpcf7-submit,
.page-id-53 .ai-default-cf7wrap input[type=submit] {
    height: 41px;
}

.page-id-54 .ai-default-cf7wrap textarea,
.page-id-53 .ai-default-cf7wrap textarea {
    height: 188px;
    background: #fafafa;
    border: 1px solid #a9a9a9;
    font-family: var(--font-family-default);
    font-size: 16px;
}

.page-id-54 h1.entry-title,
.page-id-53 h1.entry-title {
    display: none;
}

.page-id-26 .aiosCommunitiesRadiance__image span {
    color: #fff;
    border-color: #fff;
}

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

#listings-results .listings-grid .listings-address,
#listings-results .listings-grid .listings-price,
#listings-results .listings-grid .listings-plan span {
    font-weight: 500 !important;
}

.post-page-property-valuation .ip-banner::before {
    background: rgba(0, 0, 0, 0.1);
}

.post-page-who-we-are .ip-banner::before,
.post-page-join-arec .ip-banner::before {
    background: rgba(0, 0, 0, 0.03);
}

.post-page-our-agents .ip-banner canvas,
.post-page-communities .ip-banner canvas {
    display: none;
}

.single-aios-communities #inner-page-wrapper {
    margin-top: 130px;
}

.page-id-406 h1.entry-title {
    display: none;
}

.page-id-20 #inner-page-wrapper > .container {
    width: 97vw;
}

.post-page-contact-us #content .entry-title {
    margin-bottom: 15px;
}

.ip-cu-label {
    font-size: 32px;
    margin: 60px 0 25px;
}

.cu-smi {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 25px;
    margin-top: 30px;
}

.page-template-templatestemplate-fullwidth-php.aios-custom-ihomefinder-shortcode .container {
    width: 100%!important;
}

.post-page-exclusive-listings .ip-banner canvas,
.ihf-details .ip-banner canvas {
    display: none;
}

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

.ip-cu-contact .ftr-smi {
    margin-top: 30px;
}

.ip-cu-contact .ftr-smi a span {
    font-size: 22px;
}

.single-aios-agents #agents-single .agents-smi {
    display: none;
}


/*social media section*/

section.social-media-area {
    position: relative;
    background: #000;
    padding: 108px 0 50px;
}

.sm-holder {
    text-align: center;
    max-width: 762px;
    margin: 0 auto;
}

.sm-head .global-title {
    font-size: 30px;
    color: #dcd9d0;
    letter-spacing: .3px;
}

.sm-head {
    margin: 0 9px 33px;
    border-bottom: 1px solid #dcd9d0;
}

.sm-head-text span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #dcd9d0;
    padding: 0 45px;
    letter-spacing: .8px;
}

.sm-head-text {
    margin: 37px 0 45px;
}

.sm-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding-bottom: 34px;
}

.sm-lists::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 18px);
    height: 1px;
    background: #dcd9d0;
    pointer-events: none;
}

.sm-item {
    width: calc(100% / 3);
    padding: 9px;
}

.sm-item a {
    position: relative;
    display: block;
}

span.sm-plybtn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: #fff;
    font-size: 34px;
    text-shadow: 0 0 5px rgb(0 0 0 / 70%);
}


/*end*/


/*contact page smw*/

.post-page-contact-us .sm-head .global-title {
    color: #000;
}

.post-page-contact-us .sm-head .global-title strong {
    font-weight: 700 !important;
}

.post-page-contact-us .sm-head-text span {
    color: #000;
}

.post-page-contact-us .sm-head {
    border-bottom: 1px solid #000;
}

.post-page-contact-us .sm-holder {
    margin: 70px auto;
}

.post-page-contact-us .sm-lists {
    position: relative;
    padding-bottom: 47px;
}

.post-page-contact-us .sm-lists::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 18px);
    height: 1px;
    background: #000;
}


/*end*/

.post-page-join-arec .entry-title {
    display: none;
}

.post-page-our-agents .entry-title {
    display: none;
}

.post-page-buyers-guide .entry-title {
    display: none;
}

.post-page-sellers-guide .entry-title,
.post-page-co-op-agents .entry-title {
    display: none;
}

.post-page-communities h1.archive-title strong {
    font-weight: 700 !important;
}

.post-page-home-valuation .hv-title h2 {
    font-size: 50px !important;
    font-weight: 400 !important;
}

.post-page-home-valuation .ai-default-cf7wrap input.wpcf7-submit {
    background: #000 !important;
    height: 68px;
}

.post-page-home-valuation .ai-default-cf7wrap input.wpcf7-submit:hover {
    background: #444444 !important;
}

.post-page-home-valuation .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    font-size: 12px;
}

.post-page-home-valuation .aidefcf-cl3 > div {
    width: calc(100% / 3);
    display: inline-block;
}

.post-page-home-valuation .aidefcf-cl2 > div {
    width: 50%;
    display: inline-block;
}

.post-page-home-valuation .aidefcf-cl3 > div > p,
.post-page-home-valuation .aidefcf-cl2 > div > p {
    text-align: left;
}

.post-page-home-valuation .aidefcf-cl3 span,
.post-page-home-valuation .aidefcf-cl2 span {
    width: 100%;
    padding: 0 2px;
}

.ihf-details-template #listings-details .listings-seller-rep img,
.ihf-details-template #listings-details .listings-disclaimer-seller-rep img {
    object-fit: contain;
    object-position: center;
}

#listings-details .listings-breadcrumbs {
    display: none !important;
}

.ihf-details-template #listings-details .listings-address strong {
    font-weight: 700 !important;
}

.post-page-contact-us #content .entry-title,
.post-page-contact-us #content .archive-title {
    text-transform: initial;
}


/* .post-page-contact-us #content .entry-title span {
    font-weight: 300;
    display: inline-block;
} */

.post-page-contact-us .ip-cu-contact {
    margin-top: 25px;
}

.post-page-our-agents #agents-results .agents-col:nth-child(even) .agents-smi {
    width: auto;
    margin-right: 35px;
}

.page-id-54 .ai-default-cf7wrap input.wpcf7-submit,
.page-id-54 .ai-default-cf7wrap input[type=submit] {
    display: inline-block;
    width: auto !important;
    height: auto !important;
    padding: 1.3rem 2.171rem;
    font-size: 16px;
    margin: 20px -50px 0;
    letter-spacing: 0.05em;
}

.page-id-20 #content h1.entry-title {
    display: none;
}

.page-id-20 #content h2.entry-title {
    font-size: 44px;
    margin: 1.2em 0 0.5em;
}

.page-id-395.ihf-results-template .ip-banner,
.page-id-396.ihf-results-template .ip-banner,
.page-id-0.ihf-results-template .ip-banner {
    display: none;
}

.page-id-395.ihf-results-template #inner-page-wrapper,
.page-id-396.ihf-results-template #inner-page-wrapper,
.page-id-0.ihf-results-template #inner-page-wrapper {
    margin-top: 130px;
}

.ihf-results-template .listings-map .leaflet-map-pane .leaflet-div-icon {
    border: none;
    background: transparent;
}

body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}

button:focus-visible,
a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}


/* High contrast and Negative contrast break canvas elements with backgrounds */

#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

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

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

.post-page-contact-us .ip-banner canvas {
    display: none;
}

.post-page-contact-us .page-title {
    background: #000;
    text-align: center;
    padding: 30px;
    margin: 0 -4%;
    margin-bottom: 30px;
}

.post-page-contact-us .page-title strong {
    font-weight: 700 !important;
}

.post-page-contact-us .page-title h2 {
    margin: 0 !important;
    text-transform: uppercase !important;
    color: #fff !important;
}

.post-page-contact-us #content-full {
    margin-top: 0;
}

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

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 2px;
    width: auto;
}

a.btn.btn-link.ihf-advanced-search-launch {
    white-space: unset !important;
}

.ai-classic-pd-listings-seller-rep img {
    display: block;
    margin: 10px 0;
}

#ai-classic-properties-details-wrap .ai-classic-pd-listings-main-right .ai-classic-pd-listings-price {
    color: #fff !important;
}

#ai-classic-properties-details-wrap .ai-classic-pd-listings-cta.ai-classic-pd-button-fill a {
    border: 2px solid #fff;
    color: #000;
}

#ai-classic-properties-details-wrap .ai-classic-pd-listings-cta.ai-classic-pd-button-fill a:hover {
    background: #fff !important;
    color: #000;
}

#ai-classic-properties-details-wrap .ai-classic-pd-seller img {
    display: block;
    margin-bottom: 5px;
}

#ai-classic-properties-details-wrap .ai-classic-pd-listings-openhouse ul {
    color: #fff;
}


/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

@media only screen and (min-width: 768px) {
    body.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrows{
        display: flex !important;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
        left: 0;
        right: 0;
    }
    body.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrow--next,
    body.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrow--prev{
        color: #fff;
        transform: none;
        font-size: 40px;
    }
    body.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrow--next{
            right: 20px;
    }
    body.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrow--prev{
            left: 20px;
    }
}
@media only screen and (max-width: 1486px) {
    .post-page-contact-us .ip-cu-contact h2.entry-title {
        font-size: 40px !important;
    }
}

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

@media only screen and (max-width: 1366px) {
    ul.footernav > li {
        padding: 0 14px;
    }
    .post-page-contact-us .page-title {
        margin: 0 -5%;
    }
    .post-page-contact-us .ip-cu-contact h2.entry-title {
        font-size: 34px !important;
    }
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */

@media only screen and (max-width: 1199px) {
    .post-page-contact-us .ip-cu-contact h2.entry-title {
        font-size: 28px !important;
    }
    .ftr-logo a {
        max-width: 250px;
    }
    .ftr-smi span {
        padding: 0 10px;
    }
    .ftr-smi {
        max-width: 80px;
    }
    ul.footernav > li {
        padding: 0 10px;
    }
    ul.footernav > li > a {
        font-size: 12px;
    }
    .ftr-logos {
        padding: 18px 50px;
    }
    .post-page-who-we-are .about-wrap {
        margin-left: calc((100vw - 940px) / -2);
        margin-right: calc((100vw - 940px) / -2);
    }
}


/* iPad(portrait) | Galaxy Tab 4(portrait)  */

@media only screen and (max-width: 991px) {
    #pojo-a11y-toolbar {
        display: none;
    }
    .page-id-20 #inner-page-wrapper > .container {
        width: 100%;
        padding: 0;
    }
    .post-page-contact-us .page-title {
        margin: 0 -15px;
    }
    .single-aios-communities #inner-page-wrapper {
        margin-top: 0;
    }
    .ip-banner {
        margin-top: 0;
    }
    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }
    #content-sidebar,
    #content-full {
        width: 100%;
    }
    .outer {
        width: 100%;
        min-width: 100%;
    }
    #content-sidebar #content {
        width: 100%;
    }
    .hdr-col2,
    .side-fixed-contact {
        display: none;
    }
    header.main-header {
        z-index: 101;
        position: relative;
        padding: 70px 15px 15px;
        width: 100%;
        background: #000;
    }
    header.main-header.show-fixed {
        padding: 70px 15px 15px;
    }
    .hdr-inner {
        justify-content: center;
    }
    .hdr-logo a {
        filter: invert(1);
    }
    :root {
        --font-size-title: 45px;
    }
    footer.main-footer {
        padding: 50px 15px;
    }
    .ftr-col-holder > div {
        width: 100%;
        text-align: center;
    }
    .ftr-logo a {
        max-width: 304px;
        margin: 0 auto;
    }
    .ftr-title {
        padding: 20px 0;
        border-bottom: none;
        margin: 0;
    }
    .ftr-contact-holder {
        display: block;
    }
    .ftr-smi {
        max-width: 100%;
        margin: 0 0 15px;
    }
    ul.footernav > li > a {
        font-size: 14px;
    }
    .ftr-disclaimer {
        margin: 0;
    }
    .ftr-logos {
        padding: 15px;
        display: block;
    }
    .ftr-logos span {
        display: block;
    }
    .ftr-logos span img {
        margin: 20px auto;
    }
    .gt-holder {
        margin: 0 0 50px;
    }
    .post-page-who-we-are .black-bg {
        text-align: center;
    }
    .post-page-who-we-are .about-wrap {
        margin-left: 0;
        margin-right: 0;
    }
    .post-page-who-we-are .about-wrap {
        flex-flow: column;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .about-wrap .about-text {
        padding-right: 15px;
    }
    .post-page-who-we-are .about-btn a.global-btn {
        margin: 0 auto;
    }
    .post-page-who-we-are #content .black-bg img {
        margin-bottom: 40px;
    }
    .post-page-our-agents .aidefcf-cl2 > div,
    .post-page-join-arec .aidefcf-cl2 > div {
        width: 100%;
    }
    .post-page-our-agents .aidefcf-cl2 > div:nth-child(2) .cf7-sub-label,
    .post-page-join-arec .aidefcf-cl2 > div:nth-child(2) .cf7-sub-label {
        margin-top: 0;
    }
    .sm-head-text span {
        display: block;
        padding: 15px 0;
    }
    section.social-media-area {
        padding: 50px 0 0;
    }
    .post-page-our-agents #agents-results .agents-col:nth-child(even) .agents-smi {
        width: 100%;
    }
    .page-id-20 #content h2.entry-title {
        font-size: max(4.44vw, 32px);
        line-height: 1.25;
    }
    .page-id-395.ihf-results-template #inner-page-wrapper,
    .page-id-396.ihf-results-template #inner-page-wrapper,
    .page-id-0.ihf-results-template #inner-page-wrapper {
        margin-top: 0px;
    }
    .ihf-results-template #listings-results .listings-table .listings-table-body .listings-plan-logo-attribution img {
        background: #000;
    }
}


/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */

@media only screen and (max-width: 767px) {
    .ip-banner .container {
        width: 100%;
    }
    .gt-fields.w-50 {
        width: 100%;
    }
    .gt-fields {
        margin-bottom: 20px;
    }
    ul.footernav > li {
        padding: 10px 0;
        display: block;
    }
    .sm-item {
        width: 50%;
    }
    .post-page-home-valuation .hv-title h2 {
        font-size: 40px !important;
        line-height: 1.2;
    }
}


/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */

@media only screen and (max-width: 480px) {
    :root {
        --font-size-title: 35px;
    }
    .sm-item {
        width: 100%;
    }
    #wpcf7-f276-p275-o1 label.short,
    .ip-custom-cf label.short {
        width: 100%;
    }
    .post-page-home-valuation .hv-title h2 {
        font-size: 30px !important;
    }
    .post-page-contact-us .ip-cu-contact h2.entry-title {
        font-size: 18px !important;
    }
}