/*------------------------------------*\
  SETTINGS
\*------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: "Poppins", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #272525;
    font-size: 16px;
    font-weight: 400;
    background-color: #F9F9F9;
}

body.fixed {
    overflow: hidden;
}


a {
    color: #212121;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
}


b, strong {
    font-weight: 700;
}

table {
    width: 100%;
    max-width: 100%;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
}

.form-control:focus {
    border-color: #ff9199;
    box-shadow: 0 0 0 0.2rem rgba(255, 115, 115, 0.25);
}

.required {
    color: #D7000F;
}

.pre {
    white-space: pre-line; 
}


@media (min-width: 576px) {
    html {
        font-size: 16px;
    }
}





/*------------------------------------*\
  UTILITIES
\*------------------------------------*/

.overlay {
    position: relative;
    transition: .3s;
}

.overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}

.overlay-4::before {
    opacity: 0.4;
}

.p-relative {
    position: relative;
}

.o-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list-style-none {
    list-style: none;
}

.add-shadow {
    box-shadow: 0 4px 15px 0 rgb(175 175 175 / 20%);
}

.img-autofit img {
    max-width: 100%;
    height: auto !important;
}

.image-align-center {
    text-align: center !important;
}

@media (min-width: 1366px){
    .col-lg-2-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/**
 *  Width
 */

@media (min-width: 576px) {
    .w-lg-auto {
        width: auto !important;
    }
    
}




/*------------------------------------*\
  FONT
\*------------------------------------*/

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.letter-spacing-4 {
    letter-spacing: 4px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.letter-spacing-8 {
    letter-spacing: 8px;
}

.letter-spacing-11 {
    letter-spacing: 11px;
}

.line-height-5 {
    line-height: 1.5em;
}

.line-height-8 {
    line-height: 1.8em;
}

.font-small {
    font-size: 12px;
}

.font-heading {
    font-family: 'Noto Serif TC', 'Microsoft JhengHei', serif;
}



/*------------------------------------*\
  COLORS, BG & BORDER
\*------------------------------------*/

.color-primary {
    color: #D7000F;
}

.color-gray-light {
    color: #b5b5b6;
}


.bg-color-primary {
    background-color: #D7000F;
}

.bg-color-gray {
    background-color: #f8fafc;
}

.bg-color-light {
    background-color: #fff !important;
}


.text-muted {
    font-size: 14px;
}

.under-below { 
    -webkit-text-underline-position: under;
    -ms-text-underline-position: below;
    text-underline-position: under; 
}


.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-line-1 {
    -webkit-line-clamp: 1;
}

.ellipsis-line-2 {
    -webkit-line-clamp: 2;
}

.ellipsis-line-3 {
    -webkit-line-clamp: 3;
}




/*------------------------------------*\
  LAYOUTS
\*------------------------------------*/
.main {
    position: relative;
    overflow: hidden;
}


.container-wide {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding-top: 30px;
    padding-bottom: 40px;
}

@media (min-width: 1200px) {
    .container-wide {
        max-width: 1440px;
        width: 90%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}





/*------------------------------------*\
  COMPONENTS
\*------------------------------------*/

/**
 *  Button
 */

.button {
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    width: 240px;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 5px;
    transition: 0.3s;
}

.button.round {
    border-radius: 25px;
}

.button svg {
    transition: 0.3s;
}

.button-primary {
    background-color: #D7000F;
    color: #fff;
}

.button-primary:hover {
    background-color: #ff0011;
    color: #fff;
}

.button-dark {
    background-color: #272525;
    color: #fff;
}

.button-dark:hover {
    background-color: #000000;
    color: #fff;
}

.button-default {
    background-color: #eee;
    color: #8d8d8d;
}

.button-default:hover {
    background-color: #272525;
    color: #ffffff;
}

.button-default:hover svg {
    stroke:#ffffff;
}

.button-default svg {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.button-outline-primary {
    border-color: #D7000F;
    color: #D7000F;
}

.button-outline-primary:hover {
    background-color: #D7000F;
    color: #fff;
}

    .button-outline-primary:hover svg {
        stroke: #fff;
    }

.button-outline-light {
    border-color: #fff;
    color: #fff;
}

.button-outline-light:hover {
    background-color: #fff;
    color: #D7000F;
}

    .button-outline-light:hover svg {
        stroke: #D7000F;
    }


.button.arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-text {
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: #858585;
}

.button-text:hover {
    color: #D7000F;
}

.button-text:hover svg {
    stroke:#D7000F;
}


.button-underline {
    position: relative;
    width: auto;
}

.button-underline::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: #D7000F;
    transition: 0.3s;
}

.button-underline:hover::before {
    width: 93%;
}

.button-pool {
    text-align: center;
}

    .button-pool .button {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 15px;
        width: 240px;
    }


/**
 *  Dropdown
 */


.drop {
    position: relative;
}

.drop__content {
    display: none;
    position: absolute;
    width: 100%;
}

.drop:hover .drop__content,
.drop.active .drop__content {
    display: block;
}



/**
 *  Collapse
 */


.collapse__content {
    display: none;
}

.collapse__button.active ~ .collapse__content {
    display: block;
}



/**
 *  Tabs
 */

.tab-nav {
    display: flex;
    border-bottom: 1px solid #ededed;
}

    .tab-nav a {
        position: relative;
        display: block;
        padding: 10px 20px;
    }

    .tab-nav a:hover,
    .tab-nav a.active {
        color: #D7000F;
    }

    .tab-nav a.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #D7000F;
    }


.tab-container [data-tab-content] {
    display: none;
}

.tab-container [data-tab-content].active {
    display: block;
}




/**
 *  Animate
 */

.animate {
    animation-duration: 1s;
}

@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -40px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

.animate__delay-200ms {
    animation-delay: 200ms;
}

.animate__delay-400ms {
    animation-delay: 400ms;
}

.animate__delay-600ms {
    animation-delay: 600ms;
}

.animate__delay-800ms {
    animation-delay: 800ms;
}

.animate__delay-1s {
    animation-delay: 1s;
}



/**
 *  Image box
 */

.image-box {
    position: relative;
    display: flex !important;
}

    .image-box-outer {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        margin: 0;
        line-height: 0;
    }

    .image-box-outer.vertical {
        padding-bottom: 120%;
    }

    .image-box-outer.ratio-3-2 {
        padding-bottom: 66.66%;
    }

    .image-box-outer.ratio-16-9 {
        padding-bottom: 56.25%;
    }

        .image-box-inner {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }

            .image-box-inner img {
                width: 100%;
                height: 100%;
                object-position: 50% 50%;
                object-fit: cover;
            }

            .image-box-inner img.object-fit-contain {
                object-fit: contain;
            }

.image-hover--zoom img {
    transition: 0.5s;
}

.image-hover--zoom:hover img {
    transform: scale(1.05);
}


.image-box .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}



/**
 *  icon box
 */

.icon-box .icon {
    width: 40px;
    height: 40px;
    border: 1px solid #919191;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.icon-box__i svg {
    width: 48px;
    height: 48px;
}

.icon-box__title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

    .icon-box__desc {
        font-size: 15px;
        font-weight: 300;
    }



/**
 *  Slider
 */

 .site-hero {
    position: relative;
    margin-top: 70px;
}

.hero-slider {
    width: 100%;
    overflow: hidden;
}

    .hero-slider .slide {
        position: relative;
        /* height: calc(100vh - 70px);
        background-size: cover; */
    }

    /* .hero-slider .slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(28, 28, 28, 0.15);
    } */

    .banner-wrapper {
        max-width: 100%;
    }
    .banner {
        width: 100%;
        padding-bottom: 40%;
        height: 0;
        position: relative;
        overflow: hidden;
    }
    .banner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .hero-slider .slide-content {
        position: absolute;
        width: 72%;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        letter-spacing: 2px;
        text-align: center;
    }

    .hero-slider .slide-content .heading {
        font-size: 24px;
    }

    .hero-slider p {
        letter-spacing: 0.5px;
    }

    .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .arrow-prev {
        left: 10px;
    }

    .arrow-next {
        right: 10px;
    }

    .slick-arrow > svg {
        width: 36px;
        height: 36px;
    }
    
    
    
@media(min-width: 576px) {
    .hero-slider .slide-content .heading {
        font-size: 48px;
    }

    .hero-slider p {
        font-size: 16px;
    }

    .animate__bgZoomOut {
        animation: bgZoomOut 8s;
    }

    /* .hero-slider .slide {
        background-size: 130%;
    } */

    .arrow-prev {
        left: 25px;
    }

    .arrow-next {
        right: 25px;
    }
    
}

/* @media(max-width: 576px)  {
    .hero-slider .slide {
        height: calc(100vh - 110px);
    }

    .hero-slider .slide,
    .hero-slider .slide > div {
        background-size: cover !important;
    }
} */



@keyframes bgZoomOut {
    0% {
        background-size: 130%;
    }
    100% {
        background-size: 110%;
    }
}
    

@media (min-width:576px) {
    .hero-slider .slide-content {
        width: 400px;
        top: 40%;
    }
}


@media (min-width:1367px) {
    .hero-slider .slide-content {
        width: 640px;
    }
}





/**
 *  carousel
 */

.carousel {
    width: 100%;
    overflow: hidden;
}

    .carousel-control {
        position: absolute;
        width: 200px;
        bottom: -50px;
        left: 50%;
        transform: translate(-50%);
    }

    .carousel-control .swiper-button-prev:after,
    .carousel-control .swiper-container-rtl .swiper-button-next:after,
    .carousel-control .swiper-button-next:after,
    .carousel-control .swiper-container-rtl .swiper-button-prev:after {
        display: none;
    }

    .carousel-slides-count {
        font-size: 14px;
    }
    


/**
 *  page banner
 */


.page-banner {
    position: relative;
    width: 100%;
    margin-top: 70px;
}

.page-banner .banner {
    padding-bottom: 26%;
}



/**
 *  page breadcrumb
 */

.page-breadcrumb {
    margin-top: 30px;
    margin-bottom: 10px;
} 

    .page-breadcrumb ul {
        padding-left: 0;
    }

        .page-breadcrumb li {
            display: inline;
            vertical-align: middle;
        }

            .page-breadcrumb li a {
                font-size: 15px;
            }

            .page-breadcrumb li a:hover {
                color: #000;
            }

            .page-breadcrumb li:last-child svg {
                display: none;
            }



/**
 * Pagination
 */

 .page__pagination {
    margin-top: 20px;
    margin-bottom: 0;
}

    .page__pagination .pagination {
        justify-content: center;
        padding-left: 0;
    }

        .pagination .page-item {
            margin-right: 12px;
            list-style: none !important;
        }

        .pagination .page-item:last-child {
            margin-right: 0;
        }

        .pagination .page-link {
            display: inline-block;
            padding: 0;
            color: #222222;
            border: 3px solid #EBEBEB;
            font-size: 15px;
            line-height: 38px;
            width: 40px;
            height: 40px;
            border-radius: 8px !important;
            text-align: center;
        }

        .pagination .page-link:hover {
            background-color: #222222;
            color: #fff;
            opacity: 0.8;
        }

        .pagination .page-link.active {
            border: 3px solid #ffc5c5;
            background-color: #D7000F;
            color: #fff;
        }

        .pagination .page-link svg {
            position: relative;
            top: -3px;
            stroke: #626262;
            stroke-width: 1.5;
            width: 22px;
            height: 22px;
        }

        .pagination .page-item .page-quick-link {
            background-color: #efefef;
            border-color: #efefef;
        }

        .pagination .page-item .page-quick-link svg {
            stroke: #9a9a9a;
        }




/**
 *  Back to Top
 */

.floats {
    position: fixed;
    bottom: 65px;
    right: 30px;
    display: none;
    transition: 0.3s;
}

.floats .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}

