@import url('https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #052465;
    --color-secondary: #2F80ED;
    --color-text: #333333;

    --font-1: "Work Sans", sans-serif;
    --font-2: "REM", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-1);
    font-size: 16px;
    line-height: 1.28;
    font-weight: 400;
    overflow-y: scroll;
    color: var(--color-text);
}

a {
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
}

.swiper-container {
    overflow: hidden;
}

input:focus {
    outline: none;
}

/* Custom Bootstrap */
@media (min-width: 1366px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1216px;
    }
}

/* End Custom Bootstrap */

/* Custom Swiper */
.swiper-slide {
    height: auto;
}

/* End Custom Swiper */

/* Margin */
.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* End Margin */

/* Padding */
.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pt-5 {
    padding-top: 5px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

/* End Padding */

/* Button */
.button {
    background-color: #fff;
    border: 1px solid #4F4F4F;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}

.button .icon-left {
    margin-right: 10px;
}

.button .icon-right {
    margin-left: 10px;
}

.button:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.button-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.button-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.button-small {
    padding: 10px 16px;
}

.button-text {
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
}

.button-text i {
    margin-left: 4px;
}

.button-text:hover {
    color: var(--color-primary);
}

@media (max-width: 575.98px) {
    .button {
        padding: 14px 16px;
    }
}

/* End Button */

/* box-title */
.box-title {
    margin-bottom: 24px;
}

.box-title.mb-lg {
    margin-bottom: 40px;
}

.box-title h2 {
    color: var(--color-primary);
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-2);
    margin-bottom: 0;
}

.box-title .inner-desc {
    font-size: 16px;
    font-weight: 400;
    margin-top: 24px;
    /*max-width: 470px;*/
}

.box-title.box-white h2 {
    color: #fff;
}

.box-title .inner-mobile {
    display: none;
}

.only-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .box-title h2 {
        font-size: 28px;
    }

    .box-title .inner-pc {
        display: none;
    }

    .box-title .inner-mobile {
        display: block;
    }

    .only-mobile {
        display: block;
    }
}

/* End box-title */

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
}

.header .inner-wrap {
    display: flex;
    align-items: center;
}

.header .inner-logo {
    flex: 1;
}

.header .inner-logo img {
    height: 40px;
    width: auto;
}

.header .inner-menu {
    margin: 0 24px;
}

.header .inner-menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header .inner-menu > ul > li {
    margin: 0 22px;
    position: relative;
}

.header .inner-menu ul li a {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}

.header .inner-menu > ul > li > i {
    color: var(--color-text);
    transition: all 0.3s;
}

.header .inner-menu ul li a.active, .header .inner-menu ul li:hover > a, .header .inner-menu ul li:hover > i {
    color: var(--color-secondary);
}

.header .inner-menu > ul li ul {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 263px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
    display: none;
    background-color: #fff;
    z-index: 999;
}

.header .inner-menu > ul li ul::before {
    content: "";
    width: 100%;
    height: 15px;
    position: absolute;
    left: 0;
    bottom: 100%;
}

.header .inner-menu > ul li ul::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 100%;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.12);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

@media (min-width: 992px) {
    .header .inner-menu > ul li:hover ul {
        display: inline-block;
    }
}

.header .inner-menu > ul li ul li a {
    padding: 8px 20px;
    display: block;
}

.header .inner-menu-mobile {
    display: none;
}

.header .inner-overlay {
    display: none;
}

.header .inner-close {
    display: none;
}

@media (max-width: 1199.98px) {
    .header .inner-menu > ul > li {
        margin: 0 15px;
    }
}

@media (max-width: 991.98px) {
    .header {
        padding: 10px 0;
    }

    .header .inner-menu {
        position: fixed;
        width: 290px;
        top: 0;
        bottom: 0;
        left: 0;
        height: 100vh;
        z-index: 1100;
        background-color: #fff;
        padding: 0 20px;
        overflow: auto;
        -webkit-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
        -webkit-transform: translate3d(-290px, 0, 0);
        -moz-transform: translate3d(-290px, 0, 0);
        -ms-transform: translate3d(-290px, 0, 0);
        -o-transform: translate3d(-290px, 0, 0);
        transform: translate3d(-290px, 0, 0);
        -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
        transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
        -webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
        box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
        margin: 0;
        padding: 0;
    }

    .header .inner-menu.show {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        padding-bottom: 90px;
    }

    .header .inner-menu > ul {
        display: block;
    }

    .header .inner-contact {
        display: none;
    }

    .header .inner-menu-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        width: 44px;
        height: 44px;
        background: #fff;
        outline: none;
        border: 0;
        color: var(--color-text);
    }

    .header .inner-menu > ul > li {
        margin: 0;
        border-bottom: 1px solid #E0E0E0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header .inner-menu > ul > li > a {
        width: calc(100% - 40px);
        padding: 10px;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .header .inner-menu > ul > li > i {
        width: 40px;
        height: 40px;
        border-left: 1px solid #E0E0E0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .header .inner-menu > ul li ul {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border-top: 1px solid #E0E0E0;
    }

    .header .inner-menu > ul li ul::before {
        display: none;
    }

    .header .inner-menu > ul li ul::after {
        display: none;
    }

    .header .inner-menu > ul > li.show ul {
        display: block;
    }

    .header .inner-overlay {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        opacity: 0;
        z-index: -10;
        filter: opacity(0);
        visibility: hidden;
        display: block;
    }

    .header .inner-overlay.show {
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
        z-index: 999;
    }

    .header .inner-close {
        position: fixed;
        top: 10px;
        right: 10px;
        height: 40px;
        width: 40px;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        opacity: 0;
        z-index: -10;
        filter: opacity(0);
        visibility: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 0;
        color: #fff;
        font-size: 16px;
    }

    .header .inner-close.show {
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
        z-index: 1200;
    }
}

/* End Header */

/* banner-hero */
.banner-hero {
    background-image: url(../images/backgrounds/background-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 136px 0;
    position: relative;
}

.banner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.26;
    background: #021131;
}

.banner-hero .inner-content {
    position: relative;
    max-width: 450px;
}

.banner-hero .inner-content .inner-text {
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-2);
    margin-bottom: 32px;
}

.banner-hero .inner-content .inner-text span {
    display: block;
    text-align: right;
}

.banner-hero .inner-content .inner-text span:nth-child(1) {
    text-align: left;
}

@media (max-width: 575.98px) {
    .banner-hero {
        background-image: url(../images/backgrounds/background-1-mobile.jpg);
        padding: 244px 0 32px;
    }

    .banner-hero .inner-content {
        max-width: 325px;
    }

    .banner-hero .inner-content .inner-text {
        font-size: 40px;
    }
}

/* End banner-hero */

