:root {
    /** Font default */
    --font-family-default: "Quicksand", sans-serif;
    --font-family-title: "Nanum Myeongjo", serif;
    --font-family-script: "Nothing You Could Do", serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #000;
    /** Use for input, button, and any other element */
    --primary: #000;
    --secondary: #c6aa5f;
    --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; */
}

.open {
    overflow-y: hidden;
}
html:has(body.open),
body.open,
body:has(.bm-menu-scrollable.active),
body:has(.bm-contact-wrap.active){
    overflow: hidden !important;
}

#main-wrapper {
    overflow: hidden;
    position: relative;
    background: #fff;
    z-index: 2;
}

.ip-container main {
    overflow: hidden;
    position: relative;
    background: #fff;
    z-index: 2;
}

a {
    color: inherit;
}
    a:hover {
        color: var(--primary);
    }
    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;
    }

.custom-scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}
.custom-scrollbar::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border: 0px none #ffffff;
    border-radius: 50px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.custom-scrollbar::-webkit-scrollbar-thumb:active {
    background: #000000;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #666666;
    border: 0px none #ffffff;
    border-radius: 50px;
}
.custom-scrollbar::-webkit-scrollbar-track:hover {
    background: #666666;
}
.custom-scrollbar::-webkit-scrollbar-track:active {
    background: #333333;
}
.custom-scrollbar::-webkit-scrollbar-corner {
    background: transparent;
}

/*header*/
header.header.sticking {
    background: #000;
}
    .sticking .header-logo {

    }
        .sticking .header-logo img {

        }
    .sticking a.header-link {
        color: #fff;
    }
    .sticking .bm-menu-open span {
        background: #fff;
    }
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 101;
    padding: 10px 0 13px;
    transition: all var(--default-transition);
}
    .header-inner {
        padding: 0 5%;
    }
        .header-logo {
            font-size: 0;
            width: 288px;
            transition: all var(--default-transition);
        }
            .header-logo a {
                display: inline-block;
            }
                .header-logo a img {
                    display: block;
                    width: 100%;
                    height: auto;
                    transition: filter var(--default-transition);
                }

        .header-nav {

        }
            #nav {
                display: flex;
                flex-flow: row wrap;
                align-items: center;
            }
            header.header:not(.sticking) a.header-link.show-on-fixed {
                opacity: 0;
                visibility: visible;
                pointer-events: none;
            }
            a.header-link {
                font-size: 16px;
                letter-spacing: 0.04em;
                color: #000;
                text-transform: uppercase;
                transition: all var(--default-transition);
                display: inline-block;
                margin-left: 58px;
                position: relative;
                padding: 13px 0;
            }
                a.header-link:before {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    height: 1px;
                    background: var(--secondary);
                    transform: scaleX(0);
                    transition: all var(--default-transition);
                }
                a.header-link:hover:before,
                a.header-link:focus:before {
                    transform: scaleX(1)
                }
                a.header-link:first-of-type {
                    margin-left: 0;
                }
            .bm-menu-open {
                width: 40px;
                height: 40px;
                background: transparent;
                border: none;
                padding: 0;
                margin-left: 66px;
                transition: all var(--default-transition);
            }
                .bm-menu-open span {
                    display: block;
                    width: 100%;
                    height: 1px;
                    background: #000;
                    transition: all var(--default-transition);
                }
                .bm-menu-open span:nth-child(2) {
                    margin: 10px 0;
                    margin-left: auto;
                    width: 29px;
                }
                .bm-menu-open:hover,
                .bm-menu-open:focus {
                    opacity: 0.5;
                }


