@charset "UTF-8";
:root {
    /** Font default */
    --font-family-default: "Roboto", sans-serif;
    --font-family-title: "Montserrat", sans-serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #1f1f1f;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    --primary: #75abca;
    --secondary: #6c757d;
    --primary-rgb: 117, 171, 202;
    --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 {
        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;
    }
    .ju-around {
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }

.custom-container {
    width: 1430px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/*header*/
header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 33px 0 0;
    transition: all var(--default-transition);
}
    header.header:before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--primary);
        opacity: 0;
        transition: all var(--default-transition);
    }
    .header-logo {

    }
        .header-logo a.site-logo {
            transition: all var(--default-transition);
        }
        a.site-logo {
            font-family: var(--font-family-title);
            font-size: 45px;
            letter-spacing: 0.12em;
            line-height: 1;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }
            a.site-logo span {
                display: block;
            }
            a.site-logo span:first-child:after {
                content: '';
                display: block;
                height: 1px;
                background: #fff;
                margin-right: .25em;
                margin-top: 0.05em;
                margin-bottom: 0.08em;
            }
            a.site-logo span:last-child {
                letter-spacing: 0.2em;
            }

        a.site-logo.is-dark {
            color: #000;
        }
            a.site-logo.is-dark span:first-child:after {
                background: #000;
            }

    .header-right {
        position: relative;
        flex-grow: 1;
    }
        .header-right-default {
            transition: all var(--default-transition);
            transition-property: opacity, visibility, pointer-events;
        }
        .header-contact {

        }
        .header-contact .contact-item {
            margin-left: 40px;
        }
            .header-contact .contact-item span {
                display: block;
                font-size: 16px;
                letter-spacing: 0.075em;
                line-height: 1.625;
                color: #fff;
            }
                .header-contact .contact-item span i {
                    min-width: 35px;
                    display: inline-block;
                }
                .header-contact .contact-item span i.ai-font-envelope {
                    font-size: 12px;
                }
                    .header-contact .contact-item span a {
                        color: #fff;
                        transition: opacity var(--default-transition);
                    }
                        .header-contact .contact-item span a:hover {
                            opacity: 0.7;
                        }

        .header-nav {
            margin-top: 16px;
        }
            #nav {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                flex-flow: row wrap;
                margin-right: 40px;
                font-family: var(--font-family-title);
            }
                #nav > li:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    left: 100%;
                    margin-top: auto!important;
                    margin-bottom: auto!important;
                    width: 1px;
                    background: #fff;
                }
                #nav > li,
                #nav > li:before {
                    margin: 0 16px;
                }
                #nav > li:first-child {
                    margin-left: 0;
                }
                #nav > li:last-child {
                    margin-right: 0;
                }
                #nav > li:last-child:before {
                    display: none;
                }
                #nav > li > a {
                    color: #fff;
                    transition: opacity var(--default-transition);
                }
                    #nav > li:hover > a,
                    #nav > li:focus-within > a {
                        opacity: 0.7;
                    }
                .site-nav > li {
                    display: inline-block;
                    position: relative;
                }
                    .site-nav > li > a {
                        font-size: 16px;
                        letter-spacing: 0.01em;
                        line-height: 1.5;
                        color: #fff;
                        text-transform: uppercase;
                        display: block;
                        padding: 3px 0;
                    }


                    .site-nav li .sub-menu {
                        position: absolute;
                        min-width: 167px;
                        text-align: center;
                        padding: 1px 0;
                        opacity: 0;
                        visibility: hidden;
                        pointer-events: none;
                        transition: all var(--default-transition);
                    }
                    .site-nav li.submenu-lg .sub-menu {
                        min-width: 247px;
                    }
                    .site-nav > li > .sub-menu {
                        top: 100%;
                        left: 50%;
                        transform: translate(-50%, 0);
                        padding: 20px 0 0;
                    }
                        .site-nav li .sub-menu li {
                            background: rgba(var(--primary-rgb), 0.9);
                        }
                        .site-nav li .sub-menu li:first-child {
                            padding-top: 12px;
                        }
                        .site-nav li .sub-menu li:last-child {
                            padding-bottom: 12px;
                        }
                        .site-nav li .sub-menu a {
                            font-size: 14px;
                            letter-spacing: 0.025em;
                            line-height: 1.928571428571429;
                            color: #fff;
                            display: block;
                            padding: 0 5px;
                            text-transform: uppercase;
                            transition: all var(--default-transition);
                        }
                            .site-nav li .sub-menu li:hover > a,
                            .site-nav li .sub-menu li:focus-within > a {
                                opacity: 0.7;
                            }
                        .site-nav li .sub-menu .sub-menu {
                            top: 0;
                            left: 100%;
                        }

                    .site-nav li:hover > .sub-menu,
                    .site-nav li:focus-within > .sub-menu {
                        opacity: 1;
                        visibility: visible;
                        pointer-events: all;
                    }


            .bm-menu-open {
                width: 30px;
                height: 30px;
                background: transparent;
                border: none;
                padding: 0;
                transition: opacity var(--default-transition);
            }
                .bm-menu-open span {
                    display: block;
                    height: 3px;
                    background: #fff;
                }
                .bm-menu-open span:nth-child(2) {
                    margin-top: 5px;
                    margin-bottom: 5px;
                    margin-left: 12px;
                }
                .bm-menu-open span:nth-child(3) {
                    margin-left: 3px;
                }
                .bm-menu-open:hover {
                    opacity: 0.7;
                }


