:root {
    /** Font default */
    --font-family-default: "Amenti", sans-serif;
    --font-family-title: "Amenti", sans-serif;
    --font-size-default: 20px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #00b5fc;
    /** Use for input, button, and any other element */
    --primary: #000;
    --secondary: #00b5fc;
    --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; */
}

#main-wrapper {
    overflow: hidden;
}

a {
    color: inherit;
}
    a:hover {

    }
    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;
    }
    .ju-around {
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }


/*header*/
header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 37px 0 0;
}
    .header-inner {
        max-width: 1445px;
        margin: 0 auto;
        padding: 0 15px;
    }
        .header-logo {
            font-size: 0;
            text-align: center;
            margin-bottom: 33px;
        }
            .header-logo img {
                max-width: 100%;
                height: auto;
            }

        .header-nav {

        }
            .header-menu {
                display: flex;
                flex-flow: row wrap;
                justify-content: space-between;
                flex-grow: 1;
                padding-right: 2.5%;
            }
                .header-menu > li {
                    position: relative;
                }
                    .header-menu > li > a {
                        font-size: 13px;
                        letter-spacing: 0.2em;
                        line-height: 1;
                        text-transform: uppercase;
                        display: block;
                        color: #fff;
                        padding: 6px 9px;
                        position: relative;
                        display: block;
                    }
                        .header-menu > li > a:before {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            height: 2px;
                            background: #fff;
                            transform: scaleX(0);
                            transition: all var(--default-transition);
                        }
                        .header-menu > li:hover > a:before,
                        .header-menu > li:focus-within > a:before {
                            transform: scaleX(1);
                        }


                .header-menu > li > .sub-menu {
                    transform: translateX(-50%);
                    left: 50%;
                    padding-top: 7px;
                }
                .header-menu .sub-menu {
                    position: absolute;
                    text-align: center;
                    min-width: 213px;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                    transition: all var(--default-transition);
                }
                    .header-menu li:hover > .sub-menu,
                    .header-menu li:focus-within > .sub-menu {
                        opacity: 1;
                        visibility: visible;
                        pointer-events: all;
                    }
                .header-menu .sub-menu-lg > .sub-menu {
                    min-width: 306px;
                }
                    .header-menu .sub-menu li {
                        position: relative;
                        margin-bottom: 1px;
                    }
                        .header-menu .sub-menu li a {
                            font-size: 14px;
                            letter-spacing: 0.1em;
                            line-height: 1;
                            text-transform: uppercase;
                            display: block;
                            color: #fff;
                            position: relative;
                            padding: 11px 10px 10px;
                        }
                            .header-menu .sub-menu li a:before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                z-index: -1;
                                background: var(--secondary);
                                opacity: 0.7;
                                transition: all var(--default-transition);
                            }
                            .header-menu .sub-menu li:hover > a:before,
                            .header-menu .sub-menu li:focus-within > a:before {
                                opacity: 1;
                            }

                    .header-menu .sub-menu .sub-menu {
                        top: 0;
                        left: 100%;
                    }

        .header-contact {

        }
            .header-contact span {

            }
                .header-contact span a {
                    font-size: 15px;
                    display: inline-block;
                    min-width: 15px;
                    text-align: center;
                    color: #fff;
                    transition: color var(--default-transition);
                }
                    .header-contact span a:hover,
                    .header-contact span a:focus {
                        color: var(--secondary);
                    }
                    .header-contact span a i.ai-font-envelope-f {
                        font-size: 13px;
                    }
                .header-contact span.line {
                    width: 1px;
                    height: 21px;
                    background: #fff;
                    margin: 0 18px;
                }

        .bm-menu-open {
            width: 51px;
            height: 51px;
            background: transparent;
            border: none;
            padding: 0;
            margin-left: 48px;

            display: none;
        }
            .bm-menu-open span {
                display: block;
                height: 3px;
                background: #fff;
                transition: all var(--default-transition);
            }
            .bm-menu-open span:nth-child(1) {
                margin-left: 12px;
                margin-bottom: 7px;
            }
            .bm-menu-open span:nth-child(2) {
                margin-right: 12px;
            }

            .bm-menu-open:hover span:nth-child(1),
            .bm-menu-open:hover span:nth-child(2),
            .bm-menu-open:focus span:nth-child(1),
            .bm-menu-open:focus span:nth-child(2) {
                margin-left: 0;
                margin-right: 0;
            }


