/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/
@font-face {
    font-family: 'Roboto-regular';
    src: url("../../font/ROBOTO-REGULAR.TTF");
}

@font-face {
    font-family: 'Roboto-medium';
    src: url("../../font/ROBOTO-MEDIUM.TTF");
}

@font-face {
    font-family: 'Popping-light';
    src: url("../../font/POPPINS-LIGHT.TTF");
}

@font-face {
    font-family: 'Popping-medium';
    src: url("../../font/POPPINS-MEDIUM.TTF");
}

@font-face {
    font-family: 'Robotoslab-medium';
    src: url("../../font/ROBOTOSLAB-MEDIUM.TTF");
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
    --primary-color: #cc202e;
    --secondary-color: #D02127;
}

body {
    background-color: #FFF;
    font-size: 15px;
}

*{
    font-family: 'Roboto-regular',sans-serif;
}

a{
    color: #D0D0D0;
    transition: all 0.5s;
}

a:hover,
a:active,
a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
}

section{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1600px) {
    .container-large{
        max-width: 1430px;
    }

    .container-normal{
        max-width: 1230px;
    }
}

.section-title,
.section-subtitle,
.section-intro{
    margin: 0;
    padding: 0;
}

.section-title{
    font-family: 'Robotoslab-medium',sans-serif;
    color: #323131;
    text-transform:uppercase;
}

.section-subtitle{
    font-size: 30px;
}

.section-intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 20px;
    line-height: 2;
    color: #323131;
}

.title-line{
    width: 10%;
    min-width: 110px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 25px auto;
}

.img{
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.img img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    object-fit: cover;
}

.warp{
    margin: 1rem;
    padding: 1rem;
    transition: all 0.5s;
}

.warp:hover{
    box-shadow: 0 0 2px 2px rgba(114,114,114,0.5);
}

.warp .img{
    padding-bottom: 100%;
}

.article{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.article-title{
    font-family: "Roboto-medium",sans-serif;
    font-size: 40px;
    text-align: left;
    padding: 3rem 0;
}

.article img,
.article table{
    max-width: 100%;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination p{
    margin:0;
    cursor:pointer
}

.pagination{
    justify-content:center;
    display: flex;
    padding-top: 2rem;
    padding-bottom: 0;
}

.pagination a{
    display:block;
    float:left;
    margin-right:10px;
    padding:2px 12px;
    height:40px;
    width: 40px;
    background:#fff;
    text-decoration:none;
    color:#808080;
    font-size:15px;
    font-family: 'poppins-medium',sans-serif;
    line-height:38px;
    position: relative;
}

.pagination a:hover{
    color:#fff;
    background: var(--primary-color);
    border:1px var(--primary-color) solid;
}

.pagination a.cur{
    border:none;
    background:var(--primary-color);
    color:#fff;
}

.pagination a .fa{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.pagination p{
    float:left;
    padding:2px 12px;
    font-size:12px;
    height:24px;
    line-height:24px;
    color:#bbb;
    border:1px #ccc solid;
    background:#fcfcfc;
    margin-right:8px;
}

.pagination p.pageRemark{
    border-style:none;
    background:none;
    margin-right:0px;
    padding:4px 0px;
    color:#666;
}

.pagination p.pageRemark b{
    color:red;
}

.pagination p.pageEllipsis{
    border-style:none;
    background:none;
    padding:4px 0px;
    color:#808080;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top,
.show-fixed-form{
    position: fixed;
    display: none;
    background: var(--primary-color);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 100px;
    transition: background 0.5s;
    z-index: 9999;
}

.show-fixed-form{
    bottom: 50px;
    border: none;
}

.show-fixed-form:focus,
.show-fixed-form:active{
    outline: none;
}

.back-to-top i ,
.show-fixed-form i{
    padding-top: 12px;
    color: #fff;
}

.show-fixed-form i{
    padding-top: 0;
}

.show-fixed-form.show{
    display: block;
}

/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.banner{
    position: relative;
    padding: 0;
}

.banner.mobile{
    display: none;
}

.banner .img{
    padding-bottom: 23.4%;
}

.banner.mobile .img{
    padding-bottom: 48%;
}

.banner .img:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.banner .text{
    position: absolute;
    z-index: 2;
}

.banner .text .title{
    font-family: 'poppins-medium',sans-serif;
    font-size: 40px;
    color: #FFF;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
}

.banner .text .intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 17px;
    color: #FFF;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer{
    padding-top: 6rem;
    padding-bottom: 1rem;
    background-color: #202020;
    color: #FFF;
}

.footer h3{
    font-size: 25px;
}

.footer ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer ul li{
    padding: 5px 0;
}

.footer .item h3{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

.footer .item h4{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 18px;
    color: #C4C4C4;
}

.footer .item p{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: #FFF;
    line-height: 1.5;
}

.footer .item a{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 18px;
    color: #C4C4C4;
    transition: all 0.3s;
}

.footer .item a:hover{
    text-decoration: underline;
    color: #FFF;
}

.footer .item.company{
    padding-top: 0;
}

.footer .item.company img{
    margin-bottom: 30px;
}

.footer .item.company .slogan{
    margin-bottom: 30px;
}

.footer .social-links{
    display: flex;
    flex-wrap: wrap;
}

.footer .social-links .social-item{
    position: relative;
    border: 1px solid #FFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.5s;
}

.footer .social-links .social-item i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    color: #FFF;
    transition: all 0.5s;
}

.footer .social-links .social-item:hover{
    background-color: #FFF;
}

.footer .social-links .social-item:hover i{
    color: var(--primary-color);
}

/* Main Footer */
.main-footer{
    display: none;
}

.main-footer .copyright{
    border-top: 1px solid #FFF;
    margin-top: 10px;
    padding-top: 1rem;
}

.main-footer .copyright .container-large{
    margin: 0 auto;
}

.main-footer .copyright .container-large .row{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 15px;
}

.main-footer .copyright .container-large .row>div:last-child{
    text-align: right;
}

.main-footer .copyright .container-large .row>div:last-child a{
    color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 15px;
}

.main-footer .copyright .container-large .row>div:last-child span{
    padding: 0 15px;
}

.main-footer .inquiry{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.main-footer .inquiry > hr{
    width: 100%;
    background-color: #FFF;
    margin-bottom: 45px;
}

.main-footer .inquiry input{
    width: 16%;
    outline: none;
    background-color: #FFF;
    border: none;
    color: #202020;
    padding-left: 15px;
}

/* Mobile Footer */
.mobile-footer{
    padding-top: 1rem;
    padding-bottom: 80px;
    display: block;
}

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

.mobile-footer .panel-heading:after{
    content: "＋";
    color: #FFF;
    right: 25px;
    font-size: 20px;
}

.mobile-footer .panel-heading.active:after{
    content: '－' !important;
    text-decoration: none !important;
}

.mobile-footer .panel-heading .panel-title{
    font-size: 20px;
    padding: 10px 0;
}

#closeFixedForm{
    position: absolute;
    top: 50%;
    right: 120px;
    border: 2px solid #FFF;
    border-radius: 50%;
    background-color: transparent;
    color: #FFF;
    transform: translateY(-50%);
    outline: none;
}

#fixedInquiry{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--primary-color);
    z-index: 999;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
}

#fixedInquiry.show{
    visibility: visible;
    opacity: 1;
}

#fixedInquiryBtn,
#footInquiryBtn{
    font-family: 'Popping-medium',sans-serif;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    background-color: #FFF;
    color: var(--primary-color);
    padding: 10px 25px;
    transition: all 0.5s;
    outline: none;
}

#fixedInquiry .row{
    justify-content: space-between;
}

#fixedInquiry input{
    width: 16%;
    outline: none;
    background-color: rgba(255,255,255,0.2);
    border: none;
    color: #FFF;
    padding-left: 15px;
}

#fixedInquiry input::-webkit-input-placeholder{
    color: #FFF;
}

#fixedInquiry input:-moz-placeholder {
    color: #FFF;
}

#fixedInquiry input::-moz-placeholder {
    color: #FFF;
}

#fixedInquiry input:-ms-input-placeholder {
    color: #FFF;
}

#mobileFixedInquiry{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: var(--primary-color);
    z-index: 999;
}

#mobileFixedInquiry .row{
    justify-content: center;
}

#mobileFixedInquiry .show-mobile-form{
    width: calc(100% - 60px);
    background-color: transparent;
    border: none;
    color: #FFF;
    font-size: 18px;
    outline: none;
}

#mobileFixedInquiry .show-mobile-form i{
    margin-right: 15px;
}

#mobileFixedInquiry .back-to-top{
    position: relative;
    bottom: unset;
    right: unset;
    border-radius: 0;
    border: none;
    display: block !important;
    outline: none;
    width: 60px;
    height: 60px;
    border-left: 1px solid #FFF;
}

#mobileFixedInquiry .back-to-top i{
    padding-top: 0;
}

.back-to-top,
.show-fixed-form{
    display: none;
}

#mobileFixedInquiryForm{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(114,114,114,0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

#mobileFixedInquiryForm .form{
    width: calc(100% - 50px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    background-color: #FFF;
    border-radius: 5px;
}

#mobileFixedInquiryForm .form input{
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
    border: 1px solid #999;
    padding-left: 10px;
}

#closeMobileFixedInquiryForm{
    position: absolute;
    bottom: calc(100% + 50px);
    right: 30px;
    border: 1px solid #FFF;
    border-radius: 50%;
    background-color: transparent;
    outline: none;
    color: #FFF;
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 32px;

}

#mobileFixedInquiryForm.show{
    opacity: 1;
    visibility: visible;
}

#closeMobileFixedInquiryForm:before{
    content: '';
    position: absolute;
    border: none;
    width: 1px;
    height: 50px;
    background-color: #FFF;
    top: 100%;
    left: 50%;
}

#mobileFixedFormBtn{
    width: 100%;
    font-family: 'Popping-medium',sans-serif;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #FFF;
    padding: 10px 0;
    transition: all 0.5s;
    margin-bottom: 2rem;
    outline: none;
}