/*fixed header*/
header.header.sticking {
    background: #000;
    padding: 0;
}
    header.header.sticking:before {
        opacity: 1;
    }
    .sticking a.site-logo{
        font-size: 31px;
    }
    .sticking .header-right-default {
        opacity: 0;
        visibility: visible;
        pointer-events: none;   
    }
    .sticking .header-right-fixed {
        opacity: 1;
        visibility: visible;
        pointer-events: all;   
    }
    .header-right-fixed {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all var(--default-transition);
        transition-property: opacity, visibility, pointer-events;
    }
        .fheader-nav {
            border-right: 1px solid #fff;
            margin-right: 43px;
            padding-right: 20px;
        }
            #fnav {

            }
                #fnav > li {
                    margin: 0 9px;
                }
                #fnav > li:first-child {
                    margin-left: 0;
                }
                #fnav > li:last-child {
                    margin-right: 0;
                }
                    #fnav > li > a {
                        color: #Fff;
                        transition: opacity var(--default-transition);
                    }
                        #fnav > li:hover > a,
                        #fnav > li:focus-within > a {
                            opacity: 0.7;
                        }

        .fheader-contact {
            margin-right: 34px;
        }
            .fheader-contact .contact-item {

            }
                .fheader-contact .contact-item span {
                    display: block;
                    font-size: 16px;
                    letter-spacing: 0.075em;
                    line-height: 1.625;
                    color: #fff;
                }
                    .fheader-contact .contact-item span i {
                        min-width: 35px;
                        display: inline-block;
                    }
                    .fheader-contact .contact-item span i.ai-font-envelope {
                        font-size: 12px;
                    }
                    .fheader-contact .contact-item span a {
                        color: #fff;
                        transition: opacity var(--default-transition);
                    }
                        .fheader-contact .contact-item span a:hover {
                            opacity: 0.7;
                        }