/*burger menu*/
.bm-menu-bg.active,
.bm-contact-bg.active {
    display: block;
}
.bm-menu-wrap.active,
.bm-contact-wrap.active {
    transform: translateX(0);
}
.bm-menu-bg,
.bm-contact-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    pointer-events: all;
}
.bm-menu-scrollable.active {
    opacity: 1;
}
.bm-menu-scrollable {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}
.bm-menu-wrap {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    width: 517px;
    background: var(--primary);
    z-index: 9999;
    transform: translateX(100%);
    transition: all .5s ease;
    pointer-events: all;
    margin-left: auto;
    min-height: 100vh;
}
    .bm-menu-wrap:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        background: var(--secondary);
        bottom: 0;
        z-index: 10;
        pointer-events: none;
    }

    .bm-nav-submenu-bg {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 100%;
        width: 245px;
        max-width: 50vw;
        background: rgba(0,0,0,0.9);
        opacity: 0;
        transition: all var(--default-transition);
        pointer-events: none;
        min-height: 100vh;
    }

    .bm-nav-submenu-bg.is-hover {
        opacity: 1;
    }

    .bm-menu-inner {
        max-height: 100%;
        position: relative;
        padding: 118px 80px;
        padding-left: 0;
    }
        
        .bm-menu-close,
        .bm-contact-close {
            position: absolute;
            top: 46px;
            right: 84px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: transparent;
            padding: 0;
            border: none;
        }
            .bm-menu-close span,
            .bm-contact-close span {
                font-size: 13px;
                letter-spacing: 0.1em;
                line-height: 1;
                text-transform: uppercase;
                padding: 0 0 2px;
            }
            .bm-menu-close em,
            .bm-contact-close em {
                font-size: 30px;
            }

        #bm_nav {
            text-align: right;
        }
            #bm_nav > li {
                position: relative;
                padding: 20px 0;
                z-index: 1;
            }
                #bm_nav > li.menu-item-has-children:before {
                    content: '';
                    position: absolute;
                    left: 50px;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    width: 35px;
                    height: 26px;
                    background: url(../images/icon-arrow.png) center / contain no-repeat;
                    transform: translateX(20px);
                    opacity: 0;
                    transition: all var(--default-transition);
                }
            #bm_nav > li:last-child {
                margin-bottom: 0;
            }
                #bm_nav > li > a {
                    font-weight: 100;
                    font-size: 24px;
                    letter-spacing: 0.02em;
                    line-height: 1;
                    color: #fff;
                    transition: color var(--default-transition);
                    font-family: var(--font-family-title);
                }
                    #bm_nav > li:hover > a {
                        color: var(--secondary);
                    }

            #bm_nav > li > .sub-menu {
                position: absolute;
                right: 100%;
                top: 0;
                width: 245px;
                text-align: center;
                padding: 21px 0;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: all var(--default-transition);
                transform: translateX(20px);
            }
                /*.bm-nav-submenu-bg {
                    position: absolute;
                    top: 0;
                    width: 245px;
                    max-width: 50vw;
                    right: 100%;
                    bottom: 0;
                    background: rgba(0,0,0,0.7);
                }*/
                /*#bm_nav > li > .sub-menu:before {
                    content: '';
                    position: absolute;
                    top: -100vw;
                    bottom: -100vw;
                    background: rgba(0,0,0,0.9);
                    left: 0;
                    right: 0;
                    border-right: 1px solid rgb(255 255 255 / 10%);
                    z-index: -1;
                    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
                    transition: all var(--default-transition);
                }*/
                #bm_nav > li > .sub-menu li {
                    margin-bottom: 13px;
                }
                #bm_nav > li > .sub-menu li:last-child {
                    margin-bottom: 0;
                }
                    #bm_nav > li > .sub-menu li a {
                        font-size: 16px;
                        font-weight: 100;
                        letter-spacing: 0.02em;
                        line-height: 1.375;
                        color: #fff;
                        display: block;
                        padding: 0 10px;
                        transition: color var(--default-transition);
                    }
                    #bm_nav > li > .sub-menu li:hover > a {
                        color: var(--secondary);
                    }

            #bm_nav > li.menu-item-has-children:hover:before {
                opacity: 1;
                transform: translateX(0);
            }
            #bm_nav > li:hover > .sub-menu {
                opacity: 1;
                visibility: visible;
                pointer-events: all;
                transform: translateX(0);
            }
            #bm_nav > li:hover > .sub-menu:before {
                clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
            }

            #bm_nav > li > .sub-menu .sub-menu {
                padding: 20px 0 0;
            }
            #bm_nav > li > .sub-menu .sub-menu a {
                font-size: 12px;
            }