/*-------------------------------------------------------------
# Common Inquiry
--------------------------------------------------------------*/
.common-inquiry{
    background-color: #F8F8F8;
}

.common-inquiry .row{
    align-items: center;
}

.common-inquiry .section-title{
    margin-bottom: 20px;
}

.common-inquiry .section-intro{
    font-size: 18px;
    font-family: 'Roboto-regular',sans-serif;
    margin-bottom: 35px;
    line-height: 2;
}

.common-inquiry .contact-way .item{
    display: flex;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    margin-bottom: 2rem;
    height: auto;
    line-height: 35px;
}

.common-inquiry .contact-way .item .ico{
    margin-right: 1rem;
}

.common-inquiry .form{
    background-color: #FFF;
    padding: 3rem;
    box-shadow: 0 0 10px 0 rgba(114,114,114,0.3);
}

.common-inquiry .form .section-title{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 42px;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
}

.common-inquiry .form .section-intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    text-align: center;
    color: #202020;
}

.common-inquiry .form input{
    height: 40px;
}

.common-inquiry .form input,
.common-inquiry .form textarea,
#inquiryBtn{
    width: 100%;
    margin-bottom: 1rem;
}

.common-inquiry .form input,
.common-inquiry .form textarea{
    border: 1px solid #EFEFEF;
    resize: none;
    font-family: 'Popping-light',sans-serif;
    font-size: 12px;
    padding-left: 1rem;
}

.common-inquiry .form textarea{
    padding-top: 1rem;
}

.common-inquiry .form input:focus,
.common-inquiry .form textarea:focus{
    outline-color: var(--primary-color);
}

#inquiryBtn{
    font-family: 'Popping-medium',sans-serif;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #FFF;
    padding: 10px 0;
    transition: all 0.5s;
    margin-bottom: 2rem;
    outline: none;
}

#inquiryBtn:hover{
    border-color: #176C70;
    background-color: #176C70;
    font-size: 20px;
    padding: 7px 0;
}

.form .tips{
    font-family: 'Popping-light',sans-serif;
    font-size: 12px;
    color: #999;
    margin: 0;
}

/*--------------------------------------------------------------
# Index Carousel
--------------------------------------------------------------*/
.index-carousel{
    padding: 0;
}

.index-carousel .img{
    padding-bottom: 41.6%;
}

.index-carousel .img .mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55%;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    padding: 3rem 10rem 0 4rem;
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.index-carousel .img:hover .mask{
    opacity: 1;
    visibility: visible;
}

.index-carousel .img .mask .section-title{
    margin-bottom: 15px;
    text-transform: none;
}

.index-carousel .img .mask .section-intro{
    color: #333;
    margin-bottom: 2rem;
    font-size: 18px;
}

.index-carousel .img .mask button{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 20px;
    border: none;
    padding: 5px 30px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 20px;
    transition: all 0.5s;
}

.index-carousel .img .mask button:hover{
    transform: scale(1.1);
}

#indexCarousel .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 15px;
    background-color: #FFF;
    opacity: 1;
}

#indexCarousel .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}

.btn-prev,
.btn-next{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 7px;
    background-color: #FFF;
    cursor: pointer;
    z-index: 99;
    transition: all 0.5s;
    /*box-shadow: 0 0 2px 2px rgba(114,114,114,0.5);*/
}