.floats .line {
    font-size: 15px;
    color: #858585;
}

.floats .line > img {
    margin-bottom: 5px;
    width: 60px;
}

.floats .back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #858585;
}

.floats .back-to-top svg {
    transition: 0.3s;
}


.floats .back-to-top:hover {
    background-color: #D7000F;
}

.floats .back-to-top:hover svg {
    stroke: #fff;
}



/**
 *  Header
 */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.header.sticky {
    border-bottom: 1px solid #eee;
}

.header .header-content {
    position: relative;
}

    .site-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.3s;
    }

        .site-nav .site-logo img {
            height: 40px;
        }

        .site-menu {
            display: flex;
            margin-bottom: 0;
            list-style: none;
        }

            .site-menu > .item > a {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 70px;
                padding-left: 5px;
                padding-right: 5px;
                border-bottom: 5px solid transparent;
            }


            .site-menu > .item > a:hover,
            .site-menu > .item.drop.active > a {
                opacity: 0.8;
                color: #272525;
                background-color: #F1F1F1;
                border-color: #D7000F;
            }

            .site-menu > .item > a:hover::before,
            .site-menu > .item.drop.active > a::before {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 6px 8px 6px;
                border-color: transparent transparent #d7000e transparent;
            }

            .site-menu .drop {
                position: unset;
            }

            .site-menu .drop__content {
                left: 0;
                background-color: #F8F8F8;
                padding-top: 40px;
                padding-bottom: 40px;
                box-shadow: 0 15px 30px 1px rgb(29 29 29 / 15%);
                border-top: 1px solid #eee;
                overflow: auto;
                max-height: calc(100vh - 70px);
            }

                .site-menu__sub .item {
                    margin-bottom: 40px;
                }

                .site-menu__sub .image-box {
                    background-color: #fff;
                }

                .site-menu__sub .title {
                    display: flex;
                    align-items: flex-start;
                    font-weight: 700;
                    font-size: 18px;
                    margin-top: 15px;
                    margin-bottom: 15px;
                }

                .site-menu__sub .title::before {
                    content: "";
                    display: block;
                    width: 4px;
                    height: 22px;
                    background-color: #d7000e;
                    margin-top: 2px;
                    margin-right: 10px;
                }

                .site-menu__sub .nav > a {
                    display: flex;
                    align-items: center;
                    width: 100%;
                }

                .site-menu__sub a:hover {
                    color: #d7000e;
                }

    