/*burger menu*/
body.menu-is-active {
    overflow: hidden!important;
}
.bm-menu-bg.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.bm-menu-wrap.is-active {
    transform: translateX(0);
}
.bm-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s ease;
}
.bm-menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 935px;
    max-width: 100%;
    background-color: #000;
    background-position: center;
    background-size: cover;
    z-index: 9999;
    transform: translateX(100%);
    transition: all .5s ease;
}
    .bm-menu-wrap:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
    }
    .bm-menu-scroller {
        position: relative;
        min-height: 100vh;
        overflow: auto;
        overflow-x: hidden;
        height: 100%;
    }
        .bm-menu-inner {
            position: relative;
            padding: 62px 78px;
        }
            .bm-menu-logo {
                margin-bottom: 62px;
            }   
            .bm-menu-nav {
                
            }   
                #bm_nav {
                    display: flex;
                    flex-flow: column wrap;
                    max-height: 600px;    
                }
                    #bm_nav > li {
                        margin-bottom: 50px;
                    }
                        #bm_nav > li > a {
                            font-size: 24px;
                            letter-spacing: 0.1em;
                            font-weight: 700;
                            text-transform: uppercase;
                            color: #fff;
                            font-family: var(--font-family-title);
                            transition: color var(--default-transition);
                        }
                            #bm_nav > li:hover > a,
                            #bm_nav .sub-menu li a:hover {
                                color: var(--primary);
                            }

                        #bm_nav .sub-menu {
                            margin: 27px 0 0;
                        }
                            #bm_nav .sub-menu li {

                            }
                                #bm_nav .sub-menu li a {
                                    font-size: 16px;
                                    line-height: 1.875;
                                    color: #fff;
                                    text-transform: uppercase;
                                    transition: color var(--default-transition);
                                }

            .bm-menu-close {
                position: absolute;
                width: 59px;
                height: 59px;
                background: transparent;
                border: 1px solid #fff;
                padding: 0;
                font-size: 25px;
                color: #fff;
                top: 84px;
                right: 49px;
                transition: all var(--default-transition);
            }
                .bm-menu-close:hover {
                    background: var(--primary);
                    color: #000;
                    border-color: var(--primary);
                }

a.btn-a,
.btn-a {
    min-width: 214px;
    min-height: 61px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1f1f1f;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    background: transparent;
    position: relative;
    z-index: 1;
    font-family: var(--font-family-title);
    transition: all var(--default-transition);
    transition-property: background, color, border;
    padding: 0 10px;
}
    .btn-a:before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        width: 100px;
        height: 6px;
        background: var(--primary);
        margin: auto;
    }
    .btn-a:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(../images/bg-btn-a.jpg) center/cover no-repeat;
        z-index: -1;
        opacity: 0;
        transition: opacity var(--default-transition);
    }

    a.btn-a:hover,
    .btn-a:hover {
        color: #fff;
    }
        a.btn-a:hover:after,
        .btn-a:hover:after {
            opacity: 1;
        }

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

    a.btn-a.is-white:hover,
    .btn-a.is-white:hover,
    a.btn-a.is-white-text:hover,
    .btn-a.is-white-text:hover {
        color: #fff;
        border-color: var(--primary);
    }
    .btn-a.is-white:after {

    }

a.custom-map-link {
    width: 80px;
    height: 320px;
    background: rgba(0,0,0,0.56);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    color: #fff;
    z-index: 10;
    transition: transform .6s ease, 
                background .3s ease;
}
    a.custom-map-link .icon-arrow-map {
        position: absolute;
        width: 20px;
        height: 22px;
        background: url(../images/icon-map-arrow.png) center/contain no-repeat;
        top: 0;
        left: 13px;
        bottom: 0;
        margin: auto;
    }
    a.custom-map-link i {
        font-size: 22px;
        font-weight: 700;
    }
    a.custom-map-link span {
        position: absolute;
        white-space: nowrap;
        font-family: var(--font-family-title);
        font-size: 22px;
        font-weight: 500;
        color: #fff;
        text-transform: uppercase;
        top: 50%;
        left: 50%;
        transform: translate(-45.2%, -50%) rotate(-90deg);
    }
a.custom-map-link:hover {
    background: #000;
}
a.custom-map-link.active {
    transform: translateX(-100vw);
}

.bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    .bg-section:before,
    .bg-section:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.bg-section.is-parallax {
    background-attachment: fixed;
}

