/* Global v2 */
/** Font default */
:root {
	 --font-family-default: 'Montserrat', sans-serif;
	 --font-family-title: 'Prata', serif;
	 --font-size-default: 14px;
	 --font-size-title: 30px;
	 --font-color-default: #000;
	 --font-color-title: #1b285d;
	/** Use for input, button, and any other element */
	 --primary: #1e336b;
     --primary-gradient: linear-gradient(90deg,rgba(30, 51, 107, 1) 0%, rgba(24, 148, 189, 1) 100%);
	 --secondary: #1893bc;
	 --success: #28a745;
	 --info: #17a2b8;
	 --warning: #ffc107;
	 --danger: #dc3545;
	 --light: #f8f9fa;
	 --dark: #343a40;
	 --default-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Global */
 body {
	 font-family: var(--font-family-default);
	 font-size: var(--font-size-default);
	 background: #fff;
	 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;
	 */
}

.aios-mobile-header-wrapper-breakpoint-992 {
    display: none!important;
}

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

/* Section Title */
.section-title-v2,
#content .section-title-v2,
#content .entry-title,
#content .archive-title {
    font-size: var(--font-size-title);
    font-family: var(--font-family-default);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 0.93333333;
    text-transform: uppercase;
    color: var(--font-color-title);
}
.section-title-v2 strong,
#content .section-title-v2 strong,
#content .entry-title strong,
#content .archive-title strong {
    font-weight: 500;
}
.section-title-v2 small,
#content .section-title-v2 small,
#content .entry-title small,
#content .archive-title small {
    display: block;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #696969;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title-v2.is-white,
#content .section-title-v2.is-white,
#content .entry-title.is-white,
#content .archive-title.is-white {
    color: #fff;
}
.section-title-v2.is-white small,
#content .section-title-v2.is-white small,
#content .entry-title.is-white small,
#content .archive-title.is-white small {
    color: #fff;
}

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

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

a.btn-a,
.btn-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 188px;
    min-height: 55px;
    border: 1px solid rgba(35,31,32,0.6);
    position: relative;
    z-index: 1;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--font-color-title);
    border-bottom-right-radius: 30px;
    font-family: var(--font-family-title);
    padding: 10px 20px;
    background: transparent;
    transition: all var(--default-transition);
    transition-property: color, background, border, opacity;
}
    .btn-a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: inherit;
        margin: 2px;
        background: var(--primary-gradient);
        z-index: -1;
        opacity: 0;
        transition: all var(--default-transition);
    }
    .btn-a i.ai-font-play-button-a {
        width: 35px;
        aspect-ratio: 35 / 35;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        border: 2px solid var(--font-color-title);
        border-radius: 50%;
        color: #fff;
        position: relative;
        letter-spacing: 0;
        font-size: 7px;
        transition: all var(--default-transition);
    }
        .btn-a i.ai-font-play-button-a:after {
            content: '';
            z-index: -1;
            border-radius: 50%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: 3px;
            background: var(--primary-gradient);
            position: absolute;
            transition: all var(--default-transition);
        }
        .btn-a:hover i.ai-font-play-button-a {
            border-color: #fff;
            color: var(--primary);
        }
            .btn-a:hover i.ai-font-play-button-a:after {
                filter: brightness(0) invert(1);
            }
    .btn-a i.ai-font-arrow-j {
        width: 13px;
        height: 9px;
        padding: 0 2px;
        overflow: hidden;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-size: 9px;
        color: inherit;
        transform: rotate(-45deg);
        font-style: normal!important;
        letter-spacing: 0;
        top: -2px;
        transition: transform var(--default-transition);
    }
    .btn-a:hover {
        color: #fff;
    }
    .btn-a:hover:before {
        opacity: 1;
    }
    .btn-a:hover i.ai-font-arrow-j {
        transform: rotate(0deg);
    }

a.btn-a.is-white,
.btn-a.is-white {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
}

.custom-slick-arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    background: #fff;
    border: none;
    z-index: 2;
    color: var(--font-color-title);
    opacity: 1;
    transition: all var(--default-transition);
    transition-property: color, background, border;
}
    .custom-slick-arrow:before {
        content: '';
        background: var(--primary-gradient);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        z-index: -1;
        transition: all var(--default-transition);
    }
    .custom-slick-arrow i {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin: 0 auto;
        width: 32px;
        height: 11px;
        font-size: 11px;
        padding: 0 2px;
        overflow: hidden;
    }
    .custom-slick-arrow:hover {
        color: #fff;
        opacity: 1;
    }
    .custom-slick-arrow:hover:before {
        opacity: 1;
    }
    .custom-slick-arrow.slick-prev i {
        transform: rotate(180deg);
    }