.btn-prev i,
.btn-next i{
    font-size: 25px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

.btn-prev i{
    left: 48%;
}

.btn-next i{
    left: 52%;
}

.btn-prev:hover,
.btn-next:hover{
    background-color: var(--primary-color);
}

.btn-prev:hover i,
.btn-next:hover i{
    color: #FFF;
}

/*--------------------------------------------------------------
# Index CategorySolution
--------------------------------------------------------------*/
.index-category-solution{
    padding-bottom: 0;
}

.plus-btn{
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 1rem;
    bottom: 2rem;
    background-color: transparent;
    border: none;
    padding: 0;
    outline: none;
    transition: all 0.5s;
    overflow: hidden;
}

.has-unfold .plus-btn{
    left: 0.7rem;
}

.plus-btn:active,
.plus-btn:focus,
.plus-btn:hover{
    outline: none;
}

.plus-btn:before{
    width: 2rem;
    height: 2px;
    position: absolute;
    background-color: #FFF;
    border: none;
    content: '';
    display: block;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

.plus-btn:after{
    width: 2px;
    height: 2rem;
    position: absolute;
    background-color: #FFF;
    border: none;
    content: '';
    display: block;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

.tab-box{
    position: relative;
    height: 430px;
    margin-top: 4rem;
}

.tab-box .img-box{
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.tab-box .img-box img{
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tab-box .img-box:before{
    background-color: rgba(0,0,0,0.5);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.tab-box .category-box{
    position: relative;
    align-items: stretch;
    width: 100%;
    display: flex;
}

.tab-box .category-box .item{
    overflow: hidden;
    height: 430px;
    max-height: 430px;
    width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 2rem 1rem 4rem 1rem;
    border-right: 1px solid #FFF;
    flex: 1;
    transition: all 0.5s;
}

.tab-box .category-box .item .num{
    font-family: 'Roboto-medium', sans-serif;
    font-size: 15px;
    color: #EFEFEF;
}

.tab-box .category-box .item .category{
    font-family: 'Roboto-medium', sans-serif;
    font-size: 20px;
    color: #FFF;
    transition: all 0.5s;
}

.tab-box .item:last-child{
    border: none;
}

.tab-box .item.active{
    flex: 99;
    padding-bottom: 1rem;
}

.tab-box .item.active .plus-btn{
    transform: rotate(45deg) !important;
    bottom: auto;
    left: auto;
    top: 1rem;
    right: 1rem;
}

.tab-box .item.active .num{
    position: absolute;
    top: 1rem;
}

.tab-box .item.active .category{
    font-size: 28px !important;
    margin-bottom: 2rem !important;
    animation: none;
}

.has-unfold .category-header .category{
    animation: rotate-text 0.5s cubic-bezier(0.25,0.46,0.45,0.94) forwards
}

.has-unfold .item .num{
    position: absolute !important;
    top: 1rem !important;
    left: 0.6rem;
}

.tab-box .item:hover .plus-btn{
    transform: scale(1.2);
}

.tab-box .item:hover .category{
    margin-bottom: 2rem;
}

.tab-box .item .category{
    transition: all 0.5s;
}

.tab-box .category-box .item .category-detail{
    width: 100%;
    height: 0;
    visibility: hidden;
    transition: all 0.5s;
    overflow: hidden;
}

.tab-box .category-box .item.active .category-detail{
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 150px;
}

.tab-box .category-box .item .category-detail .subtitle{
    font-family: 'Roboto-regular', sans-serif;
    font-size: 18px;
    color: #FFF;
}

.tab-box .category-box .item .category-detail .intro{
    font-family: 'Roboto-regular', sans-serif;
    font-size: 15px;
    color: #FFF;
}

.tab-box .category-box .item .category-detail .link{
    font-family: 'Roboto-medium',sans-serif;
}

.tab-box .category-box .item .category-detail .link a{
    color: #FFF;
}

.tab-box .category-box .item .category-detail .link i{
    color: var(--primary-color);
    margin-left: 5px;
    transition: all 0.5s;
}

.tab-box .category-box .item .category-detail .link:hover i{
    margin-left: 10px;
}

@keyframes rotate-text {
    0%{}
    100%{transform: rotate(-90deg)}
}

#accordionExample{
    background-image: url("../../home/images/bg-solution-mobile.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
}

#accordionExample .shadow{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}

.mobile-category-solution .card{
    border-radius: unset;
    background-color: transparent;
    border: 1px solid #FFF;
}

.mobile-category-solution .card-header{
    background-color: transparent;
    border: none;
}

.mobile-category-solution .card-header button{
    padding: 0;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    color: #FFF;
    position: relative;
}

.mobile-category-solution .card-header button .ico{
    position: absolute;
    top: 50%;
    right: 1rem;
    transition: all 0.5s;
}

.mobile-category-solution .card-header button .ico:before{
    width: 2px;
    height: 1rem;
    position: absolute;
    content: '';
    display: block;
    background-color: #FFF;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

.mobile-category-solution .card-header button .ico:after{
    width: 1rem;
    height: 2px;
    position: absolute;
    content: '';
    display: block;
    background-color: #FFF;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

.mobile-category-solution .card-header button .num{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

.mobile-category-solution .card-header button .num span{
    font-family: 'Roboto-medium',sans-serif;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.5s;
}

.has-unfold .card-header button .num span{
    opacity: 1;
}

.mobile-category-solution .card-header button .category{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    transition: all 0.5s;
}

.has-unfold .card .card-header button .category{
    font-size: 25px;
    color: #8B8B8B;
}

.has-unfold .card.show-contents .card-header button .category{
    font-size: 30px;
    color: #FFF;
}

.show-contents button .category{
    font-size: 30px;
    color: #FFF;
}

.mobile-category-solution .card-header button:hover,
.mobile-category-solution .card-header button:active,
.mobile-category-solution .card-header button:focus{
    outline: none;
    text-decoration: none;
}

.mobile-category-solution .show-contents .card-header button .ico{
    top: 0.75rem;
    transform: rotate(225deg);
}

.mobile-category-solution .card .card-body .subtitle{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 20px;
    color: #FFF;
}

.mobile-category-solution .card .card-body .intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 18px;
    color: #FFF;
}


.mobile-category-solution .card .card-body .link{
    font-family: 'Roboto-medium',sans-serif;
}

.mobile-category-solution .card .card-body .link a{
    font-size: 20px;
    color: #FFF;
}

.mobile-category-solution .card .card-body .link i{
    color: var(--primary-color);
    margin-left: 5px;
    transition: all 0.5s;
}

.mobile-category-solution .card .card-body .link:hover i{
    margin-left: 10px;
}

/*--------------------------------------------------------------
# Category Product
--------------------------------------------------------------*/
.category-product .section-intro{
    margin-bottom: 3rem;
}

.category-product .item{
    box-shadow: 2px 5px 10px 0 rgba(114,114,114,0.3);
    transition: all 0.5s;
}

.category-product .item .img{
    padding-bottom: 84.5%;
}

.category-product .item .text{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 25px;
    text-align: center;
    background-color: #EDECED;
    color: #000;
    padding: 10px 0;
    transition:  all 0.5s;
}

.category-product .item:hover .text{
    background-color: var(--primary-color);
    color: #FFF;
}

/*--------------------------------------------------------------
# Show Room
--------------------------------------------------------------*/
.show-room{
    padding-top: 6rem;
    padding-bottom: 0;
}

.show-room .exh,
.show-room .factory{
    padding: 0;
    position: relative;
    transition: all 0.5s;
}

/*.show-room .exh img,*/
/*.show-room .factory img,*/
.show-room .exh button,
.show-room .factory button{
    transition: all 0.5s;
}

/*.show-room .exh:hover img,*/
.show-room .exh:hover button,
/*.show-room .factory:hover img,*/
.show-room .factory:hover button{
    transform: scale(1.1);
}

.show-room .exh .img,
.show-room .factory .img{
    padding-bottom: 52%;
}

.show-room .text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.4);
}

.show-room .text .name,
.show-room .text .name{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 30px;
    color: #FFF;
    margin-bottom: 10px;
}

.show-room .text .title,
.show-room .text .title{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    color: #FFF;
    margin-bottom: 2rem;
}

.show-room .text button{
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    font-family: 'Popping-medium',sans-serif;
    font-size: 18px;
    padding: 10px 40px;
    border-radius: 5px;
}

.advantages{
    background: url("../images/bg-advantages.jpg") no-repeat fixed center center;
    background-size: cover;
    position: relative;
}

.advantages .mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
}

.advantages .item img{
    margin-bottom: 20px;
}

.advantages .item{
    padding: 2rem 1rem;
}

.advantages .item .title{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    color: #FFF;
    margin-bottom: 10px;
}

.advantages .item .subtitle{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: #FFF;
    margin: 0;
}

.news-recommend{
    background-color: #EEE;
}

.news-recommend .list{
    padding-top: 2rem;
}

.news-recommend .list .item{
    background-color: #FFF;
    box-shadow: 0 0 10px 0 rgba(114,114,114,0.3);
    margin-bottom: 2rem;
}

.news-recommend .list .item .img{
    padding-bottom: 70.6%;
}

.news-recommend .list .item .text{
    padding: 1rem;
}

.news-recommend .list .item .text .date{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.news-recommend .list .item .text .date i{
    padding-right: 10px;
}

.news-recommend .list .item .text .title{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 15px;
    margin-bottom: 5px;
}

.news-recommend .list .item .text .title:hover a{
    color: var(--primary-color);
}

.news-recommend .list .item .text .title a{
    color: #202020;
    transition: all 0.5s;
}

.news-recommend .list .item .text .intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 12px;
    color: #A6A5A5;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    margin-bottom: 10px;
}

.news-recommend .list .item .text button{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 14px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 2px 10px;
    transition: all 0.5s;
}

.news-recommend .list .item:hover .text button{
    transform: scale(1.1);
}

.banner-contact{
    text-align: center;
}

.banner-contact .container{
    padding-left: 100px;
    padding-right: 100px;
}

.banner-contact h2{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.banner-contact button{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 10px 70px;
    transition: all 0.5s;
}

.banner-contact button:hover{
    transform: scale(1.1);
}

.category-info{
    padding-bottom: 4rem;
}

.category-info .section-title,
.category-info .category-intro{
    margin-bottom: 20px;
}

.category-info .category-intro{
    font-size: 20px;
    color: #666;
}

.list-product-category{
    background-color: #F8F8F8;
}

.list-product-category ul{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
}

.list-product-category.main .item-level-1{
    border-right: 1px solid #DFDFDF;
    padding-left: 30px;
}

.list-product-category.main .item-level-1 ul li{
    display: flex;
}

.list-product-category.main .item-level-1 ul li.active,
.list-product-category.main .item-level-1 ul li.active a{
    color: var(--primary-color);
}

.list-product-category.main .item-level-1 .symbol{
    margin-right: 10px;
}

.list-product-category.main .item-level-1:last-child{
    border: none;
}

.list-product-category.main .level-1{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.list-product-category.main a{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    color: #202020;
}

.list-product-category.main a:hover{
    text-decoration: underline;
    color: var(--primary-color);
}

.list-product{
    border-bottom: 1px solid #DFDFDF;
}

.list-product .list{
    padding-top: 5rem;
}

.list-product .item{
    margin-bottom: 2rem;
    transition: all 0.5s;
    background-color: #EEE;
    padding-bottom: 10px;
}

.list-product .item:hover{
    box-shadow: 0 0 10px 0 rgba(114,114,114,0.3);
    background-color: var(--primary-color);
}

.list-product .item:hover .text{
    color: #FFF;
}

.list-product .item .img{
    padding-bottom: 63.6%;
}

.list-product .item .text{
    height: 70px;
    font-family: 'Roboto-regular',sans-serif;
    font-size: 20px;
    padding: 10px 20px 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    transition: all 0.5s;
    color: #202020;
    text-align: center;
}

.list-product .show-more{
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}

.list-product .more-btn{
    background-color: var(--primary-color);
    border: none;
    color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    padding: 5px 30px;
    outline: none;
}

.product-attention .item{
    display: flex;
    flex-wrap: wrap;
}

.product-attention .item.even .img{
    order: 2;
}

.product-attention .item.even .text{
    order: 1;
}

.product-attention .item .img{
    width: 50%;
    padding-bottom: 50%;
    order: 1;
}

.product-attention .item .text{
    width: 50%;
    padding: 3rem;
    background-color: #F4F4F4;
    order: 2;
}

.product-attention .item .text .item{
    display: block;
}

.product-attention .item .text h2,
.product-attention .item .text p{
    margin-bottom: 20px;
}

.product-attention .item .text h2{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    color: #202020;
}

.product-attention .item .text p{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: #666;
}

.product-solution .list{
    padding-top: 2rem;
}

.product-solution .list .item .img{
    padding-bottom: 58%;
}

.product-solution .list .item .mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.3);
    color: #FFF;
    opacity: 0;
    transition: all 0.5s;
}

.product-solution .list .item .mask:hover{
    opacity: 1;
}

.product-solution .list .item .mask>div{
    padding: 0 15px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%
}

.product-solution .list .item .mask .title{
    border-bottom: 1px solid #FFF;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

.product-solution .list .item .mask .category{
    margin-bottom: 10px;
    text-align: right;
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
}

.detail-product-carousel .container-large{
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

#detailProductCarousel .img{
    padding-bottom: 23.4%;
}

#detailProductCarousel .product-carousel-pagination{
    background-color: #FFF;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 7px;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 25px;
    left: 30px;
    bottom: 30px;
}

#detailProductCarousel .product-carousel-prev,
#detailProductCarousel .product-carousel-next{
    width: 80px;
    height: 80px;
    box-shadow: none;
    top: unset;
    bottom: 2rem;
    transform:unset;
}

#detailProductCarousel .product-carousel-prev i,
#detailProductCarousel .product-carousel-next i{
    font-size: 40px;
}

#detailProductCarousel .product-carousel-prev{
    left: unset;
    right: 140px;
}

#detailProductCarousel .product-carousel-next{
    right: 2rem;
}

.details-product-info{
    padding-top: 0;
    border-bottom: 1px solid #EEE;
}

.details-product-info .section-title{
    margin-bottom: 2rem;
}

.details-product-param .title{
    width: 100%;
    max-width: 40%;
    flex: 0 0 40%;
    padding-left: 15px;
    padding-right: 15px;
}

.details-product-param .title .title-line{
    margin: 25px 0;
}

.details-product-param .content{
    width: 100%;
    max-width: 60%;
    flex: 0 0 60%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
}

.details-product-param .content .item{
    width: 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 4rem;
}

.details-product-param .content .item .category{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    margin-bottom: 1rem;
}

.details-product-param .content .item .line{
    width: 80%;
    border-bottom: 1px solid #000;
    margin-bottom: 1rem;
}

.details-product-param .content .item ul{
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'Roboto-regular',sans-serif;
    font-size: 1rem;
}

.details-product-param .content .item ul li{
    margin-bottom: 10px;
}

.details-product-color{
    background-color: #EEE;
}

.details-product-color .color-box{
    padding-top: 2rem;
}

.details-product-color .color-box .img{
    padding-bottom: 100%;
}

.details-product-color .color-box .color-card{
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    padding-right: 9px;
}

.details-product-color .color-box .color-card .item{
    margin-bottom: 30px;
    padding-left: 6px;
    padding-right: 6px;
    max-width: 16.666667%;
    width: 16.666667%;
    cursor: pointer;
}

.details-product-color .color-box .color-card .item.active .img{
    border-radius: 10px;
}

.details-product-color .color-box .color-card .item.active .text{
    color: var(--primary-color);
}

.details-product-color .color-box .color-card .item .img{
    padding-bottom: 100%;
    margin-bottom: 5px;
    transition: all 0.5s;
    background-size: contain !important;
}

.details-product-color .color-box .color-card .item .text{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 14px;
    height: 45px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    transition: all 0.5s;
}

.details-product-color .color-box .color-card::-webkit-scrollbar {
    width:8px;
}

.details-product-color .color-box .color-card::-webkit-scrollbar-thumb{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: var(--primary-color);
}

#productRecommend{
    position: relative;
    padding: 2rem 100px 0 100px;
}

#productRecommend .btn-prev{
    left: 0;
}

#productRecommend .btn-next{
    right: 0;
}

#recommendSwiper .item{
    padding-bottom: 10px;
    background-color: #EEE;
    transition: all 0.5s;
}

#recommendSwiper .item:hover{
    background-color: var(--primary-color);
}

#recommendSwiper .item:hover .text{
    color: #FFF;
}