/*fixed header*/
.fixed-header.sticking {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1011;
    background: rgba(0,0,0,0.35);
    padding: 12px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--default-transition);
}
    .fheader-inner {
        padding: 0 20px 0 23px;
    }
        .fheader-logo {
            width: 185px;
            width: 11.882%;
            font-size: 0;
        }
            .fheader-logo a {
                font-size: 0;
            }
                .fheader-logo img {
                    max-width: 100%;
                    height: auto;
                }

        .fheader-nav {
            width: 88.118%;
        }
            #fheader_nav {
                padding-left: 3.2%;
            }


/*button*/
a.btn-a,
.btn-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 204px;
    height: 54px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    background: transparent;
    border: none;
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 2px;
}
    .btn-a:before, 
    .btn-a:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        transition: all var(--default-transition);
    }

    .btn-a:before {
        width: 4px;
        background: var(--secondary);
    }
    .btn-a:after {
        border: 1px solid rgba(255,255,255,0.3);
        left: 10px;
    }
    .btn-a:hover {
        color: #fff!important;
    }
    .btn-a:hover:before {
        background: #fff!important;
    }
    .btn-a:hover:after {
        border-color: var(--secondary)!important;
        background: var(--secondary)!important;
    }
    .btn-a i {
        transition: color var(--default-transition);
    }
    .btn-a:hover i {
        color: #fff!important;
    }
a.btn-a.is-white,
.btn-a.is-white {
    color: #fff;
}
/*button end*/

/*background*/
.bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
}
    .bg-section:before,
    .bg-section:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
.bg-section.is-parallax {
    background-attachment: fixed;
}
/*background end*/

/*title*/
.section-title {
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    font-size: 90px;
}
    .section-title small {
        display: block;
        font-size: 14px;
        letter-spacing: 2em;
        color: #919191;
        margin-bottom: 36px;
    }
        .section-title small em {
            font-style: normal!important;
            letter-spacing: 0.5em;
        }
    .section-title strong {
        display: block;
        font-weight: 700;
        font-size: inherit;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #000;
        padding-left: 38px;
        /*padding-left: 0.4861111111111111em;*/
    }

    .section-title:before {
        content: '';
        position: absolute;
        /*top: 26px;
        bottom: 19px;
        left: 12px;*/
        background: #000;
        width: 1px;
        top: 0.3611111111111111em;
        bottom: 0.2638888888888889em;
        left: 0.16666666666666666em;
    }

.section-title.is-white {

}
    .section-title.is-white small {
        color: #ebebeb;
    }
    .section-title.is-white strong {
        color: #fff;
    }
    .section-title.is-white:before {
        background: #ececec;
    }
/*title end*/

/*image wrapper*/
.img-wrapper {
    position: relative;
}
    .img-wrapper canvas {
        display: block;
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .img-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    .img-wrapper:before,
    .img-wrapper:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
    }
/*image wrapper end*/

/*custom slick arrow*/
.custom-slick-arrow {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    color: #000;
    background: transparent;
    border: none;
    padding: 0;
    text-transform: uppercase;
    transition: all var(--default-transition);
    transition-property: color, opacity;
    z-index: 2;
}
    .custom-slick-arrow i.icon-slick-arrow {
        width: 79px;
        height: 58px;
        background: url(../images/icon-slick-arrow.png) center/contain no-repeat;
        display: inline-block;
        position: relative;
    }
    .custom-slick-arrow.slick-prev i.icon-slick-arrow {
        margin-right: 25px;
    }
    .custom-slick-arrow.slick-next i.icon-slick-arrow {
        transform: rotateY(180deg);
        margin-left: 15px;
    }
    .custom-slick-arrow span {
        font-size: 14px;
        letter-spacing: 0.2em;
        padding-top: 9px;
    }
    .custom-slick-arrow:hover {
        opacity: 0.7;
    }