/* HEADER */
.header-v2 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 101;
    background: #fff;
    padding: 15px 0;
}
    .header-v2__inner {
        position: relative;
        padding-left: 15px;
        padding-right: 15px;
        gap: 0;
    }
    .header-v2__logo {
        /* width: 275px; */
        width: 150px;
        background: #fff;
        padding: 27px 30px 23px;
        margin-bottom: 0;
        margin-right: auto;
        padding: 0;
    }
        .header-v2__logo a {
            display: block;
        }
            .header-v2__logo a img {
                display: block;
                width: 100%;
                height: auto;
            }
    .header-v2__nav {
        margin-left: auto;
        display: none;
    }
        #nav-v2 {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 31px;
        }
            #nav-v2 > li {
                position: relative;
            }
                #nav-v2 > li > a {
                    font-size: 13px;
                    letter-spacing: 0.025em;
                    color: #231f20;
                    text-transform: uppercase;
                    display: block;
                    position: relative;
                    padding: 15px 0 12px;
                }
                    #nav-v2 > li > a:before {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        right: 0;
                        height: 1px;
                        background: #103148;
                        transform: scaleX(0);
                        transform-origin: right;
                        transition: transform var(--default-transition);
                    }
                    #nav-v2 > li > a:hover:before {
                        transform: scaleX(1);
                        transform-origin: left;
                    }

            #nav-v2 .sub-menu {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                min-width: 126px;
                padding-top: 15px;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: all var(--default-transition);
            }
                #nav-v2 li:hover > .sub-menu,
                #nav-v2 li:focus-within > .sub-menu {
                    opacity: 1;
                    visibility: visible;
                    pointer-events: all;
                }
                #nav-v2 .sub-menu li {
                    position: relative;
                    padding-bottom: 1px;
                }
                    #nav-v2 .sub-menu li a {
                        display: block;
                        text-align: center;
                        white-space: nowrap;
                        font-size: 11px;
                        letter-spacing: 0.075em;
                        line-height: 1;
                        color: #231f20;
                        padding: 12px 15px;
                        text-transform: uppercase;
                        z-index: 1;
                        background-color: #fff;
                        position: relative;
                        transition: color var(--default-transition);
                    }
                    #nav-v2 .sub-menu li a:before {
                        content: '';
                        position: absolute;
                        top: -1px;
                        left: -1px;
                        right: -1px;
                        bottom: -1px;
                        z-index: -1;
                        background: var(--primary);
                        background: var(--primary-gradient);
                        transition: opacity var(--default-transition);
                        opacity: 0;
                    }
                    #nav-v2 .sub-menu li:hover > a,
                    #nav-v2 .sub-menu li:focus-within > a {
                        color: #fff;
                    }
                    #nav-v2 .sub-menu li:hover > a:before,
                    #nav-v2 .sub-menu li:focus-within > a:before {
                        opacity: 1;
                    }

                #nav-v2 .sub-menu .sub-menu {
                    top: 0;
                    left: 100%;
                    padding-top: 0;
                    padding-left: 1px;
                }
    .header-v2__btn {
        width: 50px;
        border: 1px solid #e7e7e7;
    }
        .bm-open {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 48px;
            background: transparent;
            border: none;
            position: relative;
            z-index: 1;
        }
            .bm-open:before {
                content: '';
                position: absolute;
                top: -1px;
                left: -1px;
                right: -1px;
                bottom: -1px;
                z-index: -1;
                background: var(--primary);
                background: var(--primary-gradient);
                transition: opacity var(--default-transition);
                opacity: 0;
                pointer-events: none;
            }
            .bm-open:hover:before,
            .bm-open.active:before {
                opacity: 1;
            }
            .bm-open span {
                height: 1px;
                background: #000;
                position: absolute;
                transition: all var(--default-transition);
            }
            .bm-open span:first-child {
                width: 27px;
                margin-bottom: 5px;
            }
            .bm-open span:last-child {
                width: 18px;
                margin-left: 9px;
                margin-top: 5px;
            }
            .bm-open.active span:first-child {
                margin-bottom: 0;
                width: 27px;
                transform: rotate(45deg);
            }
            .bm-open.active span:last-child {
                margin: 0;
                width: 27px;
                transform: rotate(-45deg);
            }
            .bm-open.active span {
                background: #fff;
                height: 3px;
            }
            .bm-open:hover span {
                background: #fff;
            }