/*bm contact*/
.bm-contact-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 763px;
    max-width: 100%;
    background: var(--primary);
    z-index: 9999;
    transition: all .5s ease;
    transform: translateX(100%);
}
    .bm-contact-scrollable {
        height: 100%;
        overflow: auto;
    }
        .bm-contact-scrollable
        .bm-contact-wrap .simplebar-scrollbar:before {
            background: #fff;
        }
        .bm-contact-inner {
            padding: 121px 90px 76px;
            position: relative;
        }
            .bm-contact-wrap .section-title {
                padding-bottom: 22px;
            }
            .bm-contact-wrap p {
                font-weight: 100;
                font-size: 14px;
                line-height: 2.285714285714286;
                color: #fff;
                letter-spacing: 0.05em;
                margin-bottom: 71px;
            }
            .bm-contact-form {

            }
                .bm-contact-form form  {
                    margin: 0 -12px;
                    position: relative;
                }
                    .bm-contact-field.field-6 {
                        width: 50%;
                    }
                    .bm-contact-field.field-12 {
                        width: 100%;
                    }
                    .bm-contact-field {
                        display: inline-block;
                        vertical-align: top;
                        padding: 0 12px;
                        margin-bottom: 55px;
                    }
                    .bm-contact-field.mb-0 {
                        margin-bottom: 0;
                    }
                        .bm-contact-field em {
                            display: block;
                            font-weight: 100;
                            font-size: 13px;
                            letter-spacing: 0.02em;
                            text-transform: uppercase;
                            line-height: 1;
                            color: rgba(255,255,255,0.8);
                            font-style: normal!important;
                        }
                        .bm-contact-field input,
                        .bm-contact-field textarea {
                            width: 100%;
                            height: 32px;
                            background: transparent;
                            border: none;
                            border-bottom: 1px solid rgba(255,255,255,0.8);
                            font-weight: 100;
                            font-size: 14px;
                            letter-spacing: 0.05em;
                            line-height: 1.7143;
                            color: #fff;
                        }
                        .bm-contact-field textarea {
                            height: 69px;
                            resize: none;
                        }

                    .bm-contact-btn {
                        text-align: right;
                        position: relative;
                        margin: 53px 0 0;
                        width: 100%;
                        padding: 0 12px;
                    }

                    .bm-contact-btn .btn-a {
                        position: relative;
                        min-width: 135px;
                    }

                    .bm-contact-btn .btn-a input {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        opacity: 0;
                    }

                    .bm-contact-btn .btn-a .wpcf7-spinner {
                        position: absolute;
                        bottom: -40px;
                        right: 0;
                        margin: auto;
                    }

                    .bm-contact-btn .btn-a:not(:hover):before {
                        /* width: 68px; */
                        width: 100%;
                    }

                .use-floating-validation-tip .wpcf7-not-valid-tip {
                    position: absolute;
                    width: auto;
                    font-size: 12px;
                }

                .bm-contact-form .wpcf7 form .wpcf7-response-output {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    margin: 20px 8px 0;
                    font-size: 12px;
                    color: #fff;
                    text-align: center;
                }
                .bm-contact-btn .wpcf7-spinner {
                    position: absolute;
                    bottom: -30px;
                    right: 0;
                    margin: 0;
                }

.bm-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

/*btn*/
a.btn-a,
.btn-a {
    display: inline-flex;
    min-width: 164px;
    min-height: 49px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: row wrap;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #000;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.5);
    transition: all var(--default-transition);
    transition-property: color, border, background;
    z-index: 1;
    position: relative;
}
    .btn-a:before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-radius: inherit;
        opacity: 0;
        z-index: -1;
        transition: all var(--default-transition);
        background: rgb(198,170,95);
        background: -moz-linear-gradient(318deg, rgba(198,170,95,1) 0%, rgba(244,231,207,1) 53%, rgba(119,127,129,1) 100%);
        background: -webkit-linear-gradient(318deg, rgba(198,170,95,1) 0%, rgba(244,231,207,1) 53%, rgba(119,127,129,1) 100%);
        background: linear-gradient(318deg, rgba(198,170,95,1) 0%, rgba(244,231,207,1) 53%, rgba(119,127,129,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6aa5f",endColorstr="#777f81",GradientType=1);
    }
    .btn-a:hover,
    .btn-a:focus {
        color: #000!important;
    }
    .btn-a:hover:before,
    .btn-a:focus:before {
        opacity: 1;
    }

a.btn-a.is-white,
.btn-a.is-white {
    border-color: #fff;
    color: #fff;
}

/*title*/
.section-title,
#content .archive-title,
#content .entry-title {
    font-size: 64px;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #000;
    font-family: var(--font-family-title);
    position: relative;
    padding: 0 0 25px;
    font-weight: 400;
}
    #content .archive-title,
    #content .entry-title {
        margin-top: 0;
        padding: 0;
    }

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