.section-title,
#content .section-title,
#content .archive-title,
#content .entry-title {
    font-size: 40px;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--font-family-title);
}
    .section-title strong,
    #content .section-title strong {
        font-weight: 700;
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 50px;
        color: var(--primary);
        letter-spacing: inherit;
    }
        .section-title.accent-right strong:after {
            content: '';
            flex-grow: 1;
            height: 5px;
            background: var(--primary);
            margin: auto;
            margin-right: .1em;
            margin-left: 0.4em;
        }
    .section-title span {
        letter-spacing: 0;
    }
    .section-title span.is-capitalized {
        text-transform: capitalize;
    }
    .section-title.accent-bottom:after {
        content: '';
        display: block;
        width: 189px;
        height: 5px;
        background: var(--primary);
        margin: 23px auto 0;
    }
    .section-title.is-white,
    .section-title.is-white strong,
    .section-title.is-white span {
        color: #fff;
    }
    .section-title.accent-bottom.is-white:after {
        background: #fff;
    }


.custom-slick-arrow {
    background: transparent;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    font-family: var(--font-family-title);
    font-weight: 600;
    transition: opacity var(--default-transition), color var(--default-transition);
}
    .custom-slick-arrow.slick-prev:before {
        content: '<';
        margin-right: 6px;
    }
    .custom-slick-arrow.slick-next:after {
        content: '>';
        margin-left: 6px;
    }

    .custom-slick-arrow:hover {
        opacity: 0.7;
    }