#recommendSwiper .item .img{
    padding-bottom: 63.6%;
}

#recommendSwiper .item .text{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 20px;
    color: #202020;
    height: 70px;
    padding: 10px 20px 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: all 0.5s;
}

.company{
    padding-bottom: 0;
}

.company .row{
    padding-top: 2rem;
}

.company .video iframe{
    width: 100%;
    height: 400px;
}

.company .info{
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

.company .info .section-title{
    font-size: 30px;
    margin-bottom: 10px;
}

.company .info .section-intro{
    line-height: 1.7;
}

.company-certificate{
    background-color: #EEE;
    padding-bottom: 4rem;
}

.company-certificate .section-intro{
    width: 60%;
    text-align: center;
    word-break: break-word;
    margin: 0 auto 4rem auto;
}

.company-certificate .img{
    padding-bottom: 148%;
}

.company-certificate .ce-name{
    text-align: center;
    font-family: 'poppins-regular',sans-serif;
    font-size: 18px;
    margin-top: 10px;
}

.mobile-company-ce{
    background-color: #EEE;
}

.mobile-company-ce .item{
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 1rem;
}

.mobile-company-ce .section-title{
    margin-bottom: 2rem;
}

.mobile-company-ce .item .img{
    padding-bottom: 148%;
}

.mobile-company-ce .item .ce-name{
    text-align: center;
    font-family: 'poppins-regular',sans-serif;
    font-size: 15px;
    margin-top: 10px;
}

.company-certificate .swiper-box{
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 4rem;
}

.company-certificate .swiper-box .btn-prev{
    box-shadow: none;
    left: 0;
}

.company-certificate .swiper-box .btn-next{
    box-shadow: none;
    right: 0;
}

#companyCe .swiper-slide {
    transition: 300ms;
    transform: scale(0.6);
}

#companyCe .swiper-slide.swiper-slide-prev,
#companyCe .swiper-slide.swiper-slide-next{
    transform: scale(0.8);
}

#companyCe .swiper-slide.swiper-slide-prev{
    transform-origin: left;
}

#companyCe .swiper-slide.swiper-slide-next{
    transform-origin: right;
}

#companyCe .swiper-slide-active,
#companyCe .swiper-slide-duplicate-active{
    transform: scale(1);
}

.company-certificate .swiper-pagination-bullet{
    background-color: #DBDBDB;
}

.company-certificate .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.company-exh{
    padding-bottom: 4rem;
}

.company-exh .swiper-box{
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}

.company-exh-prev,
.company-exh-next{
    border: 1px solid #EEE;
}

#comapnyExh{
    margin-top: 4rem;
}

#comapnyExh .swiper-slide .item{
    display: flex;
}

#comapnyExh .swiper-slide .item .left,
#comapnyExh .swiper-slide .item .right{
    width: 50%;
    padding-left: 6px;
    padding-right: 6px;
    overflow: hidden;
}

#comapnyExh .swiper-slide .item .left{
    padding: 0 0 22px 0;
}

#comapnyExh .swiper-slide .item .left img{
    max-width: 100%;
    /* height: 100%; */
}

#comapnyExh .swiper-slide .item .right img{
    max-width: 100%;
    /* height: 100%; */
}

#comapnyExh .swiper-slide .item .right{
    display: flex;
    flex-wrap: wrap;
}

#comapnyExh .swiper-slide .item .right .right-item{
    width: 50%;
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px;
}

#comapnyExh .exh-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 15px;
}

#comapnyExh .exh-pagination .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}

.company-process{
    background-color: #EEE;
}

.company-process .row{
    margin-top: 4rem;
}

.company-process .item{
    margin-bottom: 2rem;
}

.company-process .item .img{
    padding-bottom: 75%;
}

.company-process .item .text{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    text-align: center;
    margin-top: 1rem;
}

.contact .section-title{
    margin-bottom: 4rem;
}

.contact .text{
    background-color: var(--primary-color);
    padding: 4rem 6rem 4rem 4rem;
}

.contact .text .section-title{
    color: #FFF;
    margin-bottom: 3rem;
}

.contact .text .company-info .item{
    display: flex;
    font-family: 'Roboto-medium',sans-serif;
    font-weight: unset;
    font-size: 20px;
    color: #FFF;
    margin-bottom: 1.5rem;
}

.contact .text .company-info .item .ico i{
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin-right: 5px;
}

.contact .text .social-links{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact .text .social-links .social-item{
    position: relative;
    border: 1px solid #FFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.5s;
}

.contact .text .social-links .social-item i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    color: #FFF;
    transition: all 0.5s;
}

.contact .text .social-links .social-item:hover{
    background-color: #FFF;
}

.contact .text .social-links .social-item:hover i{
    color: var(--primary-color);
}

.faq-list{
    list-style: none;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    text-align: left;
    padding: 0;
}

.faq-list li{
    margin-bottom: 1rem;
    background-color: var(--primary-color);
}

.faq-list .question{
    position: relative;
    color: #FFF;
    padding: 10px 30px 10px 10px;
}

.faq-list .collapsed .question::after{
    content: '\f107';
    font-family: FontAwesome;
    transform: rotate(0);
}

.faq-list .question::after{
    content: '\f107';
    font-family: FontAwesome;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    overflow: hidden;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 25px;
    transition: all 0.5s;
    transform: rotate(180deg);
}

.faq-list .answer{
    background-color: #FFF;
    padding: 10px 2rem;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 15px;
}

.faq .more-btn{
    background-color: var(--primary-color);
    border: none;
    color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    padding: 5px 30px;
}

.faq-list .show-more{
    margin-top: 4rem;
    text-align: center;
}

.other-tab{
    padding-bottom: 0;
}

.other-tab .section-title{
    margin-bottom: 2rem;
}

.other-tab .tab{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.other-tab .tab a{
    display: block;
    width: 20%;
    max-width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    color: #202020;
    text-align: center;
}

.other-tab .tab .item{
    border: 1px solid #EFEFEF;
    padding: 10px 0;
    border-radius: 25px;
    transition: all 0.5s;
}

.other-tab .tab .item:hover{
    background-color: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
}

.other-tab .tab .item.active{
    background-color: var(--primary-color);
    color: #FFF;
}
/*--------------------------------------------------------------
# News List
--------------------------------------------------------------*/
#newsList,#newsList *{
    list-style: none;
    margin: 0;
    padding: 0;
}

#newsList .item{
    width: 100%;
    display: flex;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

#newsList .item:last-child{
    border-color: transparent;
}

#newsList .item .img{
    padding-bottom: 19.3%
}

#newsList .item.odd .img{
    order: 1;
}

#newsList .item.even .img{
    order: 2;
}

#newsList .item .text{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 5rem;
}

#newsList .item.odd .text{
    order: 2;

}

#newsList .item.even .text{
    order: 1;
    padding-left: 0;
    padding-right: 5rem;
}

#newsList .item .title{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    margin-bottom: 1rem;
}

#newsList .item .title a{
    color: #202020;
    transition: all 0.5s;
}

#newsList .item .title a:hover{
    color: var(--primary-color);
}

#newsList .item .news-intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    margin-bottom: 2rem;
}

#newsList .item .more-btn{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 5px 20px;
    transition: all 0.5s;
}

#newsList .item:hover .more-btn{
    transform: scale(1.1);
}

#newsList .show-more{
    text-align: center;
}

#newsList .more-btn{
    background-color: var(--primary-color);
    border: none;
    color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    padding: 5px 30px;
    outline: none;
}

#newsList .more-btn:hover,
#newsList .more-btn:focus,
#newsList .more-btn:active{
    outline: none;
}

.article-solution .article-title{
    margin-bottom: 2rem;
}

.article-solution .other{
    border-bottom: 3px solid var(--primary-color);
}

.article-solution .other .social-links{
    border-top: 1px solid #EFEFEF;
    display: flex;
    flex-wrap: wrap;
    padding-top: 2rem;
}

.article-solution .other .social-links a{
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.article-solution .other .social-links img{
    width: 100%;
    height: 100%;
}

.article-solution .other,
.article-solution .video{
    margin-bottom: 3rem;
    box-shadow: 0 0 10px 0 rgba(114,114,114,0.3);
    padding:2rem;
    margin-left: 4rem;
}

.article-solution .other h2,
.article-solution .video h2{
    font-family: 'Roboto-medium',sans-serif;
    margin-bottom: 2rem;
}

.article-solution .other .item,
.article-solution .video .item{
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.article-solution .other .item .img,
.article-solution .video .item .img{
    width: 67%;
    padding-bottom: 19%;
}

.article-solution .other .item .text,
.article-solution .video .item .text{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    padding-left: 2rem;
    color: #202020;
}

.article-solution .other .item .text a,
.article-solution .video .item .text a{
    color: #202020;
    transition: all 0.5s;
}

.article-solution .other .item .text a:hover,
.article-solution .video .item .text a:hover{
    color: var(--primary-color);
}

.article-solution .video .item{
    cursor: pointer;
}

.article-solution .video .item .text{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 15px;
    padding-left: 1rem;
}

.article-solution .video .more-btn{
    width: 100%;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 8px 0;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

.article-news .other .item .img{
    padding-bottom: 23% !important;
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.list-video .section-title{
    margin-bottom: 2rem;
}

.list-video .item{
    margin-bottom: 4rem;
}

.list-video .item .img{
    padding-bottom: 59%;
    margin-bottom: 1rem;
    cursor: pointer;
}

.list-video .item .text{
    cursor: pointer;
    height: 62px;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    text-align: center;
    color: #202020;
    transition: all 0.5s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
}

.list-video .item:hover .text{
    color: var(--primary-color);
}

.list-video .show-more{
    text-align: center;
    margin: 0 auto;
}

.list-video .show-more .more-btn{
    background-color: var(--primary-color);
    border: none;
    color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    padding: 5px 30px;
    outline: none;
}

#videoPlay{
    position: fixed;
    background-color: rgba(0,0,0,0.4);
    top: 90px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

#videoPlay.show{
    opacity: 1;
    visibility: visible;
}

#videoPlay .container{
    position: relative;
    height: 100%;
}

#videoPlay .close-btn{
    color: #FFF;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    top: -30px;
    right: -30px;
}

/*--------------------------------------------------------------
# Solution
--------------------------------------------------------------*/
.list-solution .category-tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 3rem;
}