@media (min-width: 991px) {
    .site-logo a {
        padding-top: 0;
        padding-bottom: 0;
    }

    .site-logo .logo {
        height: 32px;
    }
}

@media (min-width: 1100px) {
    .site-menu > .item > a {
        padding-left: 10px;
        padding-right: 10px;
    }
}


@media (min-width: 1280px) {
    .site-menu > .item > a {
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media (max-width: 991px) {
    .site-nav {
        height: 70px;
    }

    .site-nav .site-logo img {
        height: 30px;
    }
}


/**
 *  Mobile Nav
 */

.mobile-toggle {
    position: absolute;
    top: 17px;
    right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 97;
}


.slide-toggle {
    transition: 0.3s;
}

.toggle-icon {
    position: relative;
    width: 22px;
    height: 14px;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
        
    .toggle-icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background-color: #525252;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .toggle-icon span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }
        
    .toggle-icon span:nth-child(2) {
        top: 7px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }
        
    .toggle-icon span:nth-child(3) {
        top: 14px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }


    .mobile-toggle.open .toggle-icon span {
        background-color: #afafaf;
    }

    .mobile-toggle.open .toggle-icon span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -1px;
        left: 4px;
    }
        
    .mobile-toggle.open .toggle-icon span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }
        
    .mobile-toggle.open .toggle-icon span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 14px;
        left: 4px;
    }