/* Burger Menu */
.menu-active .bm-menu-v2 {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
    .menu-active .bm-menu-v2 .bm-menu-v2__inner {
        transform: translateX(0);
        opacity: 1;
        transition-delay: 0.2s;
    }
.bm-menu-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.5s ease;
}
    .bm-menu-v2__inner {
        height: 100%;
        background: rgba(27,40,93,0.92);
        transform: translateX(-20%);
        opacity: 0;
        transition: all 0.5s ease;
    }
    .bm-menu-v2_scroller {
        max-height: 100%;
        overflow: auto;
    }
    .bm-menu-v2__content {
        width: 100%;
        max-width: 1250px;
        /* padding: 127px 15px 0; */
        padding: 94px 15px 40px;
        margin: 0 auto;
    }
        #bm_nav {
            /* width: 825px; */
            width: 100%;
            display: flex;
            flex-flow: column;
            text-align: center;
        }
            #bm_nav > li {
                margin-bottom: 33px;
            }
                #bm_nav > li > a {
                    font-size: 25px;
                    letter-spacing: 0.05em;
                    line-height: 1;
                    color: #fff;
                    text-transform: uppercase;
                }
            #bm_nav .sub-menu {
                padding: 7px 0 0 20px;
            }
                #bm_nav .sub-menu li {

                }
                    #bm_nav .sub-menu li a {
                        font-size: 10px;
                        font-family: var(--font-family-title);
                        letter-spacing: 0.3em;
                        line-height: 28px;
                        color: #fff;
                        text-transform: uppercase;
                        font-weight: 600;
                    }
        .bm-menu-v2__contact {
            /* width: 393px; */
            width: 100%;
            padding: 33px 0 0;
        }
            .bm-menu-v2__logo {
                width: 100%;
                max-width: 393px;
                margin: 0 auto 48px;
            }
                .bm-menu-v2__logo a {
                    display: block;
                }
                    .bm-menu-v2__logo a img {
                        display: block;
                        width: 100%;
                        height: auto;
                    }
            .bm-menu-v2__links {
                padding: 0 13px;
                max-width: 360px;
                margin: 0 auto;
            }
                .bm-menu-v2__links > div {

                }
                .bm-menu-v2__links > div:first-child {
                    margin-bottom: 42px;
                }
                    .bm-menu-v2__links h2 {
                        font-size: 20px;
                        letter-spacing: 0.25em;
                        line-height: 1;
                        text-transform: uppercase;
                        font-weight: 300;
                        color: #fff;
                        margin-bottom: 21px;
                    }
                    .bm-menu-v2__links ul {

                    }
                        .bm-menu-v2__links ul li {
                            display: flex;
                            color: #fff;
                            gap: 18px;
                            margin-bottom: 10px;
                        }
                            .bm-menu-v2__links ul li i {
                                min-width: 20px;
                                font-size: 15px;
                                top: 4px;
                            }
                            .bm-menu-v2__links ul li i.ai-font-location-c {
                                font-size: 20px;
                                top: 3px;
                            }
                            .bm-menu-v2__links ul li i.ai-font-envelope-f {
                                font-size: 12px;
                            }
                            .bm-menu-v2__links ul li span {
                                font-size: 13px;
                                letter-spacing: 0.025em;
                                line-height: 22px;
                            }
                                .bm-menu-v2__links ul li a {
                                    transition: color var(--default-transition);
                                    transition-property: color, opacity;
                                }
                                .bm-menu-v2__links ul li a:hover {
                                    opacity: 0.6;
                                    color: inherit;
                                }
                        .bm-menu-v2__links ul li.smi {
                            gap: 36px;
                        }
                            .bm-menu-v2__links ul li.smi a {
                                font-size: 20px;
                            }
                                .bm-menu-v2__links ul li.smi a:hover {
                                    opacity: 0.6;
                                }