/* category-grid */
.category-grid {
    background-image: url(../images/backgrounds/background-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 75px 0 50px;
}

.category-grid .inner-button-top {
    margin-bottom: 48px;
    margin-top: 16px;
}

.category-grid-item {
    width: 100%;
    aspect-ratio: 370/278;
    position: relative;
    margin-bottom: 30px;
}

.category-grid-item .inner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-grid-item .inner-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
}

.category-grid-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-grid-item .inner-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-grid-item .inner-box .inner-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    padding: 15px;
}

.category-grid-item .inner-box .inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-grid-item .inner-box .inner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-grid-item .inner-box .inner-content .inner-title {
    font-size: 24px;
    font-weight: 600;
    color: #F6F6F6;
    margin-bottom: 0;
}

.category-grid-item .inner-box .inner-content .button {
    visibility: hidden;
    padding: 0;
    height: 0;
    opacity: 0;
    border-width: 0;
    color: transparent;
    transition: all 0.6s;
}

.category-grid-item:hover .inner-box .inner-content .button {
    margin-top: 24px;
    padding: 10px 16px;
    height: auto;
    visibility: visible;
    opacity: 1;
    border-width: 1px;
    color: #fff;
}

.category-grid .inner-button-bottom {
    display: none;
}

@media (max-width: 767.98px) {
    .category-grid-item .inner-box {
        padding: 12px 16px;
    }

    .category-grid-item .inner-box .inner-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .category-grid-item .inner-box .inner-content .inner-title {
        font-size: 14px;
    }

    .category-grid-item .inner-box .inner-content .button {
        font-size: 13px;
    }

    .category-grid-item:hover .inner-box .inner-content .button {
        margin-top: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 575.98px) {
    .category-grid {
        padding: 48px 0 0 0;
    }

    .category-grid .col-6 {
        padding: 0;
    }

    .category-grid .box-title {
        margin-bottom: 48px;
    }

    .category-grid .inner-button-top {
        display: none;
    }

    .category-grid-item {
        margin-bottom: 0;
    }

    .category-grid .inner-button-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-color: var(--color-secondary);
        color: #fff;
        font-size: 16px;
        font-weight: 500;
    }

    .category-grid .inner-button-bottom i {
        margin-left: 10px;
    }
}

/* End category-grid */

/* box-intro-1 */
.box-intro-1 {
    padding: 80px 0;
}

.box-intro-1 .inner-desc {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 400;
}

.box-intro-1 .inner-icons {
    margin-bottom: 32px;
}

.box-intro-1 .inner-icons img {
    height: 44px;
    width: auto;
    margin-right: 24px;
}

.box-intro-1 .inner-icons img:last-child {
    margin-right: 0;
}

.box-intro-1 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-1.type-2 {
    padding: 56px 0;
    background-color: var(--color-primary);
    background-image: url(../images/backgrounds/background-15.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.box-intro-1.type-2 .inner-desc {
    color: #fff;
}

.box-intro-1.type-2 .inner-icons {
    margin-bottom: 0;
}

.box-intro-1.type-2 .inner-image {
    text-align: right;
}

.box-intro-1.type-2 .inner-image img {
    max-height: 468px;
    max-width: 468px;
}

@media (max-width: 767.98px) {
    .box-intro-1 {
        padding: 48px 0;
    }

    .box-intro-1 .inner-content {
        margin-bottom: 24px;
    }

    .box-intro-1.type-2 .inner-image img {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
    }
}

/* End box-intro-1 */

/* box-tabs */
.box-tabs .nav-tabs {
    border-bottom-color: #E0E0E0;
}

.box-tabs .nav-tabs .nav-link {
    border: 0;
    background-color: #fff;
    padding: 0 0 24px 0;
    margin-right: 40px;
    font-size: 20px;
    font-weight: 600;
    color: #828282;
    font-family: var(--font-2);
    margin-bottom: 0;
    position: relative;
}

.box-tabs .nav-tabs .nav-link:last-child {
    margin-right: 0;
}

.box-tabs .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    background-color: transparent;
}

.box-tabs .nav-tabs .nav-link.active, .box-tabs .nav-tabs .nav-link:hover {
    color: var(--color-text);
}

.box-tabs .nav-tabs .nav-link.active::after, .box-tabs .nav-tabs .nav-link:hover::after {
    background-color: var(--color-secondary);
}

@media (max-width: 991.98px) {
    .box-tabs .nav-tabs .nav-link {
        padding: 0 0 16px 0;
        margin-right: 20px;
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .box-tabs {
        overflow-x: auto;
    }

    .box-tabs .nav-tabs {
        flex-wrap: nowrap;
    }

    .box-tabs .nav-tabs .nav-link {
        font-size: 14px;
        white-space: nowrap;
    }
}

/* End box-tabs */

/* box-pills */
.nav-pills {
    margin-bottom: 30px;
    column-gap: 12px;
}

.nav-pills .nav-link {
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 2px;
    font-weight: 600;
}

.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
    color: #333333;
    background-color: #E0E0E0;
    border-radius: 2px;
}

/* End box-pills */

/* box-panes */
.box-panes {
    padding-top: 30px;
}

@media (max-width: 575.98px) {
    .box-panes {
        padding-top: 0;
    }

    .box-panes .col-6 {
        padding: 0;
    }

    .box-panes .product-image-item {
        margin-bottom: 0;
    }
}

/* End box-panes */

/* product-image-item */
.product-image-item {
    margin-bottom: 30px;
}

.product-image-item img {
    width: 100%;
    aspect-ratio: 370/208;
    object-fit: cover;
    cursor: pointer;
}

/* End product-image-item */

/* box-partners */
.box-partners {
    margin-top: 70px;
    margin-bottom: 112px;
}

.partner-item {
    width: 100%;
    /*aspect-ratio: 170/80;*/
    border: 1px solid #E0E0E0;
    margin-bottom: 16px;
    /*padding: 15px;*/
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .box-partners {
        margin: 45px 0;
    }

    .box-partners .box-title {
        text-align: left !important;
        margin-bottom: 24px;
    }

    .box-partners .row {
        margin-right: -4px;
        margin-left: -4px;
    }

    .box-partners .col-4 {
        padding-right: 4px;
        padding-left: 4px;
    }

    .partner-item {
        padding: 8px;
        margin-bottom: 8px;
    }
}

/* End box-partners */

/* box-intro-2 */
.box-intro-2 {
    background-image: url(../images/backgrounds/background-4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 48px;
}

.box-intro-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

.box-intro-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/backgrounds/background-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box-intro-2 .inner-image {
    position: relative;
    z-index: 1;
}

.box-intro-2 .inner-image img {
    max-width: 340px;
    height: auto;
    margin-top: -48px;
}

.box-intro-2 .inner-content {
    position: relative;
    z-index: 1;
    text-align: right;
    padding: 30px 100px 0 30px;
}

.box-intro-2 .inner-content .inner-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-2);
    margin-bottom: 24px;
}

.box-intro-2 .inner-content .inner-title span {
    display: block;
}

@media (max-width: 1199.98px) {
    .box-intro-2 .inner-content {
        padding: 24px 0;
    }
}