/*git*/
#hp-git {
    position: relative;
    padding: 84px 0 84px;
}
    .git-box {
        max-width: 1300px;
        margin: 0 auto;
        background: rgba(0,0,0,0.65);
        padding: 110px 80px 111px;
    }
        .git-title {
            margin-bottom: 61px;
        }
            .git-title .section-title.accent-bottom:after {
                margin-top: 33px;
            }
        .git-form {
            border-left: 2px solid #fff;
            border-right: 2px solid #fff;
            position: relative;
            padding: 61px 0 92px;
        }
            .git-form p {
                position: absolute;
                top: -24px;
                left: -2px;
                right: -2px;
                font-size: 16px;
                letter-spacing: 0.05em;
                line-height: 1.5;
                color: #fff;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: var(--font-family-title);
            }
                .git-form p:before,
                .git-form p:after,
                .git-btn:before,
                .git-btn:after {
                    content: '';
                    display: block;
                    top: 0;
                    bottom: 0;
                    margin: auto;
                    height: 2px;
                    background: #fff;
                    flex-grow: 1;
                }
                .git-form p:before {
                    margin-right: 60px;
                }
                .git-form p:after {
                    margin-left: 60px;
                }
                .git-form p span {
                    max-width: 420px;
                }
            .git-form form {
                max-width: 842px;
                margin: 0 auto;
                font-size: 0;
            }
                .git-field.field-6 {
                    width: 50%;
                    margin-bottom: 44px;
                }
                .git-field.field-12 {
                    width: 100%;
                }
                .git-field {
                    display: inline-block;
                    vertical-align: top;
                    padding: 0 10px;
                }
                    .git-field input,
                    .git-field textarea {
                        width: 100%;
                        height: 56px;
                        background: transparent;
                        border: none;
                        border-bottom: 1px solid #fff;
                        font-size: 16px;
                        letter-spacing: 0.2em;
                        line-height: 1.5;
                        color: #fff;
                        text-transform: uppercase;
                        padding: 0 20px;
                    }
                    .git-field textarea {
                        padding-top: 17px;
                    }

            .git-btn {
                position: absolute;
                bottom: -30px;
                left: -2px;
                right: -2px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
                .git-btn .btn-a {
                    min-width: 214px;
                }
                .git-btn .wpcf7-spinner,
                .git-btn .ajax-loader {
                    position: absolute;
                    bottom: -40px;
                    left: 0;
                    right: 0;
                    margin: auto;
                }

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

    .git-form .wpcf7 form .wpcf7-response-output {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        font-size: 14px;
        color: #fff;
        margin: 50px auto 0;
        text-align: center;
        line-height: 1.714285714285714;
    }


/*footer*/
footer.footer {
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    padding: 67px 0 82px;
}
    .bg-section.bg-footer {

    }
        .bg-section.bg-footer:before {
            content: '';
            background: var(--primary);
            opacity: 0.85;
        }

    .footer-top {

    }
        .footer-logo {
            width: 39.5%;
        }
            .footer-logo .line {
                width: 1px;
                height: 110px;
                background: #40332c;
                /*margin: 0 43px 0 35px;*/
                margin: 0 auto;
            }

        .footer-contact {
            width: 52.3%;
            margin-top: 20px;
        }
            .footer-contact .contact-item {
                width: 282px;
            }
                .footer-contact .contact-item h2 {
                    font-size: 24px;
                    font-weight: 700;
                    letter-spacing: 0.075em;
                    line-height: 1;
                    color: #000;
                    text-transform: uppercase;
                    margin-bottom: 15px;
                }
                .footer-contact .contact-item span {
                    display: block;
                    font-size: 16px;
                    letter-spacing: 0.075em;
                    line-height: 1.625;
                    color: #000;
                }
                    .footer-contact .contact-item span i {
                        min-width: 35px;
                        display: inline-block;
                    }
                    .footer-contact .contact-item span i.ai-font-envelope {
                        font-size: 12px;
                    }
                    .footer-contact .contact-item span a {
                        transition: color var(--default-transition);
                    }
                        .footer-contact .contact-item span a:hover {
                            color: #fff;
                        }

    .footer-nav {
        margin: 63px 0 32px;
    }
        .footernav {
            display: flex;    
            align-items: center;
            flex-flow: row wrap;
            justify-content: center;
        }
            .footernav li {
                position: relative;
                border-right: 1px solid #000;
                padding: 3px 26px;
            }
            .footernav li:last-child {
                border-right: 0;
            }
                .footernav li a {
                    font-weight: 500;
                    font-size: 16px;
                    letter-spacing: 0.01em;
                    line-height: 1.5;
                    color: #000;
                    text-transform: uppercase;
                    transition: color var(--default-transition);
                }
                    .footernav li a:hover {
                        color: #fff;
                    }

    .footer-copyright {
        color: #000;
        text-align: center;
        max-width: 1080px;
        margin: 0 auto;
    }
        .footer-copyright p {
            font-size: 15px;
            letter-spacing: 0.075em;
            line-height: 1.466666666666667;
            margin-bottom: 40px;
            font-family: var(--font-family-title);
        }
        .footer-copyright p:last-of-type {
            margin-bottom: 0;
        }
            .footer-copyright p a {
                transition: color var(--default-transition);
            }
                .footer-copyright p a:hover {
                    color: #fff;
                }
        .footer-icons {
            font-size: 25px;
            margin: 30px 0 0;
        }
            .footer-icons i.ai-font-eho {
                font-size: 20px;
                margin-right: 8px;
            }

/* 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) */
/* Styles for category/archive/search/etc subheadings (h2) */

body #pojo-a11y-toolbar {
    bottom:0 !important;
    top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top:auto !important;
    bottom:0 !important;
}
button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

#content .archive-title,
#content .entry-title {
    font-weight: 700;
    margin: 30px 0;
    line-height: 1;
    color: var(--primary);
}

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

body .aios-home-valuation-step-wrap .aios-home-valuation-form p {
    color: #fff;
}

body #aios-home-valuation-wrap {
    background-position: center;
    background-attachment: fixed;
}

.page-id-14 #inner-page-wrapper > .container,
.page-id-15 #inner-page-wrapper > .container,
.page-id-16 #inner-page-wrapper > .container {
    width: 100%;
}
.page-id-15 #inner-page-wrapper #content-full #content,
.page-id-16 #inner-page-wrapper #content-full #content {
    padding: 0;
}
.page-id-14.aios-custom-ihomefinder-results-template #content-full .entry-title,
.page-id-15.aios-custom-ihomefinder-results-template #content-full .entry-title,
.page-id-16.aios-custom-ihomefinder-results-template #content-full .entry-title {
    width: 100%;
    padding: 0;
}