/* Floating SMI */
.floating-smi-v2 {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    pointer-events: none;
}
    .floating-smi-v2__inner {

    }
    .floating-smi-v2 ul {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        gap: 29px;
    }
        .floating-smi-v2 ul li {

        }
            .menu-active .floating-smi-v2 ul li a {
                color: #fff;
            }
            .menu-active .floating-smi-v2 ul li.line {
                background: #fff;
            }
            .floating-smi-v2 ul li a {
                font-size: 16px;
                color: var(--primary);
                pointer-events: all;
                transition: all var(--default-transition);
                transition-property: color, opacity;
            }
                .floating-smi-v2 ul li a:hover {
                    opacity: 0.6;
                }
            .floating-smi-v2 ul li a i.ai-font-envelope-f {
                font-size: 8px;
            }
            .floating-smi-v2 ul li a i.ai-font-phone {
                font-size: 13px;
            }
        .floating-smi-v2 ul li.line {
            width: 1px;
            height: 60px;
            margin: 0 auto;
            background: #aeaeae;
            transition: background var(--default-transition);
        }
.floating-contact-v2 {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 70px;
    z-index: 9999;
}
    .floating-contact-v2__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 49px;
        height: 49px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-size: 18px;
        border: none;
        margin: 0 auto;
        transition: all var(--default-transition);
        transition-property: color, background;
    }
        .floating-contact-v2__btn i.icon-leadcapture {
            width: 25px;
            height: 27px;
            background: url(../images/home-v2/icon-leadcapture.png) center/contain no-repeat;
            filter: brightness(0) invert(1);
            transition: all var(--default-transition);
            transition-property: filter, opacity;
        }
        .floating-contact-v2__btn:hover {
            background: #fff;
            color: var(--primary);
        }
        .floating-contact-v2__btn:hover i.icon-leadcapture {
            filter: none;
        }
        .floating-contact-v2__btn i.ai-font-close-b,
        .floating-contact-v2.active .floating-contact-v2__btn i.icon-leadcapture {
            display: none;
        }
        .floating-contact-v2.active .floating-contact-v2__btn i.ai-font-close-b {
            display: block;
        }
    .floating-contact-v2.active .floating-contact-v2__window {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .floating-contact-v2__window {
        position: absolute;
        width: 482px;
        right: 23px;
        bottom: 90%;
        background: #fff;
        padding: 46px 50px 55px;
        border-radius: 6px;
        transform: translateX(100px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all var(--default-transition);
    }
        .floating-contact-v2__window .section-title-v2 {
            font-size: 45px;
            margin-bottom: 18px;
        }
            .floating-contact-v2__window .section-title-v2 small {
                font-size: 13px;
                margin-bottom: 9px;
            }

        .floating-contact-v2__window .wpcf7 {
            position: relative;
        }
        .floating-contact__field {
            position: relative;
            display: block;
            margin-bottom: 13px;
        }
            .floating-contact__field span {
                display: block;
            }
            .floating-contact__field input,
            .floating-contact__field textarea {
                display: block;
                width: 100%;
                height: 51px;
                background: transparent;
                border: none;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.3em;
                font-family: var(--font-family-title);
                color: #000;
                padding: 0;
                border-bottom: 1px solid #c0c0c0;
                text-transform: uppercase;
            }
            .floating-contact__field textarea {
                padding-right: 40px;
                padding-top: 24px;
                height: 107px;
            }
        .floating-contact__field-group {
            position: relative;
        }
            .floating-contact__field-group .wpcf7-submit {
                position: absolute;
                bottom: 16px;
                right: 13px;
                font-size: 18px;
                color: var(--primary);
                padding: 0;
                background: transparent;
                border: none;
                transition: opacity var(--default-transition);
            }
            .floating-contact__field-group .wpcf7-submit:hover {
                opacity: 0.7;
            }
            .floating-contact__field-group .floating-contact__field {
                margin-bottom: 0;
            }
            .floating-contact-v2__window .wpcf7 form .wpcf7-response-output {
                margin: 10px 0 0;
                text-align: center;
                font-size: 11px;
            }

/* Get in Touch */
#hp-git {
    position: relative;
}
    .hp-git__inner {
        position: relative;
        padding: 60px 15px;
    }
        .hp-git__inner .bg-section {
            width: 100%;
            background-color: #000;
        }
        .hp-git__form {
            /* width: 50%; */
            width: 720px;
            max-width: 100%;
            margin: 0 auto;
            background: rgba(255,255,255,0.87);
            padding: 60px 5%;
            margin-left: auto;
            position: relative;
            box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.05);
            z-index: 1;
        }
            .hp-git__form:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                width: 50%;
                background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 100%);
                z-index: -1;
                display: none;
            }
            .git-logo {
                position: absolute;
                top: 0;
                bottom: 0;
                left: -80px;
                width: 158px;
                height: 158px;
                padding: 5px;
                background: #fff;
                margin: auto;
                border-radius: 50%;
                display: none;
            }
                .git-logo a {
                    display: block;
                    border-radius: 50%;
                    overflow: hidden;
                }
                .git-logo img {
                    display: block;
                    width: 100%;
                    height: auto;
                }
            .git-title {
                display: flex;
                justify-content: center;
                text-align: left;
                margin-bottom: 20px;
            }
            .hp-git__form .wpcf7 {
                max-width: 620px;
                margin: 0 auto;
                position: relative;
            }
                .hp-git__form .git-fields {
                    display: flex;
                    flex-flow: row wrap;
                }
                    .hp-git__form .git-field {
                        padding: 0 10px;
                        margin-bottom: 10px;
                    }
                    .hp-git__form .git-field.field-12 {
                        width: 100%;
                    }
                    .hp-git__form .git-field.field-6 {
                        width: 50%;
                    }
                    .hp-git__form .git-field span {
                        display: block;
                    }
                        .hp-git__form .git-field input,
                        .hp-git__form .git-field textarea {
                            display: block;
                            width: 100%;
                            height: 53px;
                            font-size: 11px;
                            font-weight: 600;
                            font-family: var(--font-family-title);
                            text-transform: uppercase;
                            color: #000;
                            background: transparent;
                            border: none;
                            border-bottom: 1px solid #c0c0c0;
                            padding: 0;
                            letter-spacing: 0.3em;
                        }
                        .hp-git__form .git-field textarea {
                            padding-top: 23px;
                            height: 94px;
                            resize: none;
                        }
                    .hp-git__form .git-captcha {
                        width: 100%;
                    }
                        .hp-git__form .git-captcha .wpcf7-form-control-wrap, 
                        .hp-git__form .git-captcha .wpcf7-form-control {
                            display: block;
                        }
                        .hp-git__form .git-captcha .captcha-image {
                            margin: 0 auto;
                            display: block;
                            border: none;
                            padding: 33px 0 0;
                            font-size: 12px;
                        }
                            .hp-git__form .git-captcha .captcha-image .cf7ic_instructions span {
                                color: red;
                            }
                            .hp-git__form .git-captcha .captcha-image svg {
                                width: 50px;
                                height: auto;
                            }
                    .hp-git__form .git-btn {
                        margin-top: 32px;
                        text-align: center;
                        width: 100%;
                        position: relative;
                    }
                        .hp-git__form .git-btn .btn-a {
                            min-width: 214px;
                        }
                
                .hp-git__form .wpcf7 form .wpcf7-response-output {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    margin: 10px auto 0;
                    text-align: center;
                    font-size: 12px;
                }