.slide-sidebar {
    width: 100%;
    height: 0;
    background-color: #fff;
    opacity: 0;
    transition: .5s;
    z-index: 99;
    pointer-events: none;
    overflow: hidden;
}

    .slide-sidebar > ul {
        padding-left: 0;
        list-style: none;
    }



.slide-sidebar.active {
    height: 100vh;
    pointer-events: initial;
}

.slide-sidebar.right-to-left {
    position: absolute;
    top: 0;
    left: 115%;
    height: 100vh;
    transition: 0.3s;
    opacity: 1;
}

.slide-sidebar.right-to-left.active {
    left: 0;
}


.mobile-nav {
    position: relative;
}

.mobile-nav.active {
    opacity: 1;
}


    .mobile-nav ul {
        padding-left: 0;
    }

    .mobile-nav a {
        display: inline-block;
        padding: 12px 0;
        width: 100%;
        font-size: 20px;
        text-transform: uppercase;
        border-bottom: 1px solid #EEEEEE;
    }

    .mobile-nav a.back {
        font-size: 18px;
        color: #979797;
    }

        .mobile-nav a.back > i {
            font-size: 15px;
        }

    .mobile-nav a:hover {
        color: #d7000e;
    }

    .mobile-nav .mobile-menu {
        padding-top: 10px;
    }


.mobile-nav__sub .slide-sidebar {
    padding: 30px 0;
}



.mobile-nav .slide-toggle:not(.back) {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .slide-toggle:not(.back)::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    opacity: 0.8;
    font-size: 16px;
    margin-right: 5px;
}

.mobile-line {
    position: relative;
    padding: 8px 15px 8px 35px;
    border-radius: 25px;
    background-color: #4CC764;
    margin-right: 40px;
    color: #fff;
}

    .mobile-line img {
        position: absolute;
        top: 4px;
        left: 5px;
        width: 30px;
    }

@media(min-width: 991px) {
    .mobile-toggle {
        display: none;
    }
}
    


/**
 *  tree
 */

 .tree {
    width: 100%;
    display: none;
}

    .tree ul {
        padding-left: 0;
    }
    
        .tree li {
            transition: 0.3s;
        }

        .tree li:hover {
            opacity: 0.9;
        }

        .tree a li {
            border-bottom: 1px solid #e8e9ea;
        }

        .tree a {
            display: block;
            padding: 12px 15px;
            color: #5c5c5c;
            width: 100%;
            font-size: 17px;
        }

        .tree a:hover {
            color: #000;
        }

        .tree a.active {
            color: #000;
        }

        .tree a > svg {
            stroke: #272525;
            transform: rotate(90deg);
        }

        .tree .collapse__button svg:hover {
            stroke: #000;
        }

        .tree .tree-label {
            font-size: 22px;
            margin-bottom: 5px;
            padding: 12px 20px;
            border-bottom: 1px solid #e8e9ea;
        }

        .tree-content {
            background-color: #fff;
        }

        .tree .collapse__button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .tree .collapse__item.open > .collapse__content {
            display: block;
        }

        .tree .collapse__content li:not(.layer-1) a {
            padding-left: 40px;
        }

        .tree .collapse__content .layer-2 {
            background-color: #eee;
        }

        .tree .collapse__content .layer-3 {
            background-color: #9b9b9b;
            border-bottom: 1px solid #8d8d8d;
        }

            .tree .collapse__content .layer-3 a {
                color: #fff;
            }

            .tree .collapse__content .layer-3 a.active {
                background-color: #D7000F;
            }

            .tree a > svg {
                display: none;
            }

            .tree .collapse__button > svg {
                display: inline-block;
                transform: rotate(90deg);
            }

        .tree .tree-label.collapse__button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #D7000F;
            margin-bottom: 0;
            width: 100%;
            font-size: 20px;
            font-weight: 700;
            padding: 8px 15px 8px 10px;
        }

        .tree .tree-label.collapse__button::after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D7000F' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            display: block;
            width: 18px;
        }