.page-id-30 #content .ai-default-cf7wrap a{
    transition: var(--default-transition);
}
.page-id-30 #content .ai-default-cf7wrap a:hover{
    color: var(--primary);
}

#ihf-main-container.ihf-modal-container .modal .modal-dialog{
    position: absolute;
    left: 0;
    right: 0;
}
.aios-custom-ihomefinder-results-template #content-full .entry-title{
    width: 100% !important;
    padding: 0 !important;
}
.single-aios-listings #listings-details .listings-hero::after{
    content:'';
    position: absolute;
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
    z-index: 6;
}
#listings-details .listings-form textarea{
    padding-right: 55px;
}
#listings-details .listings-form .listings-field .wpcf7-spinner{
    position: absolute;
    top: -40px;
    right: 0;
    left: auto;
    margin: 0;
}
#listings-details .listings-form span.wpcf7-not-valid-tip{
    font-size: 12px;
}

.error404 #content .wpcf7-not-valid-tip{
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
}
.error404 #content form .wpcf7-response-output{
    text-align: center;
}
.page-id-13.page-template-template-fullwidth #content{
    width: 100% !important;
    padding: 0 !important;
}
#listings-details .listings-hero-single .aios-custom-ihomefinder-template-img-loader::after{
    content:'';
    position: absolute;
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 100%);
    z-index: 6;
}

.sitemap-list .page_item.page-item-29{
    display: none;
}

.page-id-17 #inner-page-wrapper .container{
    width: 100%;
}

@media only screen and (min-width: 992px) {

    .custom-container {
        width: min(89.375vw, 1430px);
        padding-left: min(0.938vw, 15px);
        padding-right: min(0.938vw, 15px);
    }

    /*header*/
    header.header {
        padding: min(2.063vw, 33px) 0 0;
    }
        header.header:before {
            height: min(0.313vw, 5px);
        }
        .header-logo a.site-logo {
            transition: all var(--default-transition);
            font-size: min(2.813vw, 45px);
        }

        .header-contact .contact-item {
            margin-left: min(2.5vw, 40px);
        }
            .header-contact .contact-item span {
                font-size: min(1vw, 16px);
            }
                .header-contact .contact-item span i {
                    min-width: min(2.188vw, 35px);
                }
                .header-contact .contact-item span i.ai-font-envelope {
                    font-size: min(0.75vw, 12px);
                }

            .header-nav {
                margin-top: min(1vw, 16px);
            }
                #nav {
                    margin-right: min(2.5vw, 40px);
                }
                    #nav > li,
                    #nav > li:before {
                        margin: 0 min(1vw, 16px);
                    }
                        .site-nav > li > a {
                            font-size: min(1vw, 16px);
                            padding: min(0.188vw, 3px) 0;
                        }

                        .site-nav li .sub-menu {
                            min-width: min(10.438vw, 167px);
                        }
                        .site-nav li.submenu-lg .sub-menu {
                            min-width: min(15.438vw, 247px);
                        }
                        .site-nav > li > .sub-menu {
                            padding: min(1.25vw, 20px) 0 0;
                        }
                            .site-nav li .sub-menu li:first-child {
                                padding-top: min(0.75vw, 12px);
                            }
                            .site-nav li .sub-menu li:last-child {
                                padding-bottom: min(0.75vw, 12px);
                            }
                            .site-nav li .sub-menu a {
                                font-size: min(0.875vw, 14px);
                                padding: 0 min(0.313vw, 5px);
                            }


                .bm-menu-open {
                    width: min(1.875vw, 30px);
                    height: min(1.875vw, 30px);
                }
                    .bm-menu-open span {
                        height: min(0.188vw, 3px);
                    }
                    .bm-menu-open span:nth-child(2) {
                        margin-top: min(0.313vw, 5px);
                        margin-bottom: min(0.313vw, 5px);
                        margin-left: min(0.75vw, 12px);
                    }
                    .bm-menu-open span:nth-child(3) {
                        margin-left: min(0.188vw, 3px);
                    }


    /*fixed header*/
    .sticking a.site-logo{
        font-size: min(1.938vw, 31px);
    }
        .fheader-nav {
            margin-right: min(2.688vw, 43px);
            padding-right: min(1.25vw, 20px);
        }
            #fnav {

            }
                #fnav > li {
                    margin: 0 min(0.563vw, 9px);
                }

        .fheader-contact {
            margin-right: min(2.125vw, 34px);
        }
            .fheader-contact .contact-item span {
                font-size: min(1vw, 16px);
            }
                .fheader-contact .contact-item span i {
                    min-width: min(2.188vw, 35px);
                }
                .fheader-contact .contact-item span i.ai-font-envelope {
                    font-size: min(0.75vw, 12px);
                }


    a.custom-map-link {
        width: min(5vw, 80px);
        height: min(20vw, 320px);
        border-top-left-radius: min(1.25vw, 20px);
        border-bottom-left-radius: min(1.25vw, 20px);
    }
        a.custom-map-link .icon-arrow-map {
            width: min(1.25vw, 20px);
            height: min(1.375vw, 22px);
            left: min(0.813vw, 13px);
        }
        a.custom-map-link i {
            font-size: min(1.375vw, 22px);
        }
        a.custom-map-link span {
            font-size: min(1.375vw, 22px);
        }


    a.btn-a.vw-responsive,
    .btn-a.vw-responsive {
        min-width: min(13.375vw, 214px);
        min-height: min(3.813vw, 61px);
        font-size: min(1vw, 16px);
        border: min(0.125vw, 2px) solid var(--primary);
        padding: 0 min(0.625vw, 10px);
    }


    /*git*/
    #hp-git {
        padding: min(5.25vw, 84px) 0 min(5.25vw, 84px);
    }
        .git-box {
            max-width: min(81.25vw, 1300px);
            padding: min(6.875vw, 110px) min(5vw, 80px) min(6.938vw, 111px);
        }
            .git-title {
                margin-bottom: min(3.813vw, 61px);
            }
                .git-title .section-title.accent-bottom:after {
                    margin-top: min(2.063vw, 33px);
                }
            .git-form {
                border-left: min(0.125vw, 2px) solid #fff;
                border-right: min(0.125vw, 2px) solid #fff;
                padding: min(3.813vw, 61px) 0 min(5.75vw, 92px);
            }
                .git-form p {
                    top: min(-1.5vw, -24px);
                    left: min(-0.125vw, -2px);
                    right: min(-0.125vw, -2px);
                    font-size: min(1vw, 16px);
                }
                    .git-form p:before,
                    .git-form p:after,
                    .git-btn:before,
                    .git-btn:after {
                        height: min(0.125vw, 2px);
                    }
                    .git-form p:before {
                        margin-right: min(3.75vw, 60px);
                    }
                    .git-form p:after {
                        margin-left: min(3.75vw, 60px);
                    }
                    .git-form p span {
                        max-width: min(26.25vw, 420px);
                    }
                .git-form form {
                    max-width: min(52.625vw, 842px);
                }
                    .git-field.field-6 {
                        margin-bottom: min(2.75vw, 44px);
                    }
                    .git-field {
                        padding: 0 min(0.625vw, 10px);
                    }
                        .git-field input,
                        .git-field textarea {
                            height: min(3.5vw, 56px);
                            font-size: min(1vw, 16px);
                            padding: 0 min(1.25vw, 20px);
                        }
                        .git-field textarea {
                            padding-top: min(1.063vw, 17px);
                        }

                .git-btn {
                    bottom: min(-1.875vw, -30px);
                    left: min(-0.125vw, -2px);
                    right: min(-0.125vw, -2px);
                }
                    .git-btn .btn-a {
                        min-width: min(13.375vw, 214px);
                    }
                    .git-btn .wpcf7-spinner,
                    .git-btn .ajax-loader {
                        bottom: min(-2.5vw, -40px);
                    }

        .use-floating-validation-tip .wpcf7-not-valid-tip {
            font-size: min(0.75vw, 12px);
        }

        .git-form .wpcf7 form .wpcf7-response-output {
            font-size: min(0.875vw, 14px);
            margin: min(3.125vw, 50px) auto 0;
        }


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

}

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

}

@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) {
    .mobile-true .bg-section.is-parallax,
    .ipad-true .bg-section.is-parallax,
    .ios-true .bg-section.is-parallax,
    .mobile-true #aios-home-valuation-wrap,
    .ipad-true #aios-home-valuation-wrap,
    .ios-true #aios-home-valuation-wrap {
        background-attachment: fixed;
    }

    .footer-logo a.site-logo {
        font-size: 35px;
    }

    .footer-contact {
        width: 56%;
    }

    .footer-contact .contact-item {
        max-width: 50%;
    }

    .footer-contact .contact-item span {
        font-size: 14px;
    }

    .footernav li {
        padding: 3px 10px;
    }
}

/* 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,
    header.header.sticking {
        padding: 52px 0 0;
        position: relative;
        background: var(--primary);
        z-index: 1;
    }
        header.header:before,
        header.header.sticking:before {
            opacity: 1;
            display: none;
        }
        
        .header-logo {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }
            .sticking a.site-logo,
            .header-logo a.site-logo {
                font-size: 45px;
            }

        .header-right {
            display: none;
        }

    a.custom-map-link {
        width: 50px;
        height: 200px;
    }
        a.custom-map-link span {
            font-size: 13px;
        }
        a.custom-map-link .icon-arrow-map {
            width: 13px;
            height: 13px;
            left: 9px;
        }
        
    .section-title,
    #content .section-title,
    #content .archive-title, 
    #content .entry-title {
        font-size: 30px;
    }
        .section-title strong,
        #content .section-title strong {
            font-size: 40px;
        }

        .section-title.accent-right strong:after {
            display: none;
        }


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

        .git-box {
            max-width: 720px;
            margin: 0 auto;
            padding: 60px 5% 100px;
        }

            .git-form p {
                position: relative;
                top: 0;
                left: 0;
                right: 0;
                margin-bottom: 30px;
            }

            .git-form p:before, .git-form p:after {
                display: none;
            }

        .git-form {
            border-top: 2px solid #fff;
            padding: 50px 7% 70px;
        }

        .git-field.field-6 {
            width: 100%;
            margin-bottom: 10px;
        }

        .git-form .wpcf7 form .wpcf7-response-output {
            font-size: 12px;
            line-height: 1;
        }

    footer.footer {
        padding: 60px 0 80px;
    }

        .footer-top {
            flex-flow: column;
            align-items: center;
        }
            .footer-logo {
                width: 100%;
            }
                .footer-logo .flex {
                    flex-flow: column;
                }
                    .footer-logo .line {
                        display: none;
                    }
                    .footer-logo a.site-logo {
                        font-size: 45px;
                        margin-bottom: 20px;
                    }

            .footer-contact {
                width: 100%;
                margin-top: 50px;
            }
                .footer-contact .contact-item {
                    width: 100%;
                    max-width: 100%;
                    text-align: center;
                    margin-bottom: 30px;
                }
                .footer-contact .contact-item:last-child {
                    margin-bottom: 0;
                }

        .footernav {
            flex-flow: column;
        }
            .footernav li {
                border: none;
            }


    #pojo-a11y-toolbar {
         display:none;
    }
    #agents-single .agents-img,
    #agents-results .agents-img{
        max-width: 400px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    #agents-single .agents-testi-arrow.agents-testi-prev{
        left: 40%;
    }
    #agents-single .agents-testi-arrow.agents-testi-next{
        right: 40%;
    }
}

/* 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%;
    }
    #listings-results .listings-sort .listings-filter-tab {
        flex-flow: row wrap !important;
        align-items: center;
    }
    #listings-results .listings-sort .listings-filter-tab a {
        width: 100% !important;
        max-width: 350px !important;
        margin-bottom: 10px !important;
    } 
}

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