.list-solution .category-tab a{
    width: 14.2%;
    max-width: 14.2%;
    overflow: hidden;
    display: block;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    color: #202020;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

.list-solution .category-tab .item{
    border: 1px solid #EFEFEF;
    padding: 10px 0;
    border-radius: 25px;
    transition: all 0.5s;
}

.list-solution .category-tab .item.active,
.list-solution .category-tab .item:hover{
    background-color: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
}

.list-solution .list{
    margin-top: 4rem;
}

.list-solution .list .item{
    box-shadow: 0 0 10px 0 rgba(114,114,114,0.3);
    margin-bottom: 2rem;
}

.list-solution .list .item .img{
    padding-bottom: 57.4%
}

.list-solution .list .item .text{
    padding: 20px;
}

.list-solution .list .item .text .date{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.list-solution .list .item .text .date i{
    padding-right: 10px;
}

.list-solution .list .item .text .title{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.list-solution .list .item .text .title:hover a{
    color: var(--primary-color);
}

.list-solution .list .item .text .title a{
    font-family: 'Roboto-medium',sans-serif;
    color: #202020;
    transition: all 0.5s;
}

.list-solution .list .item .text .intro{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: #A6A5A5;
    height: 46px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    margin-bottom: 10px;
}

.list-solution .list .item .text button{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 16px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 2px 10px;
    transition: all 0.5s;
}

.list-solution .list .item:hover .text button{
    transform: scale(1.1);
}

#solutionList .show-more{
    flex: 100%;
    text-align: center;
}

#solutionList .more-btn{
    background-color: var(--primary-color);
    border: none;
    color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    padding: 5px 30px;
    outline: none;
}

.article-solution .img.main-img{
    padding-bottom: 37%;
}

.article-solution .content{
    line-height: 2;
}

.article-solution .detail-item{
    align-items: center;
}

.article-solution .detail-item .img{
    padding-bottom: 70.8%;
}

.article-solution .detail-item h2{
    font-family: 'Roboto-medium', sans-serif;
    font-size: 30px;
}

.article-solution .detail-item .detail-content{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
}

.article-solution .other{
    box-shadow: 0 0 2px 2px rgba(127, 137, 161, 0.3);
}

.article-solution .other h2{
    font-family: 'Roboto-medium', sans-serif;
}

.article-solution .other .item{
    display: flex;
    /*padding: 15px 0;*/
    align-items: center;
}

.article-solution .other .item .img{
    padding-bottom: 17.5%;
    width: 30%;
}

.article-solution .other .item .text{
    width: 70%;
}

.article-solution .other .item .text a{
    font-family: "Roboto-medium",sans-serif;
    color: #000;
}

.article-solution .info{
    box-shadow: 0 0 2px 2px rgba(127, 137, 161, 0.3);
    margin-top: 4rem;
    border-bottom: 5px solid var(--primary-color);
}

.article-solution .info .item .field{
    font-family: 'Roboto-medium', sans-serif;
    font-size: 20px;
    margin-bottom: 0;
}

.article-solution .info .item .value{
    font-family: 'Roboto-medium', sans-serif;
    font-size: 18px;
    color: #A3A3A3;
    padding: 10px 0;
    margin-bottom: 0;
}

.article-solution .info .social-links{
    border-top: 1px solid #EFEFEF;
    padding: 2rem 0 0 0;
}

.article-solution .info .social-links img{
    width: 30px;
    height: 30px;
    margin-right: 2rem;
}

.filter-mobile{
    padding: 1rem;
    width: 100%;
    position: relative;
}

#productFilter{
    list-style: none;
    margin: 0;
    padding: 0 15px;
}

#productFilter ul{
    list-style: none;
    padding: 0;
}

#productFilter .mobile-filter-header{
    position: relative;
    display: block;
    font-size: 20px;
    font-family: "Roboto-medium",sans-serif;
    background: var(--primary-color);
    padding: 10px;
    color: #FFF;
    border: none;
}

#productFilter .mobile-filter-header i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

#productFilter .level-1{
    padding: 5px 10px;
    background-color: #FFF;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

#productFilter .level-1 a{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
}

#productFilter .level-2{
    padding: 10px 0 10px 20px;
}

#productFilter .level-2 a{
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: #202020;
}

#productFilter a.collapsed i::before{
    content: "\f078" !important;
}

.product-solution .list .item{
    margin-bottom: 2rem;
}

#solutionColl .card{
    border: none;
}

#solutionColl .card .card-header{
    background-color: var(--primary-color);
    border:1px solid var(--primary-color);
    border-radius: unset;
}

#solutionColl .card .card-header .btn-link{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 25px;
    color: #FFF;
    position: relative;
}

#solutionColl .card .card-header .btn-link.collapsed:after{
    transform: rotate(0);
}

#solutionColl .card .card-header .btn-link:after{
    position: absolute;
    content: '\f106';
    font-family: FontAwesome;
    right: 0;
    transform: rotate(180deg);
    transition: all 0.5s;
}

#solutionColl .card .card-header .btn-link:focus,
#solutionColl .card .card-header .btn-link:active,
#solutionColl .card .card-header .btn-link:hover{
    text-decoration: none;
}

#solutionColl .card .card-body{
    border: 1px solid #B8B8B8;
}

#solutionColl .card .card-body ul{
    padding: 0;
    list-style: none;
}

#solutionColl .card .card-body ul li a{
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 20px;
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Advertising
--------------------------------------------------------------*/
.adv-banner{
    position: relative;
    height: calc(100vh - 176px);
    padding: 0;
    overflow: hidden;
}

.adv-banner .hide{
    display: none;
}

.adv-banner .section-title{
    margin-bottom: 25px;
}

.adv-banner img,
.adv-banner iframe{
    z-index: -1;
}

.adv-banner img{
    width: 100%;
    height: 100%;
}
.adv-banner .pc-banner,
.adv-banner .mobile-banner{
    display: none;
    visibility: hidden;
    opacity: 0;
}


.adv-banner-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /*z-index: 9;*/
}

.adv-banner-overlay button{
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translateX(-50%);
    background-color: transparent;
    border: none;
    color: #FFF;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    outline: none;
    animation: reciprocate 1.5s infinite;
}

@keyframes reciprocate {
    0%{
        bottom: 15px;
    }
    50%{
        bottom: 5px;
    }
    100%{
        bottom: 15px;
    }
}

.youtube-container {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    /* Keep it the right aspect-ratio */
    aspect-ratio: 16/9;
    /* No clicking/hover effects */
    pointer-events: none;
    position: relative;
    z-index: -1;
}

.youtube-container .overlay{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: var(--primary-color);
    opacity: 1;
}

.youtube-container iframe {
    /* Extend it beyond the viewport... */
    width: 300%;
    height: 100%;
    /* ...and bring it back again */
    margin-left: -100%;
}

.advertising-list .item{
    margin-bottom: 2rem;
    box-shadow: 0 0 10px 0 rgba(114,114,114,0.3);
}

.advertising-list .item .img{
    padding-bottom: 57%;
    margin-bottom: 20px;
}

.advertising-list .item .text{
    padding: 0 15px 20px 15px;
}

.advertising-list .item .more-btn{
    margin-bottom: 20px;
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 5px 20px;
    transition: all 0.5s;
}

.advertising-list .item .more-btn:hover{
    transform: scale(1.1);
}

.advertising-list .item .title{
    height: 50px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
}

.advertising-list .item .title > a{
    font-family: 'poppins-medium',sans-serif;
    font-size: 20px;
    color: #202020;
}

.advertising-list .item .title:hover a{
    color: var(--primary-color);
}

.advertising-list .item .intro{
    height: 45px;
    margin-bottom: 20px;
    color: #999;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
}

.adv-banner .banner-text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.adv-banner .banner-text .row{
    height: 100%;
    overflow: hidden;
}

.adv-banner .banner-text .row > .item{
    display: flex;
    align-items: center;
}

.adv-banner .banner-text .container{
    height: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
    z-index: 0;
}

.adv-inquiry{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.adv-inquiry .text .section-title{
    font-size: 35px;
    margin-bottom: 2rem;
}

.adv-inquiry .row{
    align-items: unset;
}

.adv-inquiry .text{
    padding-right: 60px;
}

.adv-inquiry .text ul{
    list-style: none;
}

.adv-inquiry .text ul li{
    margin-bottom: 15px;
    position: relative;
}

.adv-inquiry .text ul li::before{
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background: url("../../home/images/mark.png") no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: -50px;
}

.adv-inquiry .text ul li .title{
    font-family: 'Roboto-medium',sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

.adv-inquiry .text ul li .content{
    color: #999;
    margin-bottom: 5px;
}

#advInquiryBtn{
    font-family: 'Popping-medium',sans-serif;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #FFF;
    padding: 10px 0;
    transition: all 0.5s;
    margin-bottom: 2rem;
    outline: none;
    width: 100%;
}

#advInquiryBtn:hover{
    border-color: #176C70;
    background-color: #176C70;
    font-size: 20px;
    padding: 7px 0;
}