@media (max-width: 991.98px) {
    .box-intro-2 .inner-content .inner-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .box-intro-2 {
        background-image: url(../images/backgrounds/background-4-mobile.jpg);
        margin-top: 0;
    }

    .box-intro-2::after {
        background-image: url(../images/backgrounds/background-3-mobile.png);
    }

    .box-intro-2 .inner-content {
        padding: 24px 0 48px;
    }

    .box-intro-2 .inner-content .inner-title {
        margin-bottom: 170px;
    }

    .box-intro-2 .inner-image {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .box-intro-2 .inner-image img {
        max-width: 186px;
        height: auto;
        margin-top: 0;
    }
}

/* End box-intro-2 */

/* Footer */
.footer {
    background-color: #021131;
    padding: 60px 0;
}

.footer .inner-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .inner-info .inner-logo img {
    height: 50px;
    width: auto;
}

.footer .inner-info .inner-copyright {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    max-width: 300px;
}

.footer-menu-type-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-type-1 ul li a:hover {
    color: var(--color-secondary);
}

.footer-menu-type-1 > ul > li {
    margin-bottom: 12px;
}

.footer-menu-type-1 > ul > li:last-child {
    margin-bottom: 0;
}

.footer-menu-type-1 > ul > li > a {
    color: #F6F6F6;
    font-size: 16px;
    font-weight: 600;
}

.footer-menu-type-1 > ul > li > ul > li {
    margin-top: 6px;
}

.footer-menu-type-1 > ul > li > ul > li > a {
    color: #8492A7;
    font-size: 14px;
    font-weight: 400;
}

.footer-menu-type-2 {
    margin-bottom: 46px;
}

.footer-menu-type-2 .inner-title {
    color: #F6F6F6;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-menu-type-2 .inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-type-2 .inner-list li {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #243042;
    display: flex;
    align-items: center;
}

.footer-menu-type-2 .inner-list li i {
    color: var(--color-secondary);
    width: 24px;
    font-size: 18px;
    margin-right: 12px;
}

.footer-menu-type-2 .inner-list li span {
    flex: 1;
}

.footer-menu-type-2 .inner-list li span a {
    color: var(--color-secondary);
    margin: 3px 0;
    display: inline-block;
}

.footer .inner-to-top {
    width: 40px;
    height: 40px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

.footer .inner-to-top:hover {
    background-color: var(--color-secondary);
}

@media (max-width: 991.98px) {
    .footer {
        padding: 32px 0 16px;
    }

    .footer .inner-info .inner-logo {
        display: none;
    }

    .footer .inner-info .inner-copyright {
        font-size: 16px;
    }

    .footer .footer-menu-type-1 {
        display: none;
    }

    .footer .footer-menu-type-2 {
        display: none;
    }

    .footer .inner-meta {
        padding-top: 16px;
        border-top: 1px solid #243042;
        margin-top: 16px;
    }
}

/* End Footer */

/* box-socials */
.box-socials {
    display: flex;
    align-items: center;
}

.box-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 20px;
    color: #fff;
}

.box-socials a:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

/* End box-socials */

/* box-intro-3 */
.box-intro-3 {
    padding: 60px 0 80px;
}

.box-intro-3 .inner-list {
    position: relative;
}

.box-intro-3 .inner-list::after {
    content: "";
    position: absolute;
    bottom: 9px;
    left: 0;
    width: calc(100% + (100vw - 100%) / 2 - 8px);
    height: 2px;
    background-color: #F2F2F2;
}

.box-intro-3 .swiper-slide {
    width: calc(100% / 3 - 60px / 3);
}

.box-intro-3 .inner-item {
    position: relative;
    height: 100%;
}

.box-intro-3 .inner-item .inner-image {
    width: 100%;
    aspect-ratio: 370/260;
    overflow: hidden;
    margin-bottom: 16px;
}

.box-intro-3 .inner-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-intro-3 .inner-item .inner-content {
    padding-bottom: 36px;
}

.box-intro-3 .inner-item .inner-content .inner-title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-2);
    margin-bottom: 12px;
}

.box-intro-3 .inner-item .inner-content .inner-desc {
    font-size: 16px;
    font-weight: 400;
}

.box-intro-3 .inner-item .inner-dot {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-secondary);
    background-color: #fff;
    border-radius: 50%;
}

@media (max-width: 1199.98px) {
    .box-intro-3 .swiper-slide {
        width: 44%;
    }
}

@media (max-width: 767.98px) {
    .box-intro-3 .swiper-slide {
        width: 40%;
    }
}

@media (max-width: 575.98px) {
    .box-intro-3 {
        padding: 24px 0 48px;
    }

    .box-intro-3 > .container {
        padding-right: 0;
    }

    .box-intro-3 .swiper-slide {
        width: calc(100% - 75px);
    }

    .box-intro-3 .inner-list::after {
        width: 100%;
    }
}

/* End box-intro-3 */