/* Footer */
.footer-v2 {
    background: #fff;
    position: relative;
    padding: 97px 15px 80px;
}
    .footer-v2__inner {
        position: relative;
        max-width: 1182px;
        margin: 0 auto;
    }
        .footer-v2__top {
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            padding: 0 20px;
        }
            .footer-v2__subtitle {
                font-size: 25px;
                letter-spacing: 0.15em;
                color: var(--primary);
                text-transform: uppercase;
                font-weight: 400;
                margin: 4px 0 14px;
                text-align: center;
            }
            .footer-v2__logo {
                width: 377px;
                max-width: 100%;
                margin: 0 auto;
            }
                .footer-v2__logo a {
                    display: block;
                }
                    .footer-v2__logo a img {
                        display: block;
                        width: 100%;
                        height: auto;
                    }
            .footer-v2__contact {
                /* width: 300px; */
                width: 100%;
                margin: 40px 0;
            }
                .footer-v2__contact-info {
                    display: flex;
                    flex-flow: column;
                    justify-content: center;
                    align-items: center;
                }
                    .footer-v2__contact-info li {
                        display: flex;
                        color: #000;
                        gap: 18px;
                        margin-bottom: 8px;
                    }
                        .footer-v2__contact-info li i {
                            min-width: 20px;
                            font-size: 15px;
                            top: 4px;
                            color: var(--primary);
                        }
                        .footer-v2__contact-info li i.ai-font-location-c {
                            font-size: 20px;
                            top: 3px;
                        }
                        .footer-v2__contact-info li i.ai-font-envelope-f {
                            font-size: 12px;
                        }
                        .footer-v2__contact-info li span {
                            font-size: 13px;
                            letter-spacing: 0.05em;
                            line-height: 1.53846154;
                        }
                            .footer-v2__contact-info li a {
                                transition: color var(--default-transition);
                                transition-property: color, opacity;
                            }
                            .footer-v2__contact-info li a:hover {
                                opacity: 0.6;
                                color: inherit;
                            }
                    .footer-v2__contact-info li.smi {
                        gap: 10px;
                    }
                        .footer-v2__contact-info li.smi a {
                            font-size: 20px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 33px;
                            height: 33px;
                            border-radius: 50%;
                            border: 1px solid #bababa;
                            font-size: 14px;
                            color: var(--primary);
                            transition: all var(--default-transition);
                        }
                            .footer-v2__contact-info li.smi a:hover {
                                opacity: 1;
                                background: var(--primary);
                                border-color: var(--primary);
                                color: #fff;
                            }
            .footer-v2__sitemap {
                width: 100%;
            }
                .footer-v2__sitemap ul {
                    display: flex;
                    flex-flow: column wrap;
                    max-height: initial;
                    align-content: center;
                    text-align: center;
                }
                    .footer-v2__sitemap ul li {

                    }
                        .footer-v2__sitemap ul li a {
                            font-size: 13px;
                            letter-spacing: 0.05em;
                            line-height: 2.23076923;
                            color: #000;
                            text-transform: uppercase;
                            transition: color var(--default-transition);
                            transition-property: color, opacity;
                        }
                            .footer-v2__sitemap ul li a:hover {
                                opacity: 0.6;
                                color: inherit;
                            }
        .footer-v2__bottom {
            border-top: 1px solid #dddcd8;
            margin: 32px 0 0;
        }
            .footer-v2__disclaimer {
                text-align: center;
                padding: 25px 0 0;
            }
                .footer-v2__disclaimer p {
                    font-size: 11px;
                    letter-spacing: 0.05em;
                    line-height: 23px;
                    color: #4e4e4e;
                }
                    .footer-v2__disclaimer p a {
                        transition: all var(--default-transition);
                    }
                    .footer-v2__disclaimer p a:hover {
                        color: var(--primary);
                        opacity: 0.6;
                    }
                .footer-v2__disclaimer p:first-of-type {
                    margin-bottom: 25px;
                }
                .footer-v2__disclaimer p:last-of-type {
                    font-size: 14px;
                    line-height: 22px;
                    letter-spacing: 0.1em;
                }
                    .footer-v2__disclaimer p:last-of-type span,
                    .footer-v2__disclaimer p:last-of-type a[style] {
                        color: var(--primary);
                        font-weight: 700;
                    }

                .footer-v2__icons {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 37px;
                    color: var(--primary);
                    gap: 13px;
                    margin: 25px 0 0;
                }
                    .footer-v2__icons i.ai-font-eho {
                        font-size: 27px;
                    }

    .footer-v2 .scroll-top {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        z-index: 1;
    }
        .footer-v2 .scroll-top i {
            display: flex;
            width: 19px;
            height: 15px;
            font-size: 15px;
            justify-content: flex-end;
            padding: 0 1px;
            transform: rotate(-90deg);
            overflow: hidden;
            color: var(--primary);
            transition: color var(--default-transition);
        }
        .footer-v2 .scroll-top:before {
            content: '';
            position: absolute;
            background: var(--primary-gradient);
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: all var(--default-transition);
        }
        .footer-v2 .scroll-top:hover:before {
            opacity: 1;
        }
        .footer-v2 .scroll-top:hover i {
            color: #fff;
        }