.adv-1 ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.adv-1 ul li{
    width: 33.333333%;
    background-color: #EFEFEF;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}

.adv-1 ul li.active{
    background-color: var(--primary-color);
    color: #FFF;
}

.adv-1 .content .item{
    display: none;
}

.adv-1 .content .item img,
.adv-1 .content .item table{
    max-width: 100%;
}

.adv-1 .content{
    padding-top: 5rem;
}

.adv-1 .content .item.active{
    display: block;
}

.adv-2{
    background-color: #F8F8F8;
}

.adv-2 .section-title,
.adv-2 .section-intro{
    width: 60%;
    margin: 0 auto 2rem auto;
}

.adv-2 .section-intro,
.adv-3 .section-intro{
    color: #666;
    margin-bottom: 3rem;
}

.adv-2 .section-intro{
    margin-bottom: 5rem;
}

.adv-2 .exp-list,
.adv-2 .img-box{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.adv-2 .exp-list{
    max-width: 45%;
    flex: 45%;
}

.adv-2 .img-box{
    max-width: 55%;
    flex: 55%;
}

.adv-2 .faq-list .question{
    background-color: #EDEDED;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    color: #202020;
}

.adv-2 .faq-list .question::after{
   content: '';
}

.adv-2 .faq-list .answer{
    background-color: #F8F8F8;
    color: #666;
}

#advSwiper .swiper-slide .img{
    padding-bottom: 67%;
    opacity: 0;
    transition: all 0.5s;
}

.adv-2 .faq-list .answer .img{
    display: none;
}

#advSwiper .swiper-slide-active .img{
    opacity: 1;
}

#advSwiper .swiper-pagination-bullet{
    background-color: #FFF;
}

#advSwiper .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}

.adv-3 .item{
    margin-bottom: 2rem;
}

.adv-3 .item .img{
    padding-bottom: 68%;
    margin-bottom: 1rem;
}

.adv-3 .item .title{
    height: 72px;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 30px;
    color: #202020;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: center;
    padding: 0 15px;
}

.adv-3 .item .intro{
    height: 90px;
    font-family: 'Roboto-regular',sans-serif;
    font-size: 15px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-align: center;
}

.adv-3 .section-title,
.adv-3 .section-intro{
    width: 60%;
    margin: 0 auto 2rem auto;
}

.adv-3 .section-intro{
    margin-bottom: 5rem;
}

.adv-4{
    background-color: #EDEDED;
}

.adv-4 .title-line{
    margin-bottom: 5rem;
}

.adv-4 .box{
    display: flex;
    flex-wrap: wrap;
}

.adv-4 .box .item{
    width: 100%;
    max-width: 33.333333%;
    display: flex;
    flex-wrap: wrap;
}

.adv-4 .box .item.odd .img{
    order: 1;
}

.adv-4 .box .item.odd .text{
    order: 2;
}

.adv-4 .box .item .img{
    padding-bottom: 70%;
    order: 2;
}

.adv-4 .box .item .text{
    width: 100%;
    padding: 30px;
    background-color: var(--primary-color);
    overflow: hidden;
    order: 1;
}

.adv-4 .box .item .text .title{
    font-family: 'Roboto-medium',sans-serif;
    font-size: 25px;
    color: #FFF;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.adv-4 .box .item .text .content{
    height: 90px;
    font-size: 20px;
    color: #FFF;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.adv-5 .title-line{
    margin-bottom: 5rem;
}

.adv-5 .item{
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 0 2px 2px rgba(114,114,114,0.3);
    margin-bottom: 2rem;
}

.adv-5 .item .ico{
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.adv-5 .item .title{
    height: 60px;
    font-family: 'Roboto-medium',sans-serif;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.adv-5 .item .content{
    height: 68px;
    margin-bottom: 0;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/*------------------------------------------------------------------
    Production
------------------------------------------------------------------*/
.production .swiper-box .swiper-pagination-bullet{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #999;
    font-size: 20px;
    line-height: 50px;
    font-family: 'Roboto Regular',sans-serif;
    margin: 0 5px;
    background-color: #FFF;
    opacity: 1;
}

.production .swiper-box .swiper-pagination-bullet-active{
    border-color: var(--primary-color);
}

#production .swiper-slide{
    background-color: #FFF;
    padding: 40px 30px 0 30px;
}

#production .swiper-slide .title{
    font-size: 20px;
    font-family: 'Vidaloka-Regular', sans-serif;
    margin-bottom: 15px;
}

#production .swiper-slide .content{
    height: 90px;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Roboto Regular', sans-serif;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
}

#production .swiper-slide .img{
    padding-bottom: 63%;
}

.production{
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #F8F8F8;
}

.production .section-title{
    margin-bottom: 40px;
}

.production .section-intro{
    margin-bottom: 3rem;
}

.production .swiper-box{
    position: relative;
}

.production-prev,
.production-next{
    width: 50px;
    height: 50px;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    background-color: transparent;
    box-shadow: none;
    font-size: 20px;
    color: #202020;
    z-index: 10;
    position: relative;
    cursor: pointer;
}

.production-prev i,
.production-next i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.production .swiper-pagination{
    display: flex;
    position: relative;
    justify-content: center;
    bottom: 0;
    width: auto;
}

.production .tool-box{
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

#map{
    width: 100%;
    height: 560px;
}

@media (min-width: 768px) {
    .section-title{
        font-size: 30px;
    }

    .section-subtitle{
        font-size: 20px;
    }

    .section-intro{
        font-size: 15px;
    }

    #placeholderBox{
        height: 70px;
    }

    .btn-prev{
        left: 30px;
    }

    .btn-next{
        right: 30px;
    }

    .banner .text {
        left: 45px;
        top: 50%;
        transform: translateY(-50%);
    }

    #mobileFixedInquiry{
        display: block;
    }

    #fixedInquiry .row{
        justify-content: left;
    }

    .common-inquiry .contact-way.main{
        display: block;
    }

    .common-inquiry .contact-way.mobile{
        display: none;
    }

    #fixedInquiry,
    #fixedInquiry.show{
        opacity: 0;
        visibility: hidden;
    }

    .show-room .text .name,
    .show-room .text .name{
        font-size: 25px;
    }

    .show-room .text .title,
    .show-room .text .title{
        font-size: 25px;
    }

    .show-room .text button{
        padding: 5px 30px;
    }

    .article-solution .detail-item{
        margin-top: 2rem;
    }

    .article-solution .detail-item h2{
        font-size: 25px;
        margin-top: 1rem;
    }

    .article-solution .other{
        padding: 2rem;
        margin-top: 2rem;
        margin-left: 0;
    }

    .article-solution .other .item .text{
        padding-left: 2rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .article-solution .other .item .text a{
        font-size: 15px;
    }

    .article-solution .info{
        padding: 2rem;
    }

    .index-category-solution{
        display: none;
    }

    .mobile-category-solution{
        display: block;
        padding-bottom: 0;
    }

    .list-product-category.main{
        display: block;
        padding: 2rem 15px;
    }

    .filter-mobile{
        display: none;
    }

    .list-product{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .list-product .list{
        padding-top: 3rem;
    }

    .product-solution{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .list-product-category.main .level-1{
        font-size: 25px;
    }

    .list-product-category.main .item-level-1 ul li{
        font-size: 20px;
    }

    .list-product-category.main a{
        font-size: 20px;
    }

    .product-attention .item .img{
        width: 100%;
        padding-bottom: 100%;
    }

    .product-attention .item .text{
        width: 100%;
    }

    .product-attention .item.even .img{
        order: 1;
    }

    .product-attention,
    .category-video,
    .category-faq{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .detail-product-carousel{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .details-product-info{
        padding-bottom: 2rem;
    }

    .details-product-param{
        padding-bottom: 0;
    }

    .list-solution{
        padding-top: 2rem;
    }

    .list-solution .category-tab.main{
        display: none;
    }

    .list-solution .category-tab.mobile{
        display: block;
    }

    .article-solution{
        padding-top: 0;
    }

    .list-video{
        padding-top: 2rem;
    }

    #videoPlay .close-btn{
        top: 3rem;
        right: 1rem;
    }

    #videoPlay .container{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #videoPlay .container iframe{
        height: 70% !important;
    }

    .other-tab{
        margin-top: 0;
        padding-top: 2rem;
    }

    .other-tab .section-title{
        margin-bottom: 2rem;
    }

    .other-tab .tab a{
        width: 33.333333%;
        max-width: 33.333333%;
    }

    #newsList .item .news-intro{
        font-family: 'Roboto-regular',sans-serif;
        font-size: 15px;
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    #newsList .item .title{
        font-size: 25px;
    }

    #newsList .item .title,
    #newsList .item .news-intro{
        margin-bottom: 10px;
    }

    .article-solution .other,
    .article-solution .video{
        margin: 0 0 2rem 0;
        padding: 2rem;
    }

    .company{
        padding-top: 2rem;
    }

    .company .section-title{
        margin-bottom: 2rem;
    }

    .company-certificate{
        padding-top: 4rem;
    }

    .company-exh{
        padding-top: 4rem;
    }

    .company-process,
    .category-product{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .contact{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .contact .section-title{
        margin-bottom: 2rem;
    }

    .contact .map{
        height: 400px;
    }

    .company .row{
        padding-top: 0;
    }

    .company .info{
        padding-left: 15px;
    }

    .company .video{
        margin-bottom: 2rem;
    }

    .article-solution .content{
        margin-bottom: 4rem;
    }

    .product-solution .list .item{
        flex: 0 0 50%;
        max-width: 50%;
    }

    #comapnyExh .exh-pagination{
        bottom: 30px;
    }

    .company-exh .swiper-box{
        padding-left: 100px;
        padding-right: 100px;
    }

    .company-exh-prev{
        left: 0;
    }

    .company-exh-next{
        right: 0;
    }
/*--------------------------------------------------------------
# Advertising
--------------------------------------------------------------*/
    .advertising-list .section-title{
        margin-bottom: 2rem;
    }

    .adv-inquiry .text .section-title{
        font-size: 30px;
    }

    .adv-2 .section-title,
    .adv-2 .section-intro{
        width: 100%;
    }

    .adv-1 ul li{
        width: 100%;
    }

    .adv-1 .content{
        padding-top: 1rem;
    }

    .adv-2 .exp-list,
    .adv-2 .img-box{
        max-width: 100%;
        flex: 100%;
    }

    .adv-2 .exp-list{
        order: 2;
    }

    .adv-2 .img-box{
        order: 1;
    }

    .adv-3 .section-title,
    .adv-3 .section-intro{
        width: 100%;
    }

    .adv-4 .box .item{
        max-width: 100%;
    }

    .adv-4 .box .item.odd .img,
    .adv-4 .box .item.even .img{
        order: 1;
    }

    .category-video iframe{
        height: 500px;
    }

    .faq-list .question:after{
        right: 10px;
    }

    .adv-banner .pc-banner{
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .show-fixed-form{
        bottom: 40px;
    }

    #fixedInquiry.show{
        opacity: 1;
        visibility: visible;
    }

    #fixedInquiry .row{
        justify-content: space-between;
    }

    #fixedInquiry input{
        width: 14%;
        margin-right: 15px;
    }

    #mobileFixedInquiry{
        display: none;
    }

    .back-to-top{
        display: block;
    }

    .common-inquiry .form .section-title{
        font-size: 35px;
    }

    .show-room .text .name,
    .show-room .text .name{
        font-size: 30px;
    }

    .show-room .text .title,
    .show-room .text .title{
        font-size: 25px;
    }

    .show-room .text button{
        padding: 10px 40px;
    }

    .article-solution .other h2{
        font-size: 25px;
    }

    .article-solution .other .item .text{
        padding-left: 1rem;
    }

    .article-solution .info{
        padding: 1rem;
    }

    .article-solution .detail-item h2{
        margin-top: 0;
        font-size: 20px;
    }

    .article-solution .detail-item{
        margin-top: 2rem;
    }

    .tab-box .category-box .item .category{
        font-size: 15px;
    }

    .index-category-solution{
        display: block;
    }

    .mobile-category-solution{
        display: none;
        padding-bottom: 4rem;
    }

    .list-product-category.main{
        display: block;
        padding: 4rem 15px;
    }

    .filter-mobile{
        display: none;
    }

    .list-product{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .list-product .list{
        padding-top: 5rem;
    }

    .product-solution{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }


    .list-product-category.main .level-1{
        font-size: 30px;
    }

    .list-product-category.main .item-level-1 ul li{
        font-size: 20px;
    }

    .list-product-category.main a{
        font-size: 20px;
    }

    .detail-product-carousel{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .details-product-param{
        padding-bottom: 2rem;
    }

    .list-solution .category-tab .item{
        padding: 5px 0;
    }

    .list-solution .category-tab a{
        font-size: 15px;
    }

    .list-solution .category-tab.main{
        display: flex;
    }

    .list-solution .category-tab.mobile{
        display: none;
    }

    .list-solution{
        padding-top: 4rem;
    }

    .list-video{
        padding-top: 4rem;
    }

    #videoPlay .close-btn{
        right: 8rem;
        top: 0;
    }

    .article-solution .other,
    .article-solution .video{
        margin-left: 4rem;
    }

    .contact{
        padding-top: 4rem;
    }

    .contact .section-title{
        margin-bottom: 4rem;
    }

    .contact .map{
        height: unset;
    }

    .contact .text{
        padding: 2rem;
    }

    .company{
        padding-top: 4rem;
    }

    .company .section-title{
        margin-bottom: 4rem;
    }

    .company .row{
        padding-top: 2rem;
    }

    .company .video{
        margin-bottom: 0;
    }

    .company .info{
        padding-left: 3rem;
    }

    .article-solution .content{
        margin-bottom: 0;
    }

    .product-solution .list .item{
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    #videoPlay .container iframe{
        width: 60%;
        height: 70% !important;
    }

    .other-tab{
        padding-top: 4rem;
    }

    .other-tab .section-title{
        margin-bottom: 4rem;
    }

    .product-attention .item .img{
        width: 50%;
        padding-bottom: 50%;
    }

    .product-attention .item.even .img{
        order: 2;
    }

    .product-attention .item .text{
        width: 50%;
    }

/*--------------------------------------------------------------
# Advertising
--------------------------------------------------------------*/
    .advertising-list .section-title{
        margin-bottom: 4rem;
    }

    .adv-2 .exp-list{
        max-width: 45%;
        flex: 45%;
        order: 1;
    }

    .adv-2 .img-box{
        max-width: 55%;
        flex: 55%;
        order: 2;
    }

    .adv-4 .box .item{
        max-width: 33.333333%;
    }

    .adv-4 .box .item.even .img{
        order: 2;
    }
}