@media(min-width: 992px) {  
    .tree {
        display: block;
        width: 310px;
        background-color: #fff;
    }

    .tree .collapse__button ~ .collapse__content a {
        padding-left: 35px;
    }
}

@media(max-width: 992px) {
    .tree .collapse__button {
        width: 50px;
    }
    
    .tree-label {
        border-color: #D7000F;
    }
}



/**
 *  page mobile menu
 */

 
 .page-mobile-menu a {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-mobile-menu i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
} 

.page-mobile-menu .menu {
    text-align: center;
    background-color: #fafafa;
}

.page-mobile-menu  .menu > li {
    border-bottom: 1px solid #ddd;
}

.page-mobile-menu > .collapse__item > .collapse__button {
    display: block;
    border: 1px solid #909090;
    text-align: center;
}

.page-mobile-menu > .collapse__item > .collapse__content {
    border: 1px solid #909090;
    border-top: none;
}

.page-mobile-menu .menu .collapse__item.open {
    padding-bottom: 10px;
}

.page-mobile-menu .menu .collapse__button.active {
    background-color: #efefef;
}




/**
 *  Product
 */

.product {
    position: relative;
}
 
    .product .image-box {
        flex-direction: column;
        background-color: #fff;
    }



    .product-style-1 .image-box::after {
        content: "";
        display: block;
        width: 100%;
        height: 8px;
        background-color: #D7000F;
    }
    
    .product-style-1 .image-box::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 8px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 12px 15px 12px;
        border-color: transparent transparent #d7000e transparent;
    }

    .product-style-1 .image-box__caption {
        padding: 20px 15px;
    }

    .product-style-1 .product-title {
        font-size: 24px;
        font-weight: 700;
        color: #212121 !important;
    }

    .product-style-1 .product-hover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
        font-size: 24px;
        font-weight: 700;
        padding-left: 30px;
        padding-right: 30px;
        color: #fff;
        background-color: rgba(215, 0, 14, 0.8);
        cursor: pointer;
        z-index: 2;
        transition: 0.3s;
    }

    .product-style-1 .product-hover svg {
        width: 36px;
        margin-bottom: 20px;
    }

    .product-style-1 .product::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(215, 0, 14, 0.85);
        z-index: 1;
        transition: 0.3s;
        opacity: 0;
    }

    .product-style-1:hover::after {
        opacity: 1;
    }

    .product-style-1:hover .product-hover {
        opacity: 1;
        pointer-events: initial;
    }


    .product-style-2 .image-box__caption {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        color: #212121;
        background-color: #f1f1f1;
        padding: 8px 10px;
        transition: 0.3s;
    }

    .product-style-2 .image-box__caption::before {
        content: "";
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 12px 15px 12px;
        border-color: transparent transparent #f1f1f1 transparent;
        transition: 0.3s;
    }

    .product-style-2:hover .image-box__caption {
        color: #fff;
        background-color: #d7000e;
    }

    .product-style-2:hover .image-box__caption::before {
        border-color: transparent transparent #d7000e transparent;
    }


.product-slideshow .image-box-outer {
    background-color: #fff;
}

.p-slider-nav .image-box {
    cursor: pointer;
}

.p-slider-nav .slick-prev:before,
.p-slider-nav .slick-next:before {
    color: rgb(145, 145, 145);
}

.p-slider-nav .slick-track {
    margin-left: unset;
}

.p-slider-nav .slick-prev {
    left: -4px;
}

.p-slider-nav .slick-next {
    right: -4px;
}

.product-intro .heading {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
}

.product-intro .item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.item-flex {
    display: flex;
}

.item-label {
    flex-shrink: 0;
    margin-right: 20px;
}

.item-text {
    flex-grow: 1;
}

.product-slideshow .slick-arrow {
    z-index: 9;

}


/* lightbox */
body.lg-on {
    position: fixed;
}