footer.footer.show-footer {
    opacity: 1;
    pointer-events: all;
}
footer.footer {
    position: relative;
    background: #000;
    padding-bottom: 677px;
    color: #fff;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
    .footer-inner {
        padding: 101px 7.5% 103px 8.125%;
        background: #000;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
    }
        .footer-left {
            max-width: 80%;
        }
            .footer-logo {
                margin-bottom: 25px;
            }
                .footer-logo img {
                    max-width: 100%;
                    height: auto;
                }
                .footer-logo a {
                    margin-right: 49px;
                }
                    .footer-logo a img {
                        /*filter: brightness(0) invert(1);*/
                    }

            .footer-mls-logo {
                font-size: 0;
                margin-bottom: 43px;
            }
                .footer-mls-logo img {
                    max-width: 100%;
                    height: auto;
                }

                body:not(.page-id-16) .only-on-sellers {
                    display: none;
                }

                .only-on-sellers {
                    margin-left: 18px;
                }
            .footer-smi {
                font-size: 30px;
            }
                .footer-smi a {
                    margin-right: 22px;
                    transition: color var(--default-transition);
                }
                    .footer-smi a:hover,
                    .footer-smi a:focus {
                        color: var(--secondary);
                    }

        .footer-right {
            /*max-width: 50%;*/
            padding: 16px 0 0;
        }
            .footer-right ul {
                text-align: right;
                font-size: 16px;
                letter-spacing: 0.04em;
                color: #fff;
                line-height: 1.25;
            }
                .footer-right ul li {
                    margin-bottom: 34px;
                }
                    .footer-right ul li a {
                        transition: color var(--default-transition);
                    }
                    .footer-right ul li a:hover,
                    .footer-right ul li a:focus {
                        color: var(--secondary);
                    }
                    .footer-right ul li:last-child {
                        margin-bottom: 0;
                    }
                    .footer-right ul li.address {
                        opacity: 0.8;
                    }
                        .footer-right ul li.address span {
                            border-right: 1px solid #fff;
                            padding: 0 10px;
                        }
                        .footer-right ul li.address span:first-of-type {
                            padding-left: 0;
                        }
                        .footer-right ul li.address span:last-of-type {
                            padding-right: 0;
                            border-right: 0;
                        }

    .footer-disclaimer {
        position: relative;
        border-top: 1px solid rgba(255,255,255,0.25);
        margin: 33px 0 0;
        padding: 50px 0 0;
    }
        .footer-disclaimer-left {
            width: 935px;
            max-width: calc(100% - 150px);
        }
            .footer-disclaimer-left p {
                font-size: 13px;
                letter-spacing: 0.02em;
                color: rgba(255,255,255,0.7);
                line-height: 2;
            }
                .footer-disclaimer-left p a {
                    transition: color var(--default-transition);
                }
                .footer-disclaimer-left p a:hover,
                .footer-disclaimer-left p a:focus {
                    color: var(--secondary);
                }
            .footer-disclaimer-left p:last-of-type {
                color: #fff;
                letter-spacing: 0.05em;
                margin-top: 17px;
            }
        .footer-disclaimer-right {

        }
            .footer-icons {
                font-size: 35px;
            }
                .footer-icons i.ai-font-eho {
                    margin-right: 10px;
                    font-size: 30px;
                }

/* Global */


/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
}

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

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

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

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

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

/* Adjust minimum height of page area */
#content-sidebar, #content-full {
    min-height: 500px;
    margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
    width: 77.08%;
}

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

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
}

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

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