.custom-slick-arrow.is-white {
    color: #fff;
}
    .custom-slick-arrow.is-white i.icon-slick-arrow {
        filter: brightness(0) invert(1);
    }

/*custom slick arrow end*/


/*git*/
#hp-git {
    position: relative;
    padding: 136px 0 153px;
}
    .bg-section.bg-git {

    }
        .bg-section.bg-git:before {
            content: '';
            background: #000;
            opacity: 0.85;
        }
    .git-title {
        margin-bottom: 25px;
    }
        .git-title .section-title small {
            letter-spacing: 0.5em;
        }

    #hp-git p {
        text-align: center;
        color: #b5b5b5;
/*        font-size: 17px;*/
        letter-spacing: 0.02em;
        line-height: 1.529411764705882;
        max-width: 570px;
        margin: 0 auto 2px;
    }

    .git-form {
        position: relative;
        max-width: 943px;
        margin: 0 auto;
    }
        .git-form .wpcf7 {
            margin: 0 -8px;
        }
        .git-field {
            display: inline-block;
            vertical-align: top;
            padding: 0 8px;
        }
        .git-field.field-6 {
            width: 50%;
        }
        .git-field.field-12 {
            width: 100%;
            margin-top: 10px;
        }
            .git-field input[type="text"],
            .git-field input[type="email"], 
            .git-field textarea {
                width: 100%;
                height: 73px;
                background: transparent;
                border: none;
                border-bottom: 1px solid #b9b9b9;
                font-size: 14px;
                letter-spacing: 0.2em;
                color: #fff;
                text-transform: uppercase;
                padding: 0 20px;
                display: block;
            }
            .git-field .wpcf7-list-item-label{
                color: #fff;
                cursor: pointer;
            }
            .checkbox-fields{
                display: flex;
                justify-content: center;
            }
            .git-field textarea {
                padding-top: 35px;
                resize: none;
                height: 120px;
            }
            .git-field .wpcf7-form-control-wrap {
                display: block;
            }

        .git-btn {
            position: relative;
            margin: 50px 0 0;
        }
            .git-btn .wpcf7-spinner,
            .git-btn .ajax-loader {
                position: absolute;
                bottom: -30px;
                left: 0;
                right: 0;
                margin: auto;
            }


    #hp-git .wpcf7 form .wpcf7-response-output {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 10px auto 0;
        text-align: center;
        color: #Fff;
        font-size: 14px;
    }

/*footer*/
footer.footer {
    padding: 138px 0 54px;
    background-color: #000;
    z-index: 1;
    position: relative;
}
    .bg-section.bg-footer {
        background-color: #000;
        width: 50%;
    }
        .bg-section.bg-footer:before {
            content: '';
            background: #000;
            opacity: 0.85;
        }
        .bg-section.bg-footer:after {
            content: '';
            background: #000;
            top: 50px;
            left: 80px;
        }

    footer.footer a {
        transition: color var(--default-transition);
    }
        footer.footer a:hover {
            color: var(--secondary);
        }
    .footer-inner {

    }
        .footer-logo {
            font-size: 0;
            width: 364px;
            width: 28.438%;
        }
            .footer-logo img {
                max-width: 100%;
                height: auto;
            }

        .footer-right {
            /*max-width: 812px;*/
            max-width: 63.438%;
            margin-left: auto;
        }
            .footer-contacts {
                margin-bottom: 40px;
            }
                .footer-contacts .flex {
                    flex-flow: column wrap;
                    max-height: 160px;
                }
                    .footer-contact-item {
                        width: 50%;
                        display: flex;
                        font-size: 16px;
                        letter-spacing: 0.1em;
                        line-height: 1.5625;
                        color: #fff;
                        margin-bottom: 24px;
                    }
                        .footer-contact-item span {
                            color: #7a7a7a;
                            padding-right: 6px;
                        }
                        .footer-contact-item strong {
                            font-weight: 400;
                        }
                        .footer-contact-item:last-child > div >  strong{
                            display: block;
                        }
                        .footer-contact-item:last-child > div >  strong:last-child{
                            margin: 24px 0 0;
                        }

            .footernav {
                display: flex;
                flex-flow: row wrap;
                margin-bottom: 44px;
            }
                .footernav li {
                    width: 25%;
                    margin-bottom: 20px;
                }
                    .footernav li a {
                        font-size: 14px;
                        letter-spacing: 0.2em;
                        line-height: 2;
                        color: #fff;
                        text-transform: uppercase;
                    }

            .footer-copyright {
                
            }
                .footer-copyright p {
                    font-size: 13px;
                    letter-spacing: 0.05em;
                    line-height: 2.307692307692308;
                    color: #bebebe;
                }   
                .footer-copyright p:first-of-type {
                    margin-bottom: 29px;
                }
                .footer-copyright p:last-of-type {
                    letter-spacing: 0.08em;
                }
                .footer-icons {
                    color: var(--secondary);
                    font-size: 35px;
                    margin: 27px 0 0;
                }
                    .footer-icons i.ai-font-eho {
                        margin-left: 10px;
                        font-size: 30px;
                    }



/*scroll down*/
.floating-side-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;

    z-index: 10;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    ul.aios-section-nav {
        width: 100%;
        height: 307px;
        background: rgba(255,255,255,0.1);
        position: relative;
        color: #fff;
        transition: background var(--default-transition);
    }
    .nav-active-section-hp-give-back ul.aios-section-nav {
        background: rgba(0, 0, 0, 0.1);
        color: #000;
    }
        ul.aios-section-nav li {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all var(--default-transition);
        }
        ul.aios-section-nav li.nav-active-section + li,
        .nav-active-section-site-footer ul.aios-section-nav li.aios-scroll-id-back-to-top {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }
            ul.aios-section-nav li .scroll-section-title {
                white-space: nowrap;
                font-size: 14px;
                letter-spacing: 0.5em;
                color: inherit;
                text-transform: uppercase;
                position: absolute;
                transform: rotate(-90deg);
                /*text-shadow: 0 0 3px rgba(0,0,0,0.9);*/
            }
            ul.aios-section-nav li a {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                pointer-events: all;
            }

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

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl, 
aside dl, 
#content dir, 
aside dir, 
#content menu, 
aside menu {
    line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    display: block;
    font-weight: 700;
    font-size: inherit;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin: 20px 0 30px;
    font-size: 72px;
    font-size: ;
    line-height: 1;
}