.lg-backdrop { 
    background-color: rgb(36 36 36 / 90%) !important;
}

.lg-outer .lg-thumb-outer {
    background-color: rgb(13 10 10 / 80%) !important;
}

@media (min-width: 576px) {
    .p-slider-nav .slick-prev {
        left: -15px;
    }
    
    .p-slider-nav .slick-next {
        right: -15px;
    }

    .product-intro .heading {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    } 

    .product-intro .heading .social-share {
        font-size: 16px;
    }

    .product-slideshow .slick-prev {
        left: 50%;
        top: -20px;
        transform: translateX(-50%) rotate(90deg);
    }

    .product-slideshow .slick-next {
        left: 50%;
        top: unset;
        bottom: -20px;
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (max-width: 576px) {      
    .product-intro .heading .social-share {
        margin-top: 5px;
    }

        .product-intro .heading .social-share a {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }

        .product-intro .heading .social-share img {
            width: 18px;
            height: 18px;
        }

    .product-slideshow .slick-next {
        right: -5px;
    }

    .product-slideshow .slick-prev {
        left: -5px;
    }
}



/**
 *  Call to action
 */

.call-to-action {
    color: #fff;
    background-color: #D7000F;
}

    .call-to-action .content {
        display: flex;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .call-to-action .title {
            display: flex;
            align-items: center;
            font-size: 28px;
            width: 450px;
        }

        .call-to-action .title::after {
            content: "";
            display: block;
            width: 1px;
            height: 70px;
            background-color: #DCDCDC;
            margin-left: 15%;
        }

        .call-to-action .desc {
            width: 35%;
            margin-right: auto;
        }

        .call-to-action .button {
            width: 160px;
        }

@media(max-width:1211px) {
    .call-to-action .title {
        width: 380px;
    }
}

@media(max-width:991px) {
    .call-to-action .content {
        flex-direction: column;
    }

    .call-to-action .title {
        flex-direction: column;
    }

    .call-to-action .title::after {
        margin-left: 0;
        height: 40px;
        transform: rotate(90deg);
    }

    .call-to-action .desc {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 40px;
    }
}



/**
 *  Footer
 */

.footer {
    padding-top: 60px;
    padding-bottom: 30px;
    text-align: center;
    background-color: #fff;
}

    .footer-logo img {
        height: 115px;
    }
    

        .footer-menu {
            display: flex;
            flex-wrap: wrap;
            margin-top: 40px;
            margin-bottom: 40px;
            flex-shrink: 0;
            list-style: none;
            padding-left: 0;
        }

        .footer-menu > li > a {
            position: relative;
            display: inline-block;
            padding: 5px 0 10px 20px;
        }

        .footer-menu > li > a:hover {
            color: #ff2b3a;
        }

        .footer .contact-info {
            display: flex;
            justify-content: flex-end;
            padding-bottom: 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
        }


            .footer .contact-info a {
                font-size: 15px;
                margin-left: 5px;
            }

            .contact-info a:hover {
                color: #D7000F;
            }

            .footer .contact-info a:hover {
                color: #ff2b3a;
            }

    
    .copyright {
        font-size: 12px;
        text-align: center;
    }


    .social-media a {
        margin-left: 15px;
        font-size: 20px;
    }

    .social-media a:hover {
        color: #333;
        opacity: 0.8;
    }

    .social-share {
        display: flex;
    }

        .social-share a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 8px;
            color: #fff;
        }

        .social-share a.facebook-share {
            background-color: #4082e5;
        }

        .social-share a.line-share {
            background-color: #39d969;
        }

        .social-share a.twitter-share {
            background-color: #0ccdff;
        }

        .social-share img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }



@media (min-width: 576px) {
    .footer {
        display: flex;
        justify-content: flex-end;
        text-align: left;
    }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-menu {
            margin-top: 0;
            margin-bottom: 0;
        }

        .footer .contact-info {
            margin-top: -20px;
        }
        
        .footer .contact-info .item {
            margin-left: 20px;
        }

}

@media (max-width: 576px) {
    .footer .footer-content,
    .footer .contact-info {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-menu .item {
        width: 50%;
        text-align: left;
    }

    .footer-menu .item:nth-child(even) {
        text-align: right;
    }

    .footer-menu > li > a {
        padding: 10px 0;
    }

    .footer .contact-info {
        flex-flow: column;
        align-items: flex-start;
        border-bottom: none;
        margin-bottom: 60px;
    }

    .contact-info a:hover {
        color: #212121;
    }

    .footer .contact-info a:hover {
        color: #212121;
    }

    .footer .social-media {
        position: absolute;
        bottom: 100px;
        left: 50px;
    }

    .footer .social-media a {
        margin-left: 0;
        margin-right: 15px;
    }
    

    .copyright {
        margin-left: auto;
        margin-right: auto;
    }
}






/*------------------------------------*\
  PAGES CONTENT
\*------------------------------------*/


.section-heading {
    font-weight: 700;
    font-size: 42px;
}

.section-heading.underline {
    position: relative;
    margin-bottom: 15px;
}

.section-heading.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100px;
    height: 4px;
    background-color: #D7000F;
}

.section-desc {
    font-size: 17px;
}


/**
 *  Home
 */

.bg-figure {
    position: absolute;
}

.bg-figure-1 {
    top: 28%;
    left: -50%;
    background-color: #E8E8E8;
    width: 150%;
    height: 2000px;
    transform: rotate(20deg);
    z-index: -2;
}

.bg-figure-2 {
    top: 25%;
    right: -50%;
    background-color: #F2F2F2;
    width: 150%;
    height: 2000px;
    transform: rotate(-30deg);
    z-index: -3;
}

.bg-figure-3 {
    top: 68%;
    left: -50%;
    background-color: #F1F1F1;
    width: 150%;
    height: 800px;
    transform: rotate(20deg);
    z-index: -1;
}


@media(max-width: 991px) {
    .bg-figure {
        display: none;
    }
}



.home__section-header {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.home__section-header .section-desc {
    width: 100%;
    font-size: 18px;
    text-align: center;
}

.home__section-header .button {
    position: relative;
    width: 148px;
}

.home__section-header .button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 190px;
    background-color: #D7000F;
    width: 200px;
    height: 1px;
    display: none;
}


@media(min-width:992px) {
    .home__section-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .home__section-header .section-heading {
        font-size: 60px;
    }

    .home__section-header .section-desc {
        margin-left: 80px;
        width: 460px;
        font-size: 20px;
        text-align: left;
    }

    .home__section-header .button {
        margin-left: auto;
    }

    .home__section-header .button::before {
        display: block;
    }
}


@media(max-width:991px) {
    .home__section-header .section-heading.underline::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* home news */
    .home__news .card__solution .card-body {
        color: #fff;
        background-color: #D7000F;
        padding: 30px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .home__news .card__solution .title {
            font-size: 22px;
            font-weight: 700;
            text-align: center;
        }

        .home__news .card__solution .title::after {
            content: "";
            display: table;
            width: 90px;
            height: 1px;
            background-color: #fff;
            margin: 20px auto;
        }

        .home__news .card__solution p {
            margin-bottom: 30px;
        }

        .home__news .card__solution .button {
            width: 240px;
            max-width: 100%;
        }


.home__news .card-news {
    border: 0;
    border-radius: 0;
    background-color: transparent;
}


.home__news .card-body {
    padding-left: 0;
    padding-right: 0;
}

    .home__news .card-news-title {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .home__news .card-news-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #D7000F;
    }

    .home__news .card-news .title {
        font-size: 28px;
        margin-bottom: 0;
    }

    .home__news .card-news .sub-title {
        color: #D7000F;
        font-size: 15px;
        font-weight: 500;
    }


    .home__news .card-news .post {
        border-bottom: 1px solid #D2D2D2;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

        .home__news .card-news .post-content {
            margin-left: 15px;
            margin-right: 15px;
        }

        .home__news .card-news .post-date {
            font-size: 14px;
            color: #858585;
            margin-top: 10px;
            margin-bottom: 5px;
        }

        .home__news .card-news .post a:hover {
            color: #D7000F;
        }

        .home__news .card-news .button {
            width: 148px;
        }


@media(min-width:577px) {
    .home__news-cards {
        display: flex;
        flex-wrap: wrap;
    }

    .home__news .card {
        width: 50%;
    }

    .home__news .card__solution {
        width: 100%;
    }

    .home__news .card__solution .title {
        font-size: 32px;
    }

    .home__news .card:nth-child(2) {
        padding-right: 10px;
    }

    .home__news .card:nth-child(3) {
        padding-left: 10px;
    }
}


@media(min-width:1281px) {
    .home__news .card {
        width: 33.333333%;
    }

    .home__news .card-news {
        padding: 30px 10px;
        background-color: #fff;
        border-color: #E5E5E5;
        border-left: none;
    }
    
    .home__news .card-news .post {
        display: flex;
    }

    .home__news .card-news .post-date {
        margin-top: 0;
    }

    .home__news .card-news .post-image {
        width: 35%;
        flex-shrink: 0;
    }

    .home__news .card-news .post-content {
        margin-right: 0;
    }

    .home__news .card-body {
        padding: 1.25rem;
    }


    .home__news .card-news:nth-child(3),
    .home__news .card-news:nth-child(3) .post {
        background-color: #F6F6F6;
    }
}

@media(min-width: 991px) and (max-width:1281px) {
    .home__news .card__solution {
        margin-bottom: 60px;
    }

    .home__news .card__solution .card-body {
        padding: 40px;
    }
}

@media(max-width: 991px) {
    .home__news .card-news {
        padding-top: 50px;
    }

    .home__news .card-news .sub-title {
        position: absolute;
        top: -22px;
        left: 0;
    }

    .home__news .card-news .button {
        position: absolute;
        top: 60px;
        right: 0;
        padding: 6px 10px;
        width: 132px;
    }

    .home__news .card:nth-child(2) .button {
        right: 10px;
    }
}

@media(max-width: 576px) {
    .home__news .card-news .button {
        width: 130px;
        font-size: 14px;
        top: 64px;
    }

    .home__news .card-news .button > span {
        flex-shrink: 0;
    }
}

.home__logos {
    padding-top: 100px;
    padding-bottom: 100px;
}

    .home__logos .logo-display {
        display: flex;
        background-color: #fff;
        width: 100%;
    }

        .home__logos .logo-title {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #fff;
            background-color: #D7000F;
            width: 400px;
            max-width: 100%;
            flex-shrink: 0;
        }

            .home__logos .logo-title .title {
                font-size: 36px;
                font-weight: 700;
            }

            .home__logos .logo-title .button {
                justify-content: center;
                color: #fff;
            }

            .home__logos .logo-title .button:hover {
                opacity: 0.8;
            }

            .home__logos .logo-title .button:hover svg {
                stroke: #fff;
            }

    .home__logos .logos {
        padding: 70px;
    }


    .home__logos .image-box {
        width: 100%;
        padding: 20px;
        overflow: hidden;
    }

        .home__logos .image-box .image-box-outer {
            border: 1px solid #D2D2D2;
            background-color: #fff;
            border-radius: 50%;
        }
        
        .home__logos .image-box img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 70%;
            height: auto;
        }



    .home__logos .slick-arrow {
        width: 40px;
        height: 40px;
        border: 1px solid #D2D2D2;
    }

    .home__logos .slick-prev {
        left: 20px;
    }

    .home__logos .slick-next {
        right: 20px;
    }

    

    .slick-prev:before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23858585' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");;
    }

    .slick-next:before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23858585' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    }

    .slick-prev:before, .slick-next:before {
        color: #1e1e1e;
        opacity: 1;
    }



@media(max-width: 991px) {
    .home__logos .logo-display {
        flex-direction: column;
        background-color: #d7000f;
    }

    .home__logos .logo-title {
        padding-top: 40px;
        width: 100%;
    }

    .home__logos .logos {
        padding: 40px 70px;
    }

    .home__logos .image-box {
        padding: 8px;
    }

    .home__logos .image-box img {
        background-color: #fff;
    }

    .home__logos .slick-prev:before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
    }

    .home__logos .slick-next:before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    }

    .home__logos .slick-dots {
        left: 0;
        bottom: 0;
    }

    .slick-dots li button:before {
        content: "";
        opacity: 0.5;
        width: 20px;
        height: 4px;
        background-color: #fff;
        border-radius: 5px;
    }

    .slick-dots li.slick-active button:before {
        opacity: 1;
    }
    
}