@media (min-width: 1200px) {
    .section-title{
        font-size: 40px;
    }

    .section-subtitle{
        font-size: 30px;
    }

    .section-intro{
        font-size: 20px;
    }

    #placeholderBox{
        height: 90px;
    }

    .main-footer{
        padding-top: 20px;
        display: block;
    }

    .mobile-footer{
        display: none;
    }

    .btn-prev{
        left: 180px;
    }

    .btn-next{
        right: 180px;
    }

    .banner .text {
        top: 50%;
        left: calc((100% - 1488px) / 2);
        width: 55%;
        transform: translateY(-50%);
    }

    .common-inquiry .form .section-title{
        font-size: 42px;
    }

    .article-solution .other{
        padding: 2rem;
    }

    .article-solution .other h2{
        font-size: 30px;
    }

    .article-solution .info{
        padding: 2rem;
    }

    .article-solution .other,
    .article-solution .info{
        margin-left: 4rem;
    }

    .article-solution .other .item .text{
        padding-left: 1rem;
    }

    .article-solution .detail-item h2{
        font-size: 30px;
    }

    .article-solution .detail-item{
        margin-top: 4rem;
    }

    .tab-box .category-box .item .category{
        font-size: 18px;
    }

    .show-room .text .title,
    .show-room .text .title{
        font-size: 30px;
    }

    .detail-product-carousel{
        padding-top: 0;
        padding-bottom: 5rem;
    }

    .list-solution .category-tab .item{
        padding: 10px 0;
    }

    .list-solution .category-tab a{
        font-size: 18px;
    }

    .contact .text{
        padding: 4rem 6rem 4rem 4rem;;
    }

    .company-exh .swiper-box{
        padding-left: 100px;
        padding-right: 100px;
    }

    .company-exh-prev{
        left: 0;
    }

    .company-exh-next{
        right: 0;
    }

    .adv-inquiry .text .section-title{
        font-size: 35px;
    }

    .adv-1 ul li{
        width: 33.333333%;
    }

    .adv-1 .content{
        padding-top: 5rem;
    }

    .product-attention,
    .category-video,
    .category-faq{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .faq-list .question{
        padding: 1rem 2rem;
    }

    .faq-list .question:after{
        top: 23px;
        right: 15px;
    }
}