/* 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,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background, 
#pojo-a11y-toolbar .pojo-a11y-btn-grayscale {
    display:none !important;
}
.aios-custom-ihomefinder-results-template #content-full .entry-title{
word-break: break-word;
}
body.pojo-a11y-readable-font *[class*="ai-font-"] {
    font-family: agentimage!important;
}
.post-page-our-listings #inner-page-wrapper .container {
    width: 100%;
    margin:0;
    padding:0;
}
#post-14 .entry-title{
    width: 100%  !important;
    padding: 0 !important;
}

.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,
#ihf-user-registration-modal .modal-dialog {
    left: unset;
}


.grecaptcha-badge {
    z-index: 1000;
}

.ip-container .git-title .section-title small em {
    display: none;
}


body #agents-results .agents-contact {
    justify-content: center;
}


body #agents-single ul.agents-contact li > div {
    padding: 0;
    text-align: center;
    width: auto;
    margin: 0!important;
}

body #agents-single .agents-contact li {
    font-size: 14px;
    letter-spacing: normal;
    text-align: center;
    width: 100%!important;
    height: auto!important;
    margin: 0 0 20px!important;
}

body #agents-single ul.agents-contact li > div > div {
    text-align: left;
    width: auto;
}

body #agents-single .agents-contact li > div > span {
    float: none;
}


body #agents-single .agents-smi {
    margin: 10px auto 20px;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form form {
    position: relative;
}

body .aiosp-wrap .aiosp-ref-\#agents-popup-form .wpcf7-spinner {
    bottom: -19px;
}

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


.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    right: auto;
    width: auto;
    font-size: 11px;
    line-height: 1;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 12px;
    margin: 10px auto 0;
    text-align: center;
}

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


body #listings-details .listings-box {
    background: #000;
    color: #fff;
}

body #listings-details .listings-extras > li > span, body #listings-details .listings-extras > li > strong, body #listings-details .listings-smi h2 {
    color: #fff;
}

body #listings-details .listings-cta.white > li > a {
    color: #000;
}

body #listings-details .listings-cta > li > a:after,
body #listings-details .listings-cta > li > a:before {
    display: none;
}

body #listings-details .listings-hero .thumbnail-loader:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 57%;
    pointer-events: none;
    z-index: 4;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
}

body #listings-details .listings-cta.white > li > a#listings-cta-mortgage:hover, 
body #listings-details .listings-cta.white > li > a#listings-cta-website:hover, 
body #listings-details .listings-cta.white > li > a#listings-cta-brochure:hover {
    background-color: var(--secondary)!important;
    border-color: var(--secondary)!important;
    color: #fff!important;
}

body #listings-details .listings-smi ul > li > a:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

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

body #listings-details .listings-form div.wpcf7-response-output {
    font-size: 11px;
}

body.aios-custom-ihomefinder-details-template .wpcf7-not-valid-tip {
    right: auto!important;
}

body.page-id-9 .entry.entry-content div[data-ihf-client-id="220375"] .mt-10 a{
    white-space: normal;
    padding: 0;
    text-align: left;
    display: block;
    margin-bottom: 9px;
}

#ihf-main-container span.glyphicon.glyphicon-remove-circle {
    color: #fff!important;
}

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


.page-template-template-fullwidth .container{
    width: 100% !important;
}

body #listings-details .listings-price {
    color: #fff;
}

@media only screen and (min-width: 992px) {
    /*header*/
    header.header {
        padding: 2.3125vw 0 0;
    }
        .header-inner {
            max-width: 90.3125vw;
            padding: 0 0.9375vw;
        }
            .header-logo {
                margin-bottom: 2.0625vw;
            }

                .header-menu > li > a {
                    font-size: 0.8125vw;
                    padding: 0.375vw 0.5625vw;
                }
                    .header-menu > li > .sub-menu {
                        padding-top: 0.43750000000000006vw;
                    }
                    .header-menu .sub-menu {
                        min-width: 13.3125vw;
                    }
                    .header-menu .sub-menu-lg > .sub-menu {
                        min-width: 19.125vw;
                    }
                        .header-menu .sub-menu li a {
                            font-size: 0.8750000000000001vw;
                            padding: 0.6875vw 0.625vw 0.625vw;
                        }
            .header-contact span a {
                font-size: 0.9375vw;
                min-width: 0.9375vw;
            }
                .header-contact span a i.ai-font-envelope-f {
                    font-size: 0.8125vw;
                }
            .header-contact span.line {
                width: 1px;
                height: 1.3125vw;
                margin: 0 1.125vw;
            }

            .bm-menu-open {
                width: 3.1875vw;
                height: 3.1875vw;
                margin-left: 3vw;
            }
                .bm-menu-open span {
                    height: 0.1875vw;
                }
                .bm-menu-open span:nth-child(1) {
                    margin-left: 0.75vw;
                    margin-bottom: 0.43750000000000006vw;
                }
                .bm-menu-open span:nth-child(2) {
                    margin-right: 0.75vw;
                }

    /*fixed header*/
    .fixed-header {
        padding: 0.75vw 0;
    }
        .fheader-inner {
            padding: 0 1.25vw 0 1.4375vw;
        }

}
@media only screen and (min-width: 1441px) {
    .container.custom-container {
        width: 1310px;
    }
}

@media only screen and (max-width: 1440px) {
    /*.section-title,
    #content .entry-title,
    #content .archive-title {
        font-size: 60px;
    }*/
    .footer-right {
        max-width: 68%;
    }
}

@media only screen and (max-width: 1280px) {
    .custom-container {
        padding: 0 40px;
    }
    .floating-side-nav {
        width: 35px;
    }

    .section-title,
    #content .entry-title,
    #content .archive-title {
        font-size: 70px;
    }
        .section-title:before {
            top: 0.6611111111111111em;
        }

    .footernav li a {
        letter-spacing: 0.1em;
    }
    .bg-section.bg-footer:after {
        left: 30px;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    .ios-true .bg-section.is-parallax,
    .ipad-true .bg-section.is-parallax,
    .safari-true .bg-section.is-parallax {
        background-attachment: scroll!important;
    }

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

    .footer-right {
        max-width: 68%;
    }
    .footer-contacts .flex {
        max-height: 130px;
    }
    .footer-contact-item {
        font-size: 14px;
    }

    .footernav li a {
        font-size: 12px;
    }

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

    .fixed-header {
        display: none;
    }

    header.header {
        position: relative;
        padding: 52px 0 0;
        z-index: 10;
        background: #000;
    }

    .header-logo {
        margin-bottom: 0;
        padding: 20px 0;
    }

    .header-nav {
        display: none;
    }

    .ss-scroll-down, 
    .floating-side-nav {
        display: none;
    }

    .custom-container {
        padding: 0 15px;
    }

    #hp-git {
        padding: 80px 0;
    }

    footer.footer {
        padding: 60px 0;
    }
        .bg-section.bg-footer {
            display: none;
        }
        .footer-logo {
            width: 100%;
            text-align: center;
            margin-bottom: 30px;
        }
            .footer-logo img {
                width: 300px;
            }

        .footer-right {
            max-width: 100%;
        }
            .footer-contacts .flex {
                max-height: initial;
            }
                
            .footer-contacts {
                margin-bottom: 30px;
            }
                .footer-contact-item {
                    width: 100%;
                    text-align: center;
                    justify-content: center;
                    margin-bottom: 10px;
                    display: block;
                }

            .footernav {
                flex-flow: column;
                align-items: center;
                text-align: center;
                margin-bottom: 20px;
            }
                .footernav li {
                    width: auto;
                    margin-bottom: 10px;
                }

        .footer-copyright {
            text-align: center;
        }
            .footer-icons {
                justify-content: center;
            }


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

    .git-field.checkbox-fields {
        margin-top: 10px;
    }

    body #content #agents-results .agents-button {
        margin-left: 0!important;
        margin-right: auto!important;
    }
    
    body #agents-single .agents-img,
    body #agents-results .agents-img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    

    body .aiosp-wrap .aiosp-ref-\#agents-popup-form .aios-popup-body {
        width: 100%!important;
        max-width: 555px;
        padding: 30px 15px!important;
    }


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

    body #ihf-main-container.ihf-modal-container .modal .modal-dialog {
        width: 100%;
        padding: 0 15px;
        max-width: 767px;
    }

    body #agents-results .agents-contact li {
        font-size: 12px;
        padding: 8px 0;
        letter-spacing: 0.020em;
        display: block;
    }
    
    body #agents-results .agents-contact {
        flex-direction: column;
    }
}

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

    .section-title,
    #content .entry-title,
    #content .archive-title {
        font-size: 40px;
    }
        .section-title strong {
            padding-left: 20px;
        }
        .section-title small {
            margin-bottom: 20px;
            letter-spacing: 1em;
        }
    .git-field.field-6 {
        width: 100%;
    }
    .git-field.field-12 {
        margin-top: 0;
    }

    .git-field.checkbox-fields label.checkbox-label {
        display: block;
        width: 100%;
        position: relative;
        margin-bottom: 3px;
    }
    
    .git-field.checkbox-fields {
        display: block;
        margin-top: 10px;
    }
    
    .git-field.checkbox-fields .wpcf7-list-item {
        margin: 0;
    }
    
    

}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .section-title,
    #content .entry-title,
    #content .archive-title {
        font-size: 35px;
    }
        .section-title small {
            letter-spacing: 0.5em;
        }
        .section-title strong {
            letter-spacing: 0;
        }

        body #agents-results .agents-contact{
            padding: 10px 5px;
        }

        body #agents-results .agents-contact li{
            padding: 8px 0;
            letter-spacing: normal;
            font-size: 10px;
        }
}