#inner-page-wrapper {
    background-image: none;
}

/* Mobile */
@media screen and (min-width: 600px) {
    :root {
        --font-size-title: 40px;
    }
}

/* Tablet Portrait */
@media screen and (min-width: 744px) {
    :root {
        --font-size-title: 50px;
    }
}

/* Tablet Landscape */
@media screen and (min-width: 1024px) {
    :root {
        --font-size-title: 60px;
    }

    .header-v2 {
        padding: 0;
    }
        .header-v2__inner {
            /* padding-left: 70px;
            gap: 45px; */
            padding-left: min(4.375vw, 70px);
            padding-right: 0;
            gap: min(2.8125vw, 45px);
            flex-wrap: nowrap;
        }
        .header-v2__logo {
            width: min(17.1875vw, 275px);
            margin-bottom: min(-2.875vw, -46px);
            margin-right: 0;
            padding: min(1.6875vw, 27px) min(1.875vw, 30px) min(1.4375vw, 23px);
            transition: all var(--default-transition);
        }
            .header-v2__logo a {
                margin: 0 auto;
                width: 100%;
                transition: all var(--default-transition);
            }
        .header-v2.sticking .header-v2__logo {
            margin-bottom: 0;
            padding-top: 0;
            padding-bottom: 0;
        }
            .header-v2.sticking .header-v2__logo a {
                width: min(11.0625vw, 177px);
            }
        .header-v2__nav {
            display: block;
        }
        #nav-v2 {
            gap: min(1.375vw, 22px);
        }
        #nav-v2 > li > a {
            padding: min(0.9375vw, 15px) 0 min(0.75vw, 12px);
            font-size: min(0.8125vw, 13px);
        }
        #nav-v2 .sub-menu li a {
            font-size: min(0.6875vw, 11px);
            padding: min(0.75vw, 12px) min(0.9375vw, 15px);
        }

    .header-v2__btn {
        width: min(4.375vw, 70px);
    }
        .bm-open {
            height: min(4.25vw, 68px);
        }
            .bm-open span {

            }

    /* Burger Menu */
    .bm-menu-v2 {
        padding: min(4.375vw, 70px) min(4.375vw, 70px) 0 0;
    }
            #bm_nav {
                width: 67.7867%;
                display: flex;
                flex-flow: column wrap;
                max-height: 575px;
                text-align: left;
            }
                #bm_nav > li {
                    margin-bottom: 33px;
                }
                    #bm_nav > li > a {
                        font-size: 25px;
                    }
                #bm_nav .sub-menu {
                    padding: 7px 0 0 20px;
                }
                    #bm_nav .sub-menu li a {
                        font-size: 10px;
                        line-height: 28px;
                    }
            .bm-menu-v2__contact {
                /* width: 393px; */
                width: 32.2133%;
                padding: 33px 0 0;
            }
                .bm-menu-v2__logo {
                    max-width: 393px;
                    margin: 0 auto 48px;
                }
                .bm-menu-v2__links {
                    padding: 0 13px;
                    max-width: 100%;
                    margin: 0 auto;                    
                }
                    .bm-menu-v2__links > div:first-child {
                        margin-bottom: 42px;
                    }
                        .bm-menu-v2__links h2 {
                            font-size: 20px;
                            margin-bottom: 21px;
                        }
                        .bm-menu-v2__links ul {

                        }

    .floating-smi-v2 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: min(4.375vw, 70px);
    }

    .floating-contact-v2 {
        display: block;
    }

    .floating-contact-v2__btn {
        width: min(3.0625vw, 49px);
        height: min(3.0625vw, 49px);
        font-size: min(1.125vw, 18px);
    }
        .floating-contact-v2__btn i.icon-leadcapture {
            width: min(1.5625vw, 25px);
            height: min(1.6875vw, 27px);
        }

    .section-title-v2 small,
    #content .section-title-v2 small,
    #content .entry-title small,
    #content .archive-title small {
        font-size: 15px;
        letter-spacing: 0.6em;
    }

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


    /* Get in Touch */
    .hp-git__inner {
        padding: 84px 0 88px;
    }
        .hp-git__inner .bg-section {
            /* width: 67.6875%; */
            width: 67.4375%;
        }
        .hp-git__form {
            /* width: 50%; */
            width: 660px;
            padding: 50px 8% 64px;
            margin-right: 0;
        }
            .hp-git__form:before {
                display: block;
            }
            .git-logo {
                left: -80px;
                width: 158px;
                height: 158px;
                padding: 5px;
                display: block;
            }
            .git-title {
                display: flex;
                justify-content: center;
                text-align: left;
                margin-bottom: 20px;
            }
            .hp-git__form .wpcf7 {
                max-width: 620px;
                margin: 0 auto;
            }
                .hp-git__form .git-field {
                    padding: 0 10px;
                    margin-bottom: 10px;
                }
                .hp-git__form .git-field.field-12 {
                    width: 100%;
                }
                .hp-git__form .git-field.field-6 {
                    width: 50%;
                }
                    .hp-git__form .git-field input,
                    .hp-git__form .git-field textarea {
                        height: 53px;
                        font-size: 11px;
                    }
                    .hp-git__form .git-field textarea {
                        padding-top: 23px;
                        height: 94px;
                }
                    .hp-git__form .git-captcha .captcha-image {
                        padding: 33px 0 0;
                        font-size: 12px;
                    }
                        .hp-git__form .git-captcha .captcha-image svg {
                            width: 50px;
                        }
                    .hp-git__form .git-btn {
                        margin-top: 32px;
                    }
                        .hp-git__form .git-btn .btn-a {
                            min-width: 214px;
                        }
                
                .hp-git__form .wpcf7 form .wpcf7-response-output {
                    margin: 10px auto 0;
                    font-size: 12px;
                }

    /* Footer */
    .footer-v2 {
        padding: 97px 15px 80px;
    }
        .footer-v2__inner {
            max-width: 1182px;
        }
            .footer-v2__top {
                padding: 0 20px;
                flex-wrap: nowrap;
                gap: 20px;
            }
                .footer-v2__subtitle {
                    font-size: 25px;
                    margin: 4px 0 14px;
                    text-align: left;
                }
                .footer-v2__logo {
                    width: 377px;
                    margin: 0;
                }
                .footer-v2__contact {
                    width: 300px;
                    margin: 0;
                }
                    .footer-v2__contact-info {
                        flex-flow: column;
                        justify-content: center;
                        align-items: flex-start;
                    }
                    .footer-v2__contact-info li {
                        gap: 18px;
                        margin-bottom: 8px;
                    }
                        .footer-v2__contact-info li i {
                            min-width: 20px;
                            font-size: 15px;
                            top: 4px;
                        }
                        .footer-v2__contact-info li i.ai-font-location-c {
                            font-size: 20px;
                            top: 3px;
                        }
                        .footer-v2__contact-info li i.ai-font-envelope-f {
                            font-size: 12px;
                        }
                        .footer-v2__contact-info li span {
                            font-size: 13px;
                        }
                        .footer-v2__contact-info li.smi {
                            gap: 10px;
                        }
                            .footer-v2__contact-info li.smi a {
                                font-size: 20px;
                                width: 33px;
                                height: 33px;
                                font-size: 14px;
                            }
                .footer-v2__sitemap {
                    width: 315px;
                    margin: 0;
                }
                    .footer-v2__sitemap ul {
                        max-height: 160px;
                        text-align: left;
                        align-content: space-between;
                    }
                        .footer-v2__sitemap ul li a {
                            font-size: 13px;
                        }
            .footer-v2__bottom {
                border-top: 1px solid #dddcd8;
                margin: 32px 0 0;
            }
                .footer-v2__disclaimer {
                    padding: 25px 0 0;
                }
                    .footer-v2__disclaimer p {
                        font-size: 11px;
                        letter-spacing: 0.05em;
                        line-height: 23px;
                        color: #4e4e4e;
                    }
                        .footer-v2__disclaimer p a {
                            transition: all var(--default-transition);
                        }
                        .footer-v2__disclaimer p a:hover {
                            color: var(--primary);
                            opacity: 0.6;
                        }
                    .footer-v2__disclaimer p:first-of-type {
                        margin-bottom: 25px;
                    }
                    .footer-v2__disclaimer p:last-of-type {
                        font-size: 14px;
                        line-height: 22px;
                        letter-spacing: 0.1em;
                    }
                        .footer-v2__disclaimer p:last-of-type span,
                        .footer-v2__disclaimer p:last-of-type a[style] {
                            color: var(--primary);
                            font-weight: 700;
                        }

                    .footer-v2__icons {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 37px;
                        color: var(--primary);
                        gap: 13px;
                        margin: 25px 0 0;
                    }
                        .footer-v2__icons i.ai-font-eho {
                            font-size: 27px;
                        }
    .footer-v2 .scroll-top {
        bottom: 20px;
        right: 70px;
        width: 80px;
        height: 80px;
    }
}

/* Desktop */
@media screen and (min-width: 1280px) {
    :root {
        --font-size-title: 75px;
    }
    
    .bm-menu-v2__links ul li span {
        font-size: 15px;
        letter-spacing: 0.1em;
    }

    a.btn-a,
    .btn-a {
        font-size: 10px;
        letter-spacing: 0.3em;
        padding: 10px 30px;
    }

    .hp-git__form {
        /* width: 50%; */
        width: 800px;
        padding: 84px 90px 64px;
    }

    .footer-v2 .scroll-top {
        bottom: 70px;
        right: 50px;
        width: 103px;
        height: 103px;
    }
}