/* box-intro-4 */
.box-intro-4 {
    padding: 80px 0 48px;
    background-image: url(../images/backgrounds/background-5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.box-intro-4 .inner-image {
    margin-bottom: 80px;
}

.box-intro-4 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-4 .inner-box {
    margin-bottom: 32px;
}

.box-intro-4 .inner-box .inner-title {
    color: #F2F2F2;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-2);
    margin-bottom: 16px;
}

.box-intro-4 .inner-box .inner-desc {
    color: #F6F6F6;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.box-intro-4 .inner-box .inner-number {
    margin-top: 24px;
    color: var(--color-secondary);
    font-family: var(--font-2);
}

.box-intro-4 .inner-box .inner-number span:first-child {
    font-size: 48px;
    font-weight: 600;
    display: block;
    line-height: 1;
}

.box-intro-4 .inner-box .inner-number span:last-child {
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.box-intro-4.type-2 {
    background-image: url(../images/backgrounds/background-6.png);
}

.box-intro-4.type-2 .inner-box .inner-title {
    color: var(--color-text);
}

.box-intro-4.type-2 .inner-box .inner-desc {
    color: var(--color-text);
}

@media (max-width: 575.98px) {
    .box-intro-4 {
        padding: 40px 0 8px;
    }

    .box-intro-4 .inner-image {
        margin-bottom: 24px;
    }

    .box-intro-4 .inner-box .inner-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .box-intro-4 .inner-box .inner-number span:first-child {
        font-size: 44px;
    }

    .box-intro-4 .inner-box .inner-number span:last-child {
        font-size: 18px;
    }

    .box-intro-4.type-2 {
        padding: 24px 0 28px;
        background-image: none;
    }
}

/* End box-intro-4 */

/* box-intro-5 */
.box-intro-5 {
    padding: 80px 0;
}

.box-intro-5 .inner-section {
    border-bottom: 1px solid #E0E0E0;
}

.box-intro-5 .inner-section .box-title {
    margin-bottom: 16px;
}

.box-intro-5 .inner-section:nth-child(2) {
    padding: 32px 0;
}

.box-intro-5 .inner-section .inner-image-main img {
    width: 100%;
    height: auto;
}

.box-intro-5 .inner-section:nth-child(3) {
    padding: 32px 0 16px;
}

.box-intro-5 .inner-section:nth-child(4) {
    padding: 128px 0 32px;
    border-bottom-width: 0;
}

.box-intro-5 .inner-content .inner-title {
    font-weight: 700;
    font-size: 20px;
    font-family: var(--font-2);
    margin-bottom: 12px;
}

.box-intro-5 .inner-content .inner-title span {
    font-weight: 400;
    font-size: 16px;
    max-width: 470px;
}

.box-intro-5 .inner-content .inner-desc {
    font-weight: 400;
    font-size: 16px;
    max-width: 470px;
}

@media (max-width: 991.98px) {
    .box-intro-5 {
        padding-bottom: 0;
    }

    .box-intro-5 .inner-content {
        margin-bottom: 24px;
    }

    .box-intro-5 .inner-section:nth-child(4) {
        padding: 32px 0 16px;
        border-bottom-width: 1px;
    }
}

@media (max-width: 575.98px) {
    .box-intro-5 {
        padding: 48px 0 0 0;
    }

    .box-intro-5 .inner-content {
        margin-bottom: 12px;
    }

    .box-intro-5 .inner-section:nth-child(2) {
        padding: 24px 0;
    }

    .box-intro-5 .inner-section:nth-child(3) {
        padding: 24px 0 16px;
    }

    .box-intro-5 .inner-section:nth-child(4) {
        padding: 24px 0 16px;
    }

    .box-intro-5 .inner-content .inner-title {
        font-size: 18px;
    }
}

/* End box-intro-5 */

/* page-light */
.page-light {
    background-color: #F6F6F6;
    padding: 32px 0 125px;
}

@media (max-width: 575.98px) {
    .page-light {
        background-color: #fff;
        padding: 16px 0 0;
    }

    .page-light > .container {
        padding: 0;
    }
}

/* End page-light */

/* page-flex */
.page-flex {
    display: flex;
}

.page-flex-left {
    width: 270px;
}

.page-flex-right {
    width: calc(100% - 270px);
}

@media (max-width: 991.98px) {
    .page-flex-left {
        display: none;
    }

    .page-flex-right {
        width: 100%;
    }
}

/* End page-flex */

/* box-category */
.box-category {
    position: sticky;
    top: 120px;
}

.box-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-category ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.box-category ul li a.active::before, .box-category ul li a:hover::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 2px;
    height: calc(100% - 16px);
    background: var(--color-secondary);
}

/* End box-category */

/* box-intro-6 */
.box-intro-6 {
    padding-top: 40px;
}

.box-intro-6 .inner-section-1 {
    display: flex;
}

.box-intro-6 .inner-section-1 .inner-box-1 {
    width: 60%;
    background-image: url(../images/backgrounds/background-7.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;
}

.box-intro-6 .inner-section-1 .inner-box-1 .inner-icon {
    position: absolute;
    top: -40px;
    left: 30px;
}

.box-intro-6 .inner-section-1 .inner-box-1 .inner-icon img {
    height: 80px;
    width: auto;
}

.box-intro-6 .inner-section-1 .inner-box-1 .inner-content {
    padding: 64px 30px 34px;
}

.box-intro-6 .inner-section-1 .inner-box-1 .inner-content .inner-title {
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    font-family: var(--font-2);
    margin-bottom: 24px;
}

.box-intro-6 .inner-section-1 .inner-box-1 .inner-content .inner-desc {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    max-width: 314px;
}

.box-intro-6 .inner-section-1 .inner-box-2 {
    width: 40%;
}

.box-intro-6 .inner-section-1 .inner-box-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-intro-6 .inner-section-2 {
    display: flex;
    background-color: var(--color-primary);
}

.box-intro-6 .inner-section-2 .inner-box-1 {
    width: 60%;
    background-color: #fff;
}

.box-intro-6 .inner-section-2 .inner-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-intro-6 .inner-section-2 .inner-box-2 {
    width: 40%;
    padding: 30px;
    background-image: url(../images/backgrounds/background-8.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.box-intro-6 .inner-section-2 .inner-box-2 table {
    width: 100%;
}

.box-intro-6 .inner-section-2 .inner-box-2 table thead tr th {
    color: #8492A7;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 8px;
}

.box-intro-6 .inner-section-2 .inner-box-2 table thead tr th:nth-child(1) {
    width: 42px;
}

.box-intro-6 .inner-section-2 .inner-box-2 table thead tr th:nth-child(3) {
    width: 80px;
    text-align: right;
}

.box-intro-6 .inner-section-2 .inner-box-2 table tbody tr td {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 8px;
}

.box-intro-6 .inner-section-2 .inner-box-2 table tbody tr td:nth-child(1) {
    width: 42px;
}

.box-intro-6 .inner-section-2 .inner-box-2 table tbody tr td:nth-child(3) {
    width: 80px;
    text-align: right;
}

.box-intro-6 .inner-section-3 {
    background-color: var(--color-primary);
    background-image: url(../images/backgrounds/background-9.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 30px;
}

.box-intro-6 .inner-section-3 .inner-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-2);
    margin-bottom: 16px;
}

.box-intro-6 .inner-section-3 .inner-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-intro-6 .inner-section-3 .inner-item img {
    height: 40px;
    width: auto;
}

/* Portrait-format logos need extra height to carry the same visual weight
   as the wide horizontal wordmarks they sit beside. */
.box-intro-6 .inner-section-3 .inner-item--tall img {
    height: 68px;
}

@media (max-width: 1199.98px) {
    .box-intro-6 .inner-section-2 {
        flex-wrap: wrap;
    }

    .box-intro-6 .inner-section-2 .inner-box-1 {
        width: 100%;
    }

    .box-intro-6 .inner-section-2 .inner-box-2 {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .box-intro-6 .inner-section-1 {
        flex-wrap: wrap;
    }

    .box-intro-6 .inner-section-1 .inner-box-1 {
        width: 100%;
    }

    .box-intro-6 .inner-section-1 .inner-box-2 {
        width: 100%;
    }

    .box-intro-6 .inner-section-3 {
        padding-top: 0;
        padding-bottom: 10px;
    }

    .box-intro-6 .inner-section-3 .inner-list {
        flex-wrap: wrap;
    }

    .box-intro-6 .inner-section-3 .inner-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .box-intro-6 .inner-section-3 .inner-item:nth-child(2n) {
        text-align: right;
    }
}

@media (max-width: 575.98px) {
    .box-intro-6 .inner-section-1 .inner-box-1 {
        background-image: url(../images/backgrounds/background-7-mobile.jpg);
    }

    .box-intro-6 .inner-section-1 .inner-box-1 .inner-icon {
        top: -28px;
        left: 16px;
    }

    .box-intro-6 .inner-section-1 .inner-box-1 .inner-icon img {
        height: 56px;
    }

    .box-intro-6 .inner-section-1 .inner-box-1 .inner-content {
        padding: 40px 16px 356px;
    }

    .box-intro-6 .inner-section-1 .inner-box-1 .inner-content .inner-title {
        font-size: 28px;
    }

    .box-intro-6 .inner-section-2 .inner-box-2 {
        padding: 16px;
    }

    .box-intro-6 .inner-section-3 {
        padding: 16px;
    }
}

/* End box-intro-6 */

/* box-intro-7 */
.box-intro-7 {
    padding: 100px 0;
}

.box-intro-7 .inner-section-1 {
    margin-bottom: 24px;
}

.box-intro-7 .inner-section-1 .box-title {
    padding-left: 30px;
}

.box-intro-7 .inner-section-1 .inner-desc {
    font-size: 16px;
    font-weight: 400;
}

.box-intro-7 .inner-section-1 .inner-desc ul {
    margin-bottom: 0;
    padding-left: 25px;
}

/* paragraphs inherit bootstrap's bottom margin; drop it on the last one so the
   block keeps the same spacing as a plain-text description */
.box-intro-7 .inner-section-1 .inner-desc p:last-child {
    margin-bottom: 0;
}

.box-intro-7 .inner-section-2 {
    position: relative;
}

.box-intro-7 .inner-section-2 .inner-icon {
    position: absolute;
    top: -40px;
    left: 30px;
}

.box-intro-7 .inner-section-2 .inner-icon img {
    height: 80px;
    width: auto;
}

.box-intro-7 .inner-section-2 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-7 .inner-section-2 .inner-images {
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: space-between;
}

.box-intro-7 .inner-section-2 .inner-images .inner-item {
    width: calc(50% - 8px);
}

.box-intro-7 .inner-section-3 {
    display: flex;
    justify-content: space-between;
}

.box-intro-7 .inner-section-3 .inner-box {
    margin-top: 16px;
    width: calc(50% - 8px);
    background-color: var(--color-primary);
    background-image: url(../images/backgrounds/background-10.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
}

.box-intro-7 .inner-section-3 .inner-box .inner-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-2);
    margin-bottom: 8px;
    color: #fff;
}

.box-intro-7 .inner-section-3 .inner-box .inner-desc {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    padding-left: 24px;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list li {
    margin-bottom: 8px;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list li:last-child {
    margin-bottom: 0;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list .inner-table {
    border-top: 1px solid #8492A7;
    border-bottom: 1px solid #8492A7;
    padding: 8px 0;
    margin-top: 8px;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list .inner-table > span {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list .inner-table > span:last-child {
    margin-bottom: 0;
}

.box-intro-7 .inner-section-3 .inner-box .inner-list .inner-table > span > span {
    width: 50%;
}

@media (max-width: 1199.98px) {
    .box-intro-7 .inner-section-1 {
        margin-bottom: 64px;
    }
}

@media (max-width: 991.98px) {
    .box-intro-7 {
        padding: 64px 0;
    }
}

@media (max-width: 767.98px) {
    .box-intro-7 .inner-section-3 {
        flex-wrap: wrap;
    }

    .box-intro-7 .inner-section-3 .inner-box {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .box-intro-7 {
        padding: 48px 0;
    }

    .box-intro-7 .inner-section-1 {
        margin-bottom: 48px;
        padding: 0 15px;
    }

    .box-intro-7 .inner-section-1 .box-title {
        padding-left: 0;
    }

    .box-intro-7 .inner-section-2 .inner-icon {
        top: -28px;
        left: 16px;
    }

    .box-intro-7 .inner-section-2 .inner-icon img {
        height: 56px;
    }

    .box-intro-7 .inner-section-2 .inner-images {
        flex-wrap: wrap;
        /* items stack full-width here and space themselves with margin-bottom */
        row-gap: 0;
    }

    .box-intro-7 .inner-section-2 .inner-images .inner-item {
        width: 100%;
        margin-bottom: 8px;
    }

    .box-intro-7 .inner-section-2 .inner-images .inner-item:last-child {
        margin-bottom: 0;
    }

    .box-intro-7 .inner-section-3 {
        background-image: url(../images/backgrounds/background-11.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .box-intro-7 .inner-section-3 .inner-box {
        margin-top: 0;
        padding: 24px 16px;
        background-image: none;
        background-color: transparent;
    }

    .box-intro-7 .inner-section-3 .inner-box .inner-title {
        font-size: 18px;
    }
}

/* End box-intro-7 */

/* box-intro-8 */
.box-intro-8 .inner-section-1 {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.box-intro-8 .inner-section-1 .box-title {
    width: calc(50% - 8px);
    padding-left: 30px;
}

.box-intro-8 .inner-section-1 .inner-desc {
    width: calc(50% - 8px);
    font-size: 16px;
    font-weight: 400;
}

.box-intro-8 .inner-section-1 .inner-desc p {
    margin-bottom: 24px;
}

.box-intro-8 .inner-section-2 {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: calc(50% - 50px);
}

.box-intro-8 .inner-section-2 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-8 .inner-section-2 .inner-icon {
    position: absolute;
    top: -40px;
    left: 30px;
}

.box-intro-8 .inner-section-2 .inner-icon img {
    height: 80px;
    width: auto;
}

.box-intro-8 .inner-section-3 {
    background-image: url(../images/backgrounds/background-12.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.box-intro-8 .inner-section-3 .inner-box-1 {
    width: calc(46% - 15px);
}

.box-intro-8 .inner-section-3 .inner-box-1 .inner-list {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    padding-left: 24px;
}

.box-intro-8 .inner-section-3 .inner-box-1 .inner-list li {
    margin-bottom: 8px;
}

.box-intro-8 .inner-section-3 .inner-box-1 .inner-list li:last-child {
    margin-bottom: 0;
}

.box-intro-8 .inner-section-3 .inner-box-1 .inner-list .inner-table {
    border-top: 1px solid #8492A7;
    border-bottom: 1px solid #8492A7;
    padding: 8px 0;
    margin-top: 8px;
}

.box-intro-8 .inner-section-3 .inner-box-1 .inner-list .inner-table > span {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.box-intro-8 .inner-section-3 .inner-box-1 .inner-list .inner-table > span > span {
    width: 50%;
}

.box-intro-8 .inner-section-3 .inner-box-2 {
    width: calc(54% - 15px);
    border: 1px solid #8492A7;
    border-radius: 4px;
    padding: 8px 16px;
}

.box-intro-8 .inner-section-3 .inner-box-2 table {
    width: 100%;
}

.box-intro-8 .inner-section-3 .inner-box-2 table thead tr th {
    color: #8492A7;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 8px;
}

.box-intro-8 .inner-section-3 .inner-box-2 table thead tr th:nth-child(1) {
    width: 38px;
}

.box-intro-8 .inner-section-3 .inner-box-2 table thead tr th:nth-child(3) {
    width: 110px;
}

.box-intro-8 .inner-section-3 .inner-box-2 table tbody tr td {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 8px;
}

.box-intro-8 .inner-section-3 .inner-box-2 table tbody tr td:nth-child(1) {
    width: 38px;
}

.box-intro-8 .inner-section-3 .inner-box-2 table tbody tr td:nth-child(3) {
    width: 110px;
}

@media (max-width: 767.98px) {
    .box-intro-8 .inner-section-1 {
        flex-wrap: wrap;
    }

    .box-intro-8 .inner-section-1 .box-title {
        width: 100%;
    }

    .box-intro-8 .inner-section-1 .inner-desc {
        width: 100%;
    }

    .box-intro-8 .inner-section-2 {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 32px;
    }

    .box-intro-8 .inner-section-3 {
        flex-wrap: wrap;
    }

    .box-intro-8 .inner-section-3 .inner-box-1 {
        width: 100%;
        margin-bottom: 24px;
    }

    .box-intro-8 .inner-section-3 .inner-box-2 {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .box-intro-8 .inner-section-1 .box-title {
        padding: 0 15px;
        margin-bottom: 16px;
    }

    .box-intro-8 .inner-section-1 .inner-desc {
        padding: 0 15px;
    }

    .box-intro-8 .inner-section-2 .inner-icon {
        top: -28px;
        left: 16px;
    }

    .box-intro-8 .inner-section-2 .inner-icon img {
        height: 56px;
    }

    .box-intro-8 .inner-section-3 {
        padding: 24px 16px;
    }
}

/* End box-intro-8 */

/* box-intro-9 */
.box-intro-9 .box-title {
    padding-left: 30px;
    margin-bottom: 8px;
}

.box-intro-9 .inner-sub-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-2);
    padding-left: 30px;
    margin-bottom: 24px;
}

.box-intro-9 .inner-section-1 {
    margin-bottom: 16px;
}

.box-intro-9 .inner-section-1 .inner-images {
    position: relative;
    margin-top: 64px;
}

.box-intro-9 .inner-section-1 .inner-images .inner-icon {
    position: absolute;
    top: -40px;
    left: 30px;
    z-index: 2;
}

.box-intro-9 .inner-section-1 .inner-images .inner-icon img {
    height: 80px;
    width: auto;
}

.box-intro-9 .inner-section-1 .inner-images .inner-image {
    width: 100%;
    aspect-ratio: 442/360;
    overflow: hidden;
}

.box-intro-9 .inner-section-1 .inner-images .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-intro-9 .inner-section-1 .inner-images .swiper-button-prev, .box-intro-9 .inner-section-1 .inner-images .swiper-button-next {
    color: #1C1B1F;
    background-color: #fff;
    width: 40px;
    height: 40px;
}

.box-intro-9 .inner-section-1 .inner-images .swiper-button-prev::after, .box-intro-9 .inner-section-1 .inner-images .swiper-button-next::after {
    font-size: 20px;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
}

.box-intro-9 .inner-section-1 .inner-images .swiper-button-prev::after {
    content: "\f177";
}

.box-intro-9 .inner-section-1 .inner-images .swiper-button-next::after {
    content: "\f178";
}

.box-intro-9 .inner-section-2 .inner-table {
    background: #fff;
    padding: 16px 30px;
}

.box-intro-9 .inner-section-2 .inner-table thead tr {
    border-bottom: 1px solid var(--color-text);
}

.box-intro-9 .inner-section-2 .inner-table thead tr th {
    color: #8492A7;
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
}

.box-intro-9 .inner-section-2 .inner-table thead tr th:nth-child(1) {
    width: 40px;
}

.box-intro-9 .inner-section-2 .inner-table thead tr th:nth-child(2) {
    width: 26%;
}

.box-intro-9 .inner-section-2 .inner-table thead tr th:nth-child(3) {
    width: 36%;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr td {
    padding: 5px;
    vertical-align: top;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr td:nth-child(1) {
    width: 40px;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr td:nth-child(2) {
    width: 26%;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr td:nth-child(3) {
    width: 36%;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr td ul {
    padding-left: 25px;
    margin: 0;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer {
    border-top: 1px solid var(--color-text);
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer td {
    padding: 32px 5px 15px;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer td ul {
    color: #828282;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer td ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer td ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #828282;
    position: absolute;
    top: 7.5px;
    left: -15px;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer td ul li span:first-child {
    width: 33%;
    display: inline-block;
}

.box-intro-9 .inner-section-2 .inner-table tbody tr.inner-footer td ul li span:last-child {
    width: 52%;
    display: inline-block;
}

.box-intro-9 .inner-section-2 .inner-grid {
    display: none;
}

.box-intro-9 .inner-section-3 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.box-intro-9 .inner-section-3 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-9 .inner-section-4 {
    display: flex;
    justify-content: space-between;
}

.box-intro-9 .inner-section-4 .inner-image {
    width: calc(50% - 8px);
}

.box-intro-9 .inner-section-4 .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-intro-9 .inner-section-4 .inner-box {
    width: calc(50% - 8px);
    background-image: url(../images/backgrounds/background-13.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
}

.box-intro-9 .inner-section-4 .inner-box table {
    width: 100%;
}

.box-intro-9 .inner-section-4 .inner-box table thead tr th {
    color: #8492A7;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #8492A7;
}

.box-intro-9 .inner-section-4 .inner-box table thead tr th:nth-child(1) {
    width: 38px;
}

.box-intro-9 .inner-section-4 .inner-box table thead tr th:nth-child(3) {
    width: 110px;
}

.box-intro-9 .inner-section-4 .inner-box table tbody tr td {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #8492A7;
}

.box-intro-9 .inner-section-4 .inner-box table tbody tr td:nth-child(1) {
    width: 38px;
}

.box-intro-9 .inner-section-4 .inner-box table tbody tr td:nth-child(3) {
    width: 110px;
}

.box-intro-9 .inner-section-4 .inner-box .inner-list {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    padding-left: 24px;
    margin-top: 24px;
}

.box-intro-9 .inner-section-4 .inner-box .inner-list li {
    margin-bottom: 8px;
}

.box-intro-9 .inner-section-4 .inner-box .inner-list li:last-child {
    margin-bottom: 0;
}

.box-intro-9 .inner-section-4 .inner-box .inner-list .inner-table {
    border-top: 1px solid #8492A7;
    border-bottom: 1px solid #8492A7;
    padding: 8px 0;
    margin-top: 8px;
}

.box-intro-9 .inner-section-4 .inner-box .inner-list .inner-table > span {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.box-intro-9 .inner-section-4 .inner-box .inner-list .inner-table > span > span {
    width: 50%;
}

@media (max-width: 767.98px) {
    .box-intro-9 .inner-section-2 .inner-table {
        display: none;
    }

    .box-intro-9 .inner-section-2 .inner-grid {
        display: block;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-item {
        margin-bottom: 20px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-title-1 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-title-2 {
        color: #828282;
        font-size: 16px;
        margin-bottom: 8px;
        font-weight: 400;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-desc {
        color: var(--color-text);
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 12px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-desc ul {
        margin: 0;
        padding-left: 25px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-footer {
        border-top: 1px solid var(--color-text);
        border-bottom: 1px solid var(--color-text);
        padding: 16px 0 8px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-footer ul {
        margin: 0;
        padding-left: 25px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-footer ul li {
        margin-bottom: 8px;
    }

    .box-intro-9 .inner-section-2 .inner-grid .inner-footer ul li span:first-child {
        color: #828282;
    }

    .box-intro-9 .inner-section-4 .inner-image {
        display: none;
    }

    .box-intro-9 .inner-section-4 .inner-box {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .box-intro-9 .box-title {
        padding: 0 15px;
    }

    .box-intro-9 .inner-sub-title {
        padding: 0 15px;
    }

    .box-intro-9 .inner-section-1 .inner-images {
        margin-top: 44px;
    }

    .box-intro-9 .inner-section-1 .inner-images .inner-icon {
        top: -28px;
        left: 16px;
    }

    .box-intro-9 .inner-section-1 .inner-images .inner-icon img {
        height: 56px;
    }

    .box-intro-9 .inner-section-1 .inner-images .swiper-button-prev, .box-intro-9 .inner-section-1 .inner-images .swiper-button-next {
        background-color: #ffffffab;
        width: 32px;
        height: 32px;
    }

    .box-intro-9 .inner-section-1 .inner-images .swiper-button-prev::after, .box-intro-9 .inner-section-1 .inner-images .swiper-button-next::after {
        font-size: 16px;
    }

    .box-intro-9 .inner-section-2 .inner-grid {
        padding: 0 15px;
    }

    .box-intro-9 .inner-section-3 {
        margin-bottom: 0;
    }

    .box-intro-9 .inner-section-4 .inner-box {
        padding: 24px 16px;
    }
}

/* End box-intro-9 */

/* box-intro-10 */
.box-intro-10 .box-title {
    padding-left: 30px;
    margin-bottom: 72px;
}

.box-intro-10 .inner-main {
    background-image: url(../images/backgrounds/background-14.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.box-intro-10 .inner-main .inner-icon {
    position: absolute;
    top: -40px;
    left: 30px;
}

.box-intro-10 .inner-main .inner-icon img {
    height: 80px;
    width: auto;
}

.box-intro-10 .inner-section-1 {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
}

.box-intro-10 .inner-section-1 .inner-content {
    width: calc(50% - 8px);
    padding: 0 30px;
}

.box-intro-10 .inner-section-1 .inner-image {
    width: calc(50% - 8px);
}

.box-intro-10 .inner-section-1 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-10 .inner-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-2);
    margin-bottom: 12px;
}

.box-intro-10 .inner-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.box-intro-10 .inner-section-2 .inner-content {
    padding: 0 30px;
    margin-bottom: 24px;
}

.box-intro-10 .inner-section-3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.box-intro-10 .inner-section-3 .inner-image {
    width: calc(50% - 8px);
}

.box-intro-10 .inner-section-3 .inner-image img {
    width: 100%;
    height: auto;
}

.box-intro-10 .inner-section-4 {
    display: flex;
    flex-direction: column;
}

.box-intro-10 .inner-section-4 .inner-box-1 {
    width: 100%;
}

.box-intro-10 .inner-section-4 .inner-box-1 .inner-title {
    padding-left: 30px;
}

.box-intro-10 .inner-section-4 .inner-box-1 .inner-desc {
    padding-left: 30px;
}

.box-intro-10 .inner-section-4 .inner-box-1 .inner-desc ul {
    padding-left: 25px;
    margin-bottom: 22px;
}

.box-intro-10 .inner-section-4 .inner-box-2 {
    width: 100%;
    margin-top: 8px;
    display: flex;
    gap: 16px;
}

/* the three photos come from different crops, so a fixed height plus cover
   keeps the row even */
.box-intro-10 .inner-section-4 .inner-box-2 img {
    width: calc((100% - 32px) / 3);
    height: 300px;
    object-fit: cover;
}

@media (max-width: 1365.98px) {
    .box-intro-10 .inner-section-4 .inner-box-2 img {
        height: 240px;
    }
}

@media (max-width: 1199.98px) {
    .box-intro-10 .inner-section-1 {
        flex-wrap: wrap;
    }

    .box-intro-10 .inner-section-1 .inner-content {
        width: 100%;
    }

    .box-intro-10 .inner-section-1 .inner-image {
        width: 100%;
    }

    .box-intro-10 .inner-section-4 {
        flex-wrap: wrap;
    }

    .box-intro-10 .inner-section-4 .inner-box-1 {
        width: 100%;
    }

    .box-intro-10 .inner-section-4 .inner-box-2 {
        width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 575.98px) {
    .box-intro-10 .box-title {
        padding: 0 15px;
        margin-bottom: 44px;
    }

    .box-intro-10 .inner-main {
        background-image: url(../images/backgrounds/background-14-mobile.png);
    }

    .box-intro-10 .inner-title {
        font-size: 18px;
    }

    .box-intro-10 .inner-main .inner-icon {
        top: -28px;
        left: 16px;
    }

    .box-intro-10 .inner-main .inner-icon img {
        height: 56px;
    }

    .box-intro-10 .inner-section-1 {
        padding: 52px 0 32px;
    }

    .box-intro-10 .inner-section-1 .inner-content {
        padding: 0 15px;
    }

    .box-intro-10 .inner-section-1 .inner-image {
        padding: 0 15px;
    }

    .box-intro-10 .inner-section-2 .inner-content {
        padding: 0 15px;
        margin-bottom: 12px;
    }

    .box-intro-10 .inner-section-3 {
        margin-bottom: 48px;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .box-intro-10 .inner-section-3 .inner-image {
        width: 100%;
        margin-bottom: 8px;
    }

    .box-intro-10 .inner-section-3 .inner-image:last-child {
        margin-bottom: 0;
    }

    .box-intro-10 .inner-section-4 {
        padding: 0 15px;
    }

    .box-intro-10 .inner-section-4 .inner-box-1 .inner-title {
        padding: 0;
    }

    .box-intro-10 .inner-section-4 .inner-box-1 .inner-desc {
        padding: 0;
    }

    /* three across is too narrow to read on a phone, so stack them */
    .box-intro-10 .inner-section-4 .inner-box-2 {
        flex-direction: column;
    }

    .box-intro-10 .inner-section-4 .inner-box-2 img {
        width: 100%;
        height: auto;
    }
}

/* End box-intro-10 */

/* box-intro-11 */
.box-intro-11 {
    margin-top: 30px;
}

.box-intro-11 .inner-item {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.box-intro-11 .inner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .box-intro-11 {
        margin-top: 24px;
    }
}

@media (max-width: 575.98px) {
    .box-intro-11 > .container {
        padding: 0;
    }

    .box-intro-11 .swiper-slide {
        max-width: 312px;
    }
}

/* End box-intro-11 */

/* box-articles */
.box-articles {
    padding: 80px 0 40px;
}

.box-articles .inner-item {
    margin-bottom: 40px;
}

.box-articles.type-2 {
    padding: 30px 0 80px;
}

.box-articles.type-2 .box-title {
    margin-bottom: 32px;
}

@media (max-width: 575.98px) {
    .box-articles {
        padding: 48px 0 44px;
    }

    .box-articles.type-2 {
        padding: 24px 0 48px;
    }

    .box-articles .box-title.mb-lg {
        margin-bottom: 24px;
    }

    .box-articles.type-2 .box-title {
        margin-bottom: 24px;
    }

    .box-articles .inner-item {
        margin-bottom: 16px;
    }
}

/* End box-articles */

/* article-item */
.article-item {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 8px;
    height: 100%;
    position: relative;
}

.article-item .inner-image {
    width: 100%;
    aspect-ratio: 254/160;
    overflow: hidden;
}

.article-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-item .inner-content {
    padding: 16px 12px 52px;
}

.article-item .inner-content .inner-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.28;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.article-item .inner-content .inner-title a {
    color: var(--color-text);
}

.article-item .inner-content .inner-title a:hover {
    color: var(--color-secondary);
}

.article-item .inner-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-item .inner-footer .inner-date {
    color: #828282;
    font-size: 14px;
    font-weight: 400;
}

.article-item .inner-footer .inner-readmore {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
}

.article-item .inner-footer .inner-readmore:hover {
    color: var(--color-primary);
}

.article-item .inner-footer .inner-readmore i {
    margin-left: 6px;
}

/* End article-item */

/* box-intro-12 */
.box-intro-12 {
    background-image: url(../images/backgrounds/background-16.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 178px 0;
    position: relative;
}

.box-intro-12::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

.box-intro-12 .inner-content {
    position: relative;
}

.box-intro-12 .inner-content .inner-title {
    font-size: 48px;
    font-weight: 600;
    font-family: var(--font-2);
    margin-bottom: 16px;
    color: #fff;
}

.box-intro-12 .inner-content .inner-desc {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    max-width: 468px;
    line-height: 1.333;
}

@media (max-width: 575.98px) {
    .box-intro-12 {
        background-image: url(../images/backgrounds/background-16-mobile.jpg);
        padding: 156px 0;
    }

    .box-intro-12 .inner-content .inner-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .box-intro-12 .inner-content .inner-desc {
        font-size: 16px;
        max-width: 326px;
    }
}

/* End box-intro-12 */

/* box-products */
.box-products.type-2 {
    margin-top: 80px;
}

.box-products .box-title .inner-desc {
    font-size: 18px;
    font-weight: 500;
}

.box-products .inner-line {
    height: 1px;
    width: 100%;
    background-color: #E0E0E0;
    margin-top: 32px;
    margin-bottom: 30px;
}

@media (max-width: 575.98px) {
    .box-products.type-2 {
        margin-top: 48px;
    }

    .box-products .inner-line {
        display: none;
    }

    .box-products.type-2 .col-6 {
        padding: 1px;
    }

    .box-products.type-2 .product-image-item {
        margin-bottom: 0;
    }
}

/* End box-products */

/* box-pagination */
.box-pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.box-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #BDBDBD;
    border-right-width: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}

.box-pagination a:first-child {
    border-radius: 2px 0 0 2px;
}

.box-pagination a:last-child {
    border-right-width: 1px;
    border-radius: 0 2px 2px 0;
}

.box-pagination a.active, .box-pagination a:hover {
    background-color: var(--color-text);
    color: #fff;
}

@media (max-width: 575.98px) {
    .box-pagination {
        margin-top: 32px;
    }
}

/* End box-pagination */

/* article-detail */
.article-detail {
    padding: 80px 0;
}

.article-detail .inner-title {
    max-width: 770px;
    margin: 0 auto 80px auto;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.28;
    font-family: var(--font-2);
}

.article-detail .inner-avatar {
    max-width: 968px;
    margin: 0 auto 32px auto;
}

.article-detail .inner-avatar img {
    width: 100%;
    height: auto;
}

.article-detail .inner-content {
    max-width: 770px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.28;
}

@media (max-width: 575.98px) {
    .article-detail {
        padding: 24px 0 60px;
    }

    .article-detail .inner-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .article-detail .inner-avatar {
        margin-bottom: 24px;
    }
}

/* End article-detail */

/* box-contact */
.box-contact {
    padding: 32px 0 100px;
}

.box-contact .inner-wrap {
    display: flex;
    justify-content: space-between;
}

.box-contact .inner-info {
    max-width: 470px;
    width: 45%;
}

.box-contact .inner-map {
    max-width: 570px;
    width: 50%;
    aspect-ratio: 570/480;
}

.box-contact .inner-map iframe {
    width: 100%;
    height: 100%;
}

.box-contact .inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-contact .inner-list li {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
}

.box-contact .inner-list li:first-child {
    border-top: 1px solid #E0E0E0;
    padding-top: 16px;
}

.box-contact .inner-list li:last-child {
    margin-bottom: 0;
}

.box-contact .inner-list li i {
    color: var(--color-text);
    width: 24px;
    font-size: 18px;
    margin-right: 16px;
}

.box-contact .inner-list li span {
    flex: 1;
    font-weight: 600;
}

.box-contact .inner-list li span a {
    color: var(--color-text);
    margin: 3px 0;
    display: inline-block;
}

.box-contact .inner-direct {
    background-color: var(--color-secondary);
    border: 0;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-left: 32px;
}

.box-contact .inner-direct img {
    margin-left: 8px;
    height: 20px;
    width: auto;
}

@media (max-width: 991.98px) {
    .box-contact .inner-wrap {
        flex-wrap: wrap;
    }

    .box-contact .inner-info {
        max-width: 100%;
        width: 100%;
        order: 2;
    }

    .box-contact .inner-map {
        max-width: 100%;
        width: 100%;
        order: 1;
        margin-bottom: 48px;
    }
}

@media (max-width: 575.98px) {
    .box-contact {
        padding: 0 0 48px;
    }

    .box-contact > .container {
        padding: 0;
    }

    .box-contact .inner-info {
        padding: 0 15px;
    }

    .box-contact .inner-list li {
        flex-wrap: wrap;
    }

    .box-contact .inner-list li span {
        flex: none;
        width: calc(100% - 40px);
    }

    .box-contact .inner-direct {
        margin-left: 40px;
        margin-top: 12px;
    }

    .box-contact .inner-map {
        aspect-ratio: 360/428;
    }
}

/* End box-contact */