/* Virtual Home Selling */
.vhs-verbiage {
  margin-bottom: 30px;
}

.vhs-item {
  margin-bottom: 20px;
}

.vhs-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
}

.vhs-content {
  padding-left: 15px;
}

#content .vhs-content h2{
  font-size: 30px;
  font-weight: 400;
  color: #b99b57;
  line-height: 1.1;
  margin-top: 0 !important;
}

.vhs-contact-box {
  text-align: center;
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}
#content .vhs-contact-box h2{
  font-weight: normal;
  font-size: 30px;
  line-height: 1.1;
}
.vhs-contact-box .sxn-link{
}
/* End Virtual Home Selling */

/* 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) */


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,
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background {
    display:none !important;
}

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

/* Styles for category/archive/search/etc subheadings (h2) */


/*archive*/
/** Single Default Layout (Post Content) */
#content .entry-thumbnail {
    position: relative;
    margin-bottom: 50px;
}

#content .entry-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.back-to-link {
    position: relative;
}

.back-to-link a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    margin-top: 75px;
    -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;
}

.back-to-link a:hover {
}
/** End of Single Default Layout (Post Content) */

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
}

#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: 32px;
}

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

#content .archive-more {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-style: normal;
    text-decoration: none;
    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;
}

#content .archive-more:after {
    content: '';
    position: absolute;
    left: calc(100% + 23px);
    top: calc(50% - 1px);
    background: #ded1c1;
    width: 0;
    height: 2px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#content .archive-more:hover {
}

#content .archive-more:hover:after {
    width: 63px;
    opacity: 1;
}

.archive.category #inner-page-wrapper .container,
.post-page-studio-press #inner-page-wrapper .container {
    width: 100%;
    padding: 0 max(3.125vw, 50px);
}

/** End of Archive Default Layout (Archive Page) */
/*archive end*/

#content #breadcrumbs,
#breadcrumbs {
    line-height: 1.7;
    margin: 20px 0 1.12em;
    font-size: 14px;
    letter-spacing: 0.02em;
    font-weight: 400;
}
    #breadcrumbs .breadcrumb_last {
        color: var(--secondary);
        text-decoration: underline;
        text-underline-offset: 9px;
        text-decoration-thickness: 2px;
        font-weight: 600;
    }
    #breadcrumbs a {
        transition: color var(--default-transition);
    }
    #breadcrumbs a:hover {
        color: var(--secondary);
    }

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

#content .entry-sub {
    color: var(--secondary);
    font-family: var(--font-family-title);
    font-size: 2em;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

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

#areaPickerClearAll .glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

.page-id-0 #main-wrapper main {
    overflow: initial;
}

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

.page-id-0 #ihf-main-container .modal-dialog,
.page-id-292 #ihf-main-container .modal-dialog{
    left: auto;
}

ul.sitemap-list li.page-item-210,
ul.sitemap-list li.page-item-238,
ul.sitemap-list li.page-item-212 {
    display: none;
}
.aios-sold-property-details a[data-target="#ihfScheduleShowing"]{
    display: none;
}
.aios-sold-property-details .ld-share{
    margin-left: 0;
}
.post-page-about #breadcrumbs{
    color: #ffffff;
}
.single-aios-communities .community-main > .community-title{
    display: none;
}
.single-aios-communities .lst-top{
    margin-top: 0;
}
.single-aios-agents .ip-agent-d-section-2{
    display: none;
}
.single-aios-agents #hp-social{
    display: none;
}
.page-id-22 .entry-content a:hover{
    color: var(--secondary);
}
.error-page-content-wrapper .wpcf7 form .wpcf7-response-output{
    text-align: center;
}

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

}