/**
 *  Page
 */

.brand-card {
    position: relative;
    margin-bottom: 80px;
}

.brand-card__subtitle {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    color: #D7000F;
    border-bottom: 1px solid #D7000F;
    padding-bottom: 10px;
}

    .brand-card__subtitle img {
        width: 35px;
        margin-right: 5px;
    }

.brand-card__title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
}

.brand-card__intro {
    margin-bottom: 50px;
    font-size: 17px;
}


.brand-card__image {
    position: relative;
    padding: 45px;
}

.brand-card__image::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 300px 300px;
    border-color: transparent transparent #d7000e transparent;
}

@media(max-width:991px) {
    .brand-card {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 110px;
    }
    
    .brand-card__image {
        padding: 5px;
    }

    .brand-card__image::before {
        bottom: -5px;
        right: -5px;
        border-width: 0 0 180px 180px;
    }

    .brand-card .block:first-child {
        position: unset;
    }

    .brand-card .button {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* post */
.post {
    background-color: #fff;
}

    .post-info {
        padding: 20px;
    }

    .post-title {
        font-weight: 700;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .post-title a:hover {
        color: #D7000F;
    }

    .post-summary {
        color: #707070;
    }


/* video */
.video {
    position: relative;
}

.video .image-box::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f144";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 52px;
    opacity: 0.9;
}


.video__container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    .video__container .video-item {
        position: relative;
        padding-bottom: 56.25%;
        overflow: hidden;
    }

        .video__container .video-item iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }