:root{
    --cl-x: #000B88;
    --cl-y: #C7101A;
    --cl-gray: #F5F5F5;
    --fs-12: 12px;
    --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
    --fs-title: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);

    --px-content: 8%;
    --py-content: 50px;
}

body{
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #000;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.fs-12{
    font-size: var(--fs-12) !important;
}

.fs-14{
    font-size: var(--fs-14) !important;
}

.fs-18{
    font-size: var(--fs-18) !important;
}

.fs-20{
    font-size: var(--fs-20) !important;
}

.fs-24{
    font-size: var(--fs-24) !important;
}

.fs-28{
    font-size: var(--fs-28) !important;
}

.text-justify{
    text-align: justify !important;
}

.text-x{
    color: var(--cl-x) !important;
}

.text-y{
    color: var(--cl-y) !important;
}

/*background*/
.bg-x{
    background-color: var(--cl-x) !important;
}

.bg-y{
    background-color: var(--cl-y) !important;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 50rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}

.btn-custom:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.btn-x{
    background-color: var(--cl-x);
    color: #fff;
    border: 1px solid var(--cl-x);
}

.btn-x:hover{
    color: #fff;
}

.btn-y{
    background-color: var(--cl-y);
    color: #fff;
    border: 1px solid var(--cl-y);
}

.btn-y:hover{
    color: #fff;
}

.btn-outline-x{
    border: 2px solid var(--cl-x);
    background-color: transparent;
    color: var(--cl-x);
}

.btn-outline-x:hover{
    background-color: var(--cl-x);
    color: #fff;
}

.btn-outline-y{
    border: 2px solid var(--cl-y);
    background-color: transparent;
    color: var(--cl-y);
}

.btn-outline-y:hover{
    background-color: var(--cl-y);
    color: #fff;
}

.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    position: relative;
    padding: var(--py-content) var(--px-content);
}

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

.svg-clip-path {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}

.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    position: relative;
}

.main-title.has-line-under{
    margin-bottom: 1rem;
}

.main-title.has-line-under:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 4rem;
    height: 0.25rem;
    background-color: var(--cl-y);
    border-radius: 50rem;
}

.main-title.has-line-under.text-center:after{
    left: 50%;
    transform: translateX(-50%);
}



/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 2;
}

.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: unset;
}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-x);
}

.navbar-fixed{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 2s ease-in-out;
    z-index: 30;
}

@keyframes animate {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
   }
}

.navbar-fixed.navbar{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar-nav{
    width: 100%;
    justify-content: center;
    align-items: center;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: #fff;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: #5eddac;
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: #5eddac;
}

/*===*/
.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.375rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item:active{
    background-color: var(--cl-y);
}

.navbar-nav .toggle-menu{
    margin-left: 0.5rem;
}

.navbar-brand{
    margin: 0;
    padding: 0;
}

.logo{
    width: 80px;
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    margin-left: 0;
    align-items: center;
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.4rem;
    border: 2px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #fff;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent;
    font-size: var(--fs-14);
    box-shadow: none !important;
}

.box-search-header button{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    border-radius: 50%;
    font-size: var(--fs-14);
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.btn-popup-search svg{
    fill: #fff;
}

/*===*/
.icon-header{
    display: flex;
    gap: 0.5rem;
}

.icon-header .icon{
    width: 2.75rem;
    height: 2.75rem;
}

.icon-header .content{
    flex: 1;
    font-size: 0.875rem;
}

.icon-header .content .title{
    color: rgba(0, 0, 0, 0.50);
    font-weight: 700;
    font-size: 1rem;
}

/*===*/
.icon-hotline-header{
    display: flex;
    align-items: flex-start;
    gap: rem;
}

.icon-hotline-header .icon-left{
    margin-right: -1.75rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    background-color: var(--cl-x);
    clip-path: url('#clip-path-left-icon');
}

.icon-hotline-header .icon-left .inner-icon-left{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-y);
    border-radius: 50%;
    color: #fff;
}

.icon-hotline-header .icon-right{
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 2rem;
    background-color: var(--cl-x);
    color: #fff;
    font-weight: 700;
    clip-path: url('#clip-path-right-icon');
}

.translate .lang-item img{
    width: 2rem;
    filter: brightness(0.8);
    transition: all .3s ease-in-out;
}

.translate .lang-item.active img,
.translate .lang-item:hover img{
    filter: brightness(1);
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*banenr-page*/
.banner-page{
    min-height: 20rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-page .title{
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.banner-page .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: #fff;
}


/* Home ============*/
.main-slide{
    overflow: hidden;
    position: relative;
}

.main-slide .swiper-slide{
    position: relative;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3%;
    border: 2px solid #fff;
}

.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    color: #fff;
}

/*Home========================*/

.box-title-main h1,
.box-title-main h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    position: relative;
}

.box-title-main h3{
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}


.box-video{
    display: block;
    position: relative;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    overflow: hidden;
}

.box-video:after{
    content: "\f04b";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(2rem, 1.6rem + 2vw, 4rem);
    height: clamp(2rem, 1.6rem + 2vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-weight: bold;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    cursor: pointer;
    pointer-events: none;
    transition: all .4s ease-in-out;
}

.box-video:hover:after{
    border-color: var(--cl-x);
    background-color: var(--cl-x);
}

.box-video img{
    transition: all .4s ease-in-out;
    transform: scale(1.1);
}

.box-video:hover img{
    filter: brightness(0.5);
    transform: scale(1);
}

/*===*/
.box-counter{
    text-align: center;
    color: #fff;
}

.box-counter .number{
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
}

.box-counter .number:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 1px;
    background-color: #fff;
}

.box-content-achievement{
    padding: clamp(2rem, 1.6rem + 2vw, 4rem);
    color: #fff;
    border: 0.25rem solid #fff;
}


/*===*/
.box-hover-zoom .box-thumbnail,
.box-hover-zoom-long .box-thumbnail{
    overflow: hidden;
}

.box-hover-zoom .box-thumbnail img{
    transition: all 0.3s ease-in-out;
}

.box-hover-zoom:hover .box-thumbnail img,
.box-hover-zoom-long:hover .box-thumbnail img{
    transform: scale(1.1);
}

.box-hover-zoom-long .box-thumbnail img{
    transition: all 1s ease-in-out;
}

.wrapper-slide{
    position: relative;
} 

.wrapper-slide .swiper-button-next,
.wrapper-slide .swiper-button-prev{
    width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    color: var(--cl-x);
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}



/*===*/
.text-orientation{
    transform-origin: center;
    color: var(--cl-y);
    font-weight: 700;
    font-size: 1.25rem;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: right;
}

.project-slide  .swiper-slide{
    width: 24%;
}

.project-slide .swiper-pagination-bullet{
    background-color: var(--cl-y);
}

.box-project{
    position: relative;
}

.box-project .box-thumbnail{
    border-radius: 0.5rem;    
}

.box-project .box-content{
    position: absolute;
    inset: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    text-align: center;
    color: #fff;
    font-size: 0.875rem;
    opacity: 0;
    transition: all .3s ease-in-out;
    backdrop-filter: blur(4px);
}

.box-project .box-content .inner-content{
}

.box-project .box-content .title{
    font-size: 1rem;
    font-weight: 700;
}

.box-project:hover .box-content{
    opacity: 1;
}

.box-project:hover .box-thumbnail img{
    filter: brightness(0.7);
}


/*===*/
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    } 
}

.marquee{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    margin: 0 calc(-1 * 11%);

    span{
        display: inline-flex;
        align-items: center;
        text-transform: uppercase;
        will-change: transform;
        transform: translateX(0);
        white-space: nowrap;
        animation: marquee 24s linear infinite;
        font-size: clamp(5rem, 4.4rem + 3vw, 8rem);
        font-weight: 700;
        color: #fff;
        filter: drop-shadow(0 0 1px #BEBEBE);
    }
    i{
        width: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
        height: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
        transform: rotate(45deg);
        background-color: #fff;
    }
}


.box-product .box-thumbnail{
    position: relative;
    border-radius: 0.5rem;
}

.box-product .box-badge{
    position: absolute;
    left: 0;
    top: 1rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--cl-x);
    font-size: var(--fs-18);
    color: #fff;
}