@media only screen and (max-width: 1366px) {
    #bm_nav > li {
        padding: 15px 0;
    }
        #bm_nav > li > a[data-title="Area Knowledge"] + .sub-menu {
            top: -120px;
        }
}

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

}

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

    footer.footer {
        padding-bottom: 605px;
    }
        .footer-inner {
            padding-bottom: 40px;
            padding-top: 40px;
        }
        .footer-logo a {
            margin-right: 30px;
        }

    .section-title, 
    #content .archive-title, 
    #content .entry-title {
        font-size: 54px;
    }
}
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    *[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%;
    }

    header.header {
        padding: 7px 0;
        background: #000;
    }
        .header-inner {
            padding: 0 3.750%;
        }
        .header-logo {
            width: 100px;
        }
        a.header-link {
            font-size: 12px;
            padding: 10px 0;
            margin-left: 0;
            color: #fff;
        }
        header.header:not(.sticking) a.header-link.show-on-fixed,
        a.header-link.show-on-fixed {
            display: none;
        }
        .bm-menu-open {
            margin-left: 30px;
        }
        .bm-menu-open span {
            background: #fff;
        }
    

    .bm-menu-wrap {
        max-width: 50%;
        width: 400px;
        min-height: 100vh;
    }
        .bm-menu-inner {
            padding: 60px 8%;
            padding-left: 0;
        }
        #bm_nav > li > .sub-menu {
            max-width: 50vw;
        }
        #bm_nav > li.menu-item-has-children:before {
            left: 20px;
            width: 23px;
        }
        .bm-menu-close, .bm-contact-close {
            top: 20px;
            right: 8%;
        }

        .bm-menu-close em, .bm-contact-close em {
            font-size: 20px;
        }

        #bm_nav > li {
            padding: 13px 0;
        }

        #bm_nav > li > a {
            font-size: 20px;
        }

        #bm_nav > li > .sub-menu li a {
        }

    .bm-contact-wrap {
        max-width: 90%;
    }

    .bm-contact-inner {
        padding: 60px 12%;
    }

    .bm-contact-field.field-6 {
        width: 100%;
    }

    .bm-contact-field {
        margin-bottom: 25px;
    }

    .bm-contact-wrap p {
        margin-bottom: 40px;
    }

    .section-title,
    #content .archive-title,
    #content .entry-title {
        font-size: 40px;
    }


    footer.footer {
        padding-bottom: 0;
        opacity: 1;
        pointer-events: all;
    }

        .footer-inner {
            position: relative;
            padding: 50px 3.75%;
        }

        .footer-left {
            width: 100%;
            max-width: 100%;
        }

        .footer-logo {
            justify-content: center;
        }

        .footer-mls-logo {
            text-align: center;
        }

        .footer-mls-logo img.only-on-sellers {
            display: block;
            max-width: 300px;
            margin: 20px auto 0;
            width: 80%;
            min-width: 280px;
        }

        .footer-logo a {
            margin-right: 15px;
            width: 200px;
        }

        .footer-logo span {
            width: 140px;
        }

        .footer-smi {
            justify-content: center;
        }

        .footer-smi a:last-child {
            margin-right: 0;
        }

        .footer-right {
            width: 100%;
            padding-top: 50px;
        }

        .footer-right ul {
            text-align: center;
        }

        .footer-right ul li {
            margin-bottom: 20px;
        }

        .footer-disclaimer-left {
            width: 100%;
            max-width: 100%;
            text-align: center;
        }

        .footer-disclaimer-right {
            width: 100%;
        }

        .footer-icons {
            justify-content: center;
            margin-top: 15px;
        }


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

    /*archive*/
    #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;
    }
    .archive.category #inner-page-wrapper .container,
    .post-page-studio-press #inner-page-wrapper .container {
        padding: 0 max(3.125vw, 30px);
    }
    /*archive end*/
    
    .single-aios-communities .entry-title.hidden-md.hidden-lg{
        display: none;
    }
    .single-aios-communities #content-full #content > #breadcrumbs{
        display: none;
    }

}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    *[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%;
    }

    #bm_nav > li > a {
        font-size: 15px;
        padding-left: 15px;
    }
    #bm_nav > li > .sub-menu li a {
        font-size: 12px;
        padding: 0 15px;
        text-align: center;
        display: block;
    }
    #bm_nav > li.menu-item-has-children:before {
        left: 10px;
        width: 15px;
    }
}

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


    .footer-logo a {
        width: 140px;
        margin-right: 0;
    }
    .footer-mls-logo img {
        width: 70px;
    }
}