@media (max-width: 767px) {
    .main-nav{
        display: none;
    }

    section{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .banner{
        display: none;
    }

    .banner.mobile{
        display: block;
        position: relative;
    }

    .banner .text{
        position: absolute;
        width: calc(100% - 30px);
        color: #202020;
        top: 15px;
        left: 15px;
        transform: unset;
        margin: 0 auto;
    }

    .banner .text .title{
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp:2;
    }

    .banner .text .intro{
        color: #FFF;
        font-size: 14px;
        margin: 0;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp:4;
    }

    .back-to-top{
        width: 30px;
        height: 30px;
    }

    .back-to-top i{
        padding-top: 6px;
    }

    .section-title{
        font-size: 25px;
    }

    .section-subtitle{
        font-size: 20px;
    }

    .section-intro{
        font-size: 15px;
    }

    #placeholderBox{
        height: 50px;
    }

    .btn-prev,
    .btn-next{
        width: 30px;
        height: 30px;
    }

    .btn-prev{
        left: 15px;
    }

    .btn-next{
        right: 15px;
    }

    .btn-prev i,
    .btn-next i{
        font-size: 15px;
    }

    #mobileFixedInquiry {
        display: block;
    }

    #fixedInquiry.show{
        opacity: 0;
        visibility: hidden;
    }

    #mobileFixedInquiryForm .form{
        top: 60%;
    }

    #closeMobileFixedInquiryForm{
        bottom: calc(100% + 30px);
    }

    #closeMobileFixedInquiryForm:before{
        height: 30px;
    }

    .common-inquiry{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .common-inquiry .contact-way.main{
        display: none;
    }

    .common-inquiry .contact-way.mobile{
        display: flex;
        justify-content: center;
    }

    .common-inquiry .section-intro{
        font-size: 15px;
        margin-bottom: 1rem;
    }

    .common-inquiry .section-title,
    .common-inquiry .section-intro{
        text-align: center;
    }

    .common-inquiry .contact-way .item{
        font-size: 15px;
        justify-content: start;
    }

    .common-inquiry .form{
        padding: 1.5rem;
    }

    #contactWayMobile .ico{
        width: 30px;
        display: flex;
        flex-wrap: wrap;
        margin-right: 20px;
    }

    #contactWayMobile .ico .item{
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
        height: unset;
    }
    #contactWayMobile .ico .item img{
        width: 30px;
    }

    #contactWayMobile .ico .item:last-child{
        margin-bottom: 2rem;
    }

    #contactWayMobile .text .item{
        text-align: center;
        line-height: 30px;
        margin-bottom: 0.7rem;
        font-family: 'Roboto-medium', sans-serif;
        font-size: 15px;
    }

    .category-product .item{
        margin-bottom: 2rem;
    }

    .show-room{
        padding: 0;
    }

    .show-room .text .name,
    .show-room .text .name{
        font-size: 25px;
    }

    .show-room .text .title,
    .show-room .text .title{
        font-size: 25px;
    }

    .show-room .text button{
        padding: 5px 35px;
    }

    .show-room .exh{
        margin-bottom: 1rem;
    }

    .article{
        padding-top: 1rem;
    }

    .article-title{
        font-size: 25px;
        padding: 1rem 0;
    }

    .article-solution .detail-item{
        margin-top: 1rem;
        padding-bottom: 1rem;
    }

    .article-solution .detail-item .detail-title{
        font-size: 20px;
        padding-top: 1rem;
        margin-bottom: 10px;
    }

    .article-solution .detail-item .detail-content{
        line-height: 1.5;
    }

    .article-solution .other{
        padding: 1rem;
        margin-left: 0;
    }

    .article-solution .other h2{
        font-size: 25px;
        margin-bottom: 0;
    }

    .article-solution .other .item .text{
        padding-left: 1rem;
    }

    .article-solution .info{
        margin-top: 1rem;
        padding: 1rem;
    }

    .title-line{
        margin: 1rem auto;
    }

    .category-product .item .text{
        font-size: 20px;
    }

    .index-category-solution{
        display: none;
    }

    #accordionExample{
        background-image: url(../../home/images/bg-solution-wap.jpg);
        background-size: 100% 100%;
    }

    .mobile-category-solution{
        display: block;
    }

    .mobile-category-solution .card-header button .num{
        font-size: 12px;
    }

    .mobile-category-solution .card-header button .category{
        font-size: 15px;
        margin-bottom: 0;
    }

    .has-unfold .card .card-header button .category{
        font-size: 15px;
    }

    .has-unfold .card.show-contents .card-header button .category{
        font-size: 25px;
    }

    .mobile-category-solution .card .card-body{
        padding-top: 0;
    }

    .mobile-category-solution .card .card-body .subtitle{
        font-size: 16px;
    }

    .mobile-category-solution .card .card-body .intro{
        font-size: 14px;
    }

    .mobile-category-solution .card .card-body .link a{
        font-size: 15px;
    }

    .banner-contact .container{
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-contact h2{
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .banner-contact button{
        font-size: 15px;
    }

    .list-product-category.main{
        display: none;
    }

    .filter-mobile{
        display: block;
    }

    #productFilter{
        padding: 0;
    }

    .list-product .list{
        padding-top: 2rem;
    }

    .product-attention .item .img{
        width: 100%;
        padding-bottom: 100%;
    }

    .product-attention .item .text{
        width: 100%;
        padding: 1.5rem;
    }

    .product-attention .item.even .img{
        order: 1;
    }

    .category-video iframe{
        height: 350px;
    }

    #detailProductCarousel .product-carousel-pagination{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
        left: 15px;
        bottom: 15px;
    }

    #detailProductCarousel .product-carousel-prev,
    #detailProductCarousel .product-carousel-next{
        width: 40px;
        height: 40px;
        bottom: 15px;
    }

    #detailProductCarousel .product-carousel-prev{
        right: 5rem;
    }

    #detailProductCarousel .product-carousel-next{
        right: 1rem;
    }

    #detailProductCarousel .product-carousel-prev i,
    #detailProductCarousel .product-carousel-next i{
        font-size: 20px;
    }

    .details-product-param{
        padding-top: 2rem;
    }

    .details-product-param .title,
    .details-product-param .content{
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .details-product-param .content .item{
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 2rem;
    }

    .details-product-color{
        padding-top: 2rem;
    }

    .details-product-color .color-box{
        padding-top: 1rem;
    }

    .details-product-color .color-box .left{
        margin-bottom: 1rem;
    }

    .details-product-color .color-box .color-card .item{
        width: 25%;
        max-width: 25%;
        margin-bottom: 1rem;
        text-align: center;
    }

    .details-product-color .color-box .color-card .item .text{
        font-size: 12px;
        height: 36px;
    }

    #productRecommend{
        padding: 2rem 50px 0 50px;
    }

    #recommendSwiper .item .text{
        font-size: 18px;
        height: 66px;
    }

    .list-solution .category-tab.main{
        display: none;
    }

    .list-solution .category-tab.mobile{
        display: block;
        margin-top: 1rem;
    }

    #solutionColl .card .card-header{
        margin-left: 15px;
        margin-right: 15px;
        padding: 5px 0;
    }

    #solutionColl .card .card-header .btn-link{
        font-size: 20px;
        padding: 0 10px;
    }

    #solutionColl .card .card-header .btn-link:after{
        right: 10px;
    }

    #solutionColl .card .card-body ul li a{
        padding: 0;
    }

    #solutionColl .card .card-body{
        margin-left: 15px;
        margin-right: 15px;
    }

    .list-solution{
        padding-top: 2rem;
    }

    .list-solution .list{
        margin-top: 2rem;
    }

    #videoPlay{
        top: 50px;
    }

    #videoPlay .container{
        display: flex;
        align-items: center;
    }

    #videoPlay .container iframe{
        height: 60% !important;
    }

    #videoPlay .close-btn{
        top: 3rem;
        right: 1rem;
    }

    .list-video .item{
        margin-bottom: 2rem;
    }

    .list-video .item .text{
        height: auto;
    }

    .other-tab .tab a{
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .other-tab .section-title{
        margin-bottom: 2rem;
    }

    #newsList .item{
        flex-wrap: wrap;
    }

    #newsList .item.odd .img,
    #newsList .item.even .img{
        order: 1;
    }

    #newsList .item.odd .text,
    #newsList .item.even .text{
        order: 2;
        padding: 0;
    }

    #newsList .item .img{
        padding-bottom: 78%;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    #newsList .item .text{
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
    }

    #newsList .item .title{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    #newsList .item .news-intro{
        margin-bottom: 2rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp:2;
    }

    .article-solution .article-title{
        margin-bottom: 1rem;
    }

    .article-solution .other .item{
        margin-bottom: 1rem;
    }

    .article-solution .other,
    .article-solution .video{
        margin: 0 0 2rem 0;
        padding: 2rem;
    }

    .article-solution .other .social-links a{
        width: 30px;
        height: 30px;
    }

    .company .video iframe{
        height: 200px;
    }

    .show-room .text .title, .show-room .text .title{
        margin-bottom: 1rem;
    }

    .company .info{
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    .company-certificate{
        padding-top: 2rem;
    }

    .company-certificate .swiper-box{
        padding-left: 50px;
        padding-right: 50px;
        margin-top: 2rem;
    }

    .company-exh{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #comapnyExh {
        padding-bottom: 1rem;
        margin-top: 2rem;
    }

    .company-process{
        padding-top: 2rem;
        padding-bottom: 0;
    }

    .company-process .row{
        margin-top: 2rem;
    }

    .category-product{
        padding-top: 2rem;
    }

    .contact .section-title{
        margin-bottom: 2rem;
    }

    .contact .map{
        height: 300px;
    }

    .contact .text{
        padding: 1rem;
    }

    .contact .text .section-title{
        margin-bottom: 1rem;
    }

    .contact .text .company-info .item{
        font-size: 15px;
    }

    #comapnyExh .exh-pagination{
        bottom: -5px;
    }

    #comapnyExh .exh-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }

    .company-exh-prev{
        left: 0;
    }

    .company-exh-next{
        right: 0;
    }

    #comapnyExh .swiper-slide .item .left{
        position: relative;
        width: 100%;
        max-width: 50%;
        flex: 50%;
        height: 0;
        padding: 0 0 32.5% 0;
    }

    #comapnyExh .swiper-slide .item .left img{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    #comapnyExh .swiper-slide .item .right{
        padding-left: 3px;
        padding-right: 6px;
    }

    #comapnyExh .swiper-slide .item .right .right-item{
        padding: 0;
        position: relative;
        width: 100%;
        max-width: 50%;
        height: 0;
        padding-bottom: 32.4%;
        margin-bottom: 6px;
    }

    #comapnyExh .swiper-slide .item .right img{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0 3px;
    }

    .adv-banner .banner-text .section-intro{
        font-size: 14px;
    }

    .adv-inquiry .text{
        padding-right: 15px;
    }

    .adv-inquiry .text .section-title{
        font-size: 25px;
    }

    .adv-1 ul li{
        width: 100%;
    }

    .adv-1 .content{
        padding-top: 2rem;
    }

    .adv-2 .section-title,
    .adv-2 .section-intro{
        width: 100%;
    }

    .adv-2 .section-intro{
        margin-bottom: 2rem;
    }

    .adv-2 .exp-list,
    .adv-2 .img-box{
        max-width: 100%;
    }

    .adv-2 .exp-list{
        order: 2;
    }

    .adv-2 .img-box{
        order: 1;
        display: none;
    }

    .adv-2 .faq-list .question{
        font-size: 18px;
        color: #202020;
        padding: 10px;
    }

    .faq-list .question:after{
        top: 15px;
        right: 10px;
    }

    .adv-2 .faq-list .answer{
        padding: 10px;
    }

    .adv-2 .faq-list .answer .img{
        padding-bottom: 67%;
        display: block;
        margin-bottom: 10px;
    }

    .adv-3 .section-title,
    .adv-3 .section-intro{
        width: 100%;
    }

    .adv-3 .section-intro{
        margin-bottom: 2rem;
    }

    .adv-3 .item .title{
        height: 60px;
        font-size: 25px;
    }

    .adv-4 .title-line{
        margin-bottom: 2rem;
    }

    .adv-4 .box .item{
        max-width: 100%;
    }

    .adv-4 .box .item.even .text{
        order: 2;
    }

    .adv-5 .title-line{
        margin-bottom: 2rem;
    }

    .adv-banner .mobile-banner{
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .mobile-nav .social-links li .country-a{
        border: 1px solid #fff;
    }

    .detail-product-carousel{
        padding-top: 0;
    }
    .detail-product-carousel .container-large{
        padding-left: 0;
        padding-right: 0;
    }
    #detailProductCarousel .product-carousel-pagination{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
    }
    #detailProductCarousel .product-carousel-prev, #detailProductCarousel .product-carousel-next{
        width: 30px;
        height: 30px;
        bottom: 15px;
    }
    #detailProductCarousel .product-carousel-prev i, #detailProductCarousel .product-carousel-next i{
        font-size: 15px;
    }
    #detailProductCarousel .product-carousel-next{
        right: 20px;
    }
    #detailProductCarousel .product-carousel-prev{
        right: 60px;
    }
}

@media (min-width: 1024px) and (max-width: 1600px) {
    #header .logo{
        width: 450px!important;
    }
    .main-nav {
        width: calc(100% - 450px)!important;
    }
    .main-nav .social-links {
        padding: 9px 60px!important;
    }
    #header .odd > ul > li a, #header .even > ul > li a{
        font-size: 16px!important;
    }
}