.box-product .box-content{
    padding: 0.75rem;
    text-align: center;
}

.box-product .title{
    font-size: var(--fs-18);
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-product .box-price{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

.box-product .box-price .label-sale-price{
    color: var(--cl-y);
}

.box-product .box-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

.box-product:hover .title{
    color: var(--cl-x);
}

/*===*/
.box-blog .box-thumbnail{
    position: relative;
}

.box-blog .box-thumbnail .inner-thumbnail{
    clip-path: url("#clip-path-img-post"); 
}

.box-blog .box-badge{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33%;
    padding: 0.5rem;
    background-color: var(--cl-x);
    border-radius: 50rem;
    color: #fff;
    text-align: center;
}

.box-blog .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.box-blog .box-title{
    max-height: 2.25rem;
}

.box-blog .title{
    font-size: var(--fs-18);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    margin-top: 0.5rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog:hover .title{
    color: var(--cl-x);
}

/*===*/
.box-img-partner{
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.20);
}



/*===*/
.box-gallery{
    position: relative;
}

.box-gallery .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
}

.box-gallery:hover .box-content{
    opacity: 1;
    transform: scale(1);
}

.box-gallery img{
    transition: all .2s ease-in-out;
}

.box-gallery:hover img{
    filter: brightness(0.5);
}


/*===*/
.footer-center{
    color: #fff;
    background-color: #171717;
}

.footer-bottom{
    background-color: #171717;
    padding-top: 0;
    padding-bottom: 0.75rem;
    color: #fff;
}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    color: var(--cl-x);
}

.footer p{
    margin-bottom: 0.7rem;
}

.box-logo-footer{
    display: flex;
    justify-content: center;
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
    background-color: #fff;
    border-bottom-left-radius: 50rem;
    border-bottom-right-radius: 50rem;
    overflow: hidden;
}

.logo-footer{
    width: clamp(4rem, 3.4rem + 3vw, 7rem);

}

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-weight: bold;
}

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li a{
    position: relative;
}

.list-footer ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -4px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

.list-footer ul li a:hover::before{
  transform-origin: left;
  transform: scaleX(1);
}

.list-footer ul li{
    transition: transform .2s ease-in-out;
}

.list-footer ul li:hover{
    transform: translateX(5px);
}

.list-footer ul li + li{
    margin-top: 0.7rem;
}

.list-footer ul li i{
    margin-right: 6px;
    color: var(--cl-x);
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-contact .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cl-x);
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: var(--cl-x);
}

.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-y);
    color: #fff;
}

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
}

/*===*/
.icon-find-map{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 0.75rem;
    background-color: #fff;
    border-radius: 50rem;
    color: #000 !important;
}

.icon-find-map:hover{
    box-shadow: 1px 1px 12px 4px rgba(255, 255, 255, 0.3);
}


.icon-find-map .icon{
    width: 2rem;
    height: 2rem;
}


/**/
.form-footer .form-group{
    display: flex;
    gap: 0.75rem;
}

.form-footer .form-control{
    padding: 0.625rem 1rem;
    border: 1px solid #fff;
    border-radius: 50rem;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
    font-size: inherit;
}

.form-footer .form-control::placeholder{
    color: #fff;
}

.form-footer button{
    background-color: #fff;
    color: var(--cl-x) !important;
}

.form-footer button i{
    transition: all .3s ease-in-out;
}

.form-footer button:hover i{
    transform: rotate(45deg);
}
  


/*===*/
.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact iframe{
    /*height: 100%;*/
}

.contact-information{
    padding: 5% 20%;
    border-radius: 1rem;
    background-color: var(--cl-x);
}

.contact-information li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-align: center;
}

.contact-information li + li{
    margin-top: 1.5rem;
}

.contact-information li span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cl-x)
}

#modalQuickView .btn-close{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    box-shadow: none !important;
    z-index: 1;
}