:root{
    --cl-x: #C20000;
    --cl-y: #FFEA00;
    --cl-gray: #F9F9F9;
    --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.5rem, 1.4rem + 0.5vw, 2rem);

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

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

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

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    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 #9F0000;
}

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

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

.block .container-fluid{
    max-width: 1600px;
}

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

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

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

.navbar-main{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.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%;
    align-items: center;
}

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

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

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-x);
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: var(--cl-x);
}

/*===*/
.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.125rem;
    border: 1px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #000;
}

.box-search-header .form-control{
    flex: 1;
    width: 146px;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent !important;
    font-size: var(--fs-14);
    box-shadow: none !important;
    color: #fff !important;
}

.box-search-header input::placeholder{
    color: #fff;
}

.box-search-header button{
    width: 2rem;
    height: 2rem;
    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: var(--cl-x);
}

.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-x);
    font-size: var(--fs-18);
    position: relative;
}

.label-quantity{
    position: absolute;
    top: -6px;
    right: -10px;
    width: 1rem;
    height: 1rem;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-x);
}

.translate .lang-item{
    padding-left: 0.25rem;
    color: #000;
}

.translate .lang-item + .lang-item{
    border-left: 1px solid #000;
}

.translate .lang-item.active{
    color: var(--cl-x);
}


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

/*banenr-page*/
.banner-page{
    min-height: clamp(11rem, 10rem + 5vw, 16rem);
    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;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

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


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

.box-hover-zoom .box-thumbnail img{
    transition: all 1s cubic-bezier(.09,.68,.42,1.02);
}

.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.75rem, 0.7rem + 0.25vw, 1rem);
    font-weight: 700;
}

.wrapper-slide.hover-show-button .swiper-button-next,
.wrapper-slide.hover-show-button .swiper-button-prev{
    opacity: 0;
}

.wrapper-slide.hover-show-button:hover .swiper-button-next,
.wrapper-slide.hover-show-button:hover .swiper-button-prev{
    opacity: 1;
}

.wrapper-slide.hover-show-button:hover .swiper-button-disabled{
    opacity: 0.5;
}

.main-slide{
    overflow: hidden;
    position: relative;
}

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

.main-slide .swiper-pagination{
    left: 20px;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.main-slide .swiper-pagination:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -120%);
    width: clamp(0.125rem, 0.1rem + 0.125vw, 0.25rem);
    height: clamp(2rem, 1.6rem + 2vw, 4rem);
    background: linear-gradient(0deg, #ff0000 0%, rgba(255, 0, 0, 0) 100%);
}

.main-slide .swiper-pagination:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 120%);
    width: clamp(0.125rem, 0.1rem + 0.125vw, 0.25rem);
    height: clamp(2rem, 1.6rem + 2vw, 4rem);
    background: linear-gradient(180deg, #ff0000 0%, rgba(255, 0, 0, 0) 100%);
}

.main-slide .swiper-pagination-bullet{
    width: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    height: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    background-color: #fff;
    opacity: 1;
    transition: all .3s ease-in-out;
    outline: 1px solid transparent;
}

.main-slide .swiper-pagination-bullet-active{
    outline: 1px solid #fff;
    outline-offset: 2px;
}

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


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

.box-content-title h3{
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.sub-title-style{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sub-title-style h3{
    margin-bottom: 0;
    font-size: var(--fs-20);
    font-weight: 700;
    background: linear-gradient(to left, #fdc800, #f04901);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sub-title-style span{
    display: block;
    width: clamp(2rem, 1.6rem + 2vw, 4rem);
    height: 1px;
    background-color: #FF0000;
    position: relative;
    opacity: 0.7;
}

.sub-title-style span:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    height: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    background-color: inherit;
    border-radius: 50%;
}

.sub-title-style span:before{
    right: 0;
}

.sub-title-style span:last-of-type:before{
    right: 100%;
    transform: translate(100%, -50%);
}



/*===*/
.service-slide .swiper-slide{
    width: 25%;
}

.box-icon-service{
    background-color: #F5F5F5;
    border-radius: 0.5rem;
    transition: all .5s cubic-bezier(.09,.68,.42,1.02);
}

.box-icon-service .box-thumbnail{
    border-radius: 0.5rem;
    overflow: hidden;
}

.box-icon-service .box-thumbnail img{
    transition: all .3s ease-in-out;
}


.box-icon-service .box-content{
    padding: 1.5rem 1rem 1rem;
    line-height: 1.2;
    position: relative;
}

.box-icon-service .box-icon{
    width: clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
    height: clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -80%);
    transition: all .5s cubic-bezier(.09,.68,.42,1.02);
}

.box-icon-service .box-content .title{
    font-size: var(--fs-20);
    text-align: center;
    font-weight: 700;
}

.box-icon-service:hover .box-thumbnail img{
    filter: brightness(0.5);
}

.box-icon-service:hover .box-icon{
    transform: translate(-50%, -90%)
}

.box-icon-service:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.text-orientation{
    position: absolute;
    right: 3%;
    bottom: 0%;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    line-height: normal;
    transform: rotate(90deg);
    transform-origin: right top;
    background: linear-gradient(to right, #fdc800, #f04901);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.6;
}

.text-orientation span{
    display: block;
    width: 3rem;
    height: 1px;
    background-color: var(--cl-x);
}

/*===*/
.block-about .text-orientation{
    right: unset;
    left: 3%;
    transform: rotate(-90deg);
    transform-origin: left top;
}


/*===*/
.nav-tabs-product{
    justify-content: center;
    gap: 0.5rem;
    border-bottom: 0;
}

.nav-tabs-product .nav-link{
    border: 1px solid var(--cl-x);
    border-radius: 0;
    color: #000;
    font-weight: 700;
}

.nav-tabs-product .nav-link.active,
.nav-tabs-product .nav-link:hover{
    background-color: var(--cl-x);
    color: #fff;
}



/*===*/
.box-video{
    position: relative;
    z-index: 1;
    display: inline-block;
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--cl-x);
    transition: all 2s cubic-bezier(.09,.68,.42,1.02);
    --speed: 2s;
}

.box-video:before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
    opacity: 0.8;
    animation: wave var(--speed) infinite ease-out;
    z-index: -1;
}

.box-video:after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1);
    opacity: 0.8;
    animation: wave var(--speed) infinite ease-out;
    animation-delay: .8s;
    z-index: -1;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.box-video:hover{
    transform: scale(1.1);
}

.box-video:hover:before{
    --speed: 1s;
}


.btn-custom.btn-icon{
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    border-radius: 50rem;
}

.btn-custom.btn-icon .icon{
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    background-color: #000;
    border-radius: 50%;
}

.btn-custom.btn-icon .icon i{
    transition: all .3s ease-in-out;
}

.btn-custom.btn-icon:hover .icon i{
    transform: translateX(0.5rem);
}

.btn-custom.btn-icon.arrow-cover:after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 1rem;
    width: 4rem;
    height: 4rem;
    background-image: url('/templates/images/arrow-cover.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translateX(100%);
    pointer-events: none;
}


/*===*/
.box-icon-commit{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 15%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 0.75rem;
    color: #fff;
    transition: all .3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.box-icon-commit .icon{
    width: clamp(3rem, 2.4rem + 3vw, 6rem);
    height: clamp(3rem, 2.4rem + 3vw, 6rem);
}

.box-icon-commit .icon img{
    transition: all .3s cubic-bezier(.09,.68,.42,1.02);
}

.box-icon-commit .title{
    margin-bottom: 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    text-align: center;
}

.box-icon-commit:after{
    content: "";
    position: absolute;
    z-index: -1;
    left: -30%;
    bottom: -30%;
    width: 30rem;
    height: 30rem;
    background-color: #fff;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: left bottom;
    transition: all 0.5s cubic-bezier(.09,.68,.42,1.02);
}

.box-icon-commit:before{
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-color: var(--cl-x);
}


.box-icon-commit:hover{
    transform: translateY(-0.5rem);
    color: #000;
}

.box-icon-commit:hover:after{
    transform: scale(1.0);
}

.box-icon-commit:hover .icon img{
    filter: brightness(0) saturate(100%);
}

/*===*/
.box-product{
    overflow: hidden;
}

.box-product .box-thumbnail{
    position: relative;
    border: 1px solid #F0EEED;
    border-radius: 0.5rem;
}

.box-product .box-thumbnail:after{
    content: "";
    position: absolute;
    z-index: 1;
    left: -30%;
    bottom: -30%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    border-radius: 50%;
    transform: scale(0);
    transform-origin: left bottom;
    transition: all 0.5s cubic-bezier(.09,.68,.42,1.02);
    pointer-events: none;
    opacity: 0.2;
}

.box-product:hover .box-thumbnail:after{
    transform: scale(1.0);
}


.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{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.box-product .box-title{

}

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

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

.box-product .box-price .label-sale-price{
    color: #000;
    font-size: var(--fs-20);
}

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

.box-product .btn-custom{
    padding: 0.375rem 1.25rem;
    font-size: var(--fs-14);
}

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

/*===*/
.box-blog{
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.box-blog .box-thumbnail{
    position: relative;
    border-radius: 0.5rem;
    clip-path: url('#clip-path-post');
}

.box-blog .box-badge{
    position: absolute;
    right: 0;
    top: 0;
    width: 18%;
    transform: translateY(calc(-100% - 0.5rem));
}

.box-blog .box-badge .inner-badge{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    border-radius: 0.5rem;
    color: #fff;
    font-weight: 700;
    line-height: normal;
    text-align: center;

}

.box-blog .box-badge .date{
    font-size: 1.25rem;
}


.box-blog .box-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    padding: 0.5rem;
    position: relative;
}

.box-blog .box-content .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-bottom: 1rem;
    line-height: normal;
    color: #7a7a7a;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    position: relative;
    margin-top: auto;
    font-size: 0.875rem;
}

.box-blog .box-view-more:before{
    content: "";
    display: inline-block;
    width: 0rem;
    height: 1px;
    margin-right: 0.25rem;
    background-color: var(--cl-x);
    vertical-align: middle;
    opacity: 0;
    transition: all .5s cubic-bezier(.09,.68,.42,1.02);
}

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

.box-blog:hover .box-view-more:before{
    width: 1rem;
    opacity: 1;
}

.box-blog .box-view-more span {
    display: inline-block;
    transition: transform 0.2s ease;
}

/*.box-blog:hover .box-view-more span {
    transform: translateY(-4px);
    color: var(--cl-x);
}*/

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

.box-blog:hover .box-thumbnail img{
    transform: scale(1.1) rotate(3deg);
}


/*===*/
.marquee-slide {
    mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}

.marquee-slide .swiper-slide{
    width: max-content;
}

.box-marquee{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: var(--fs-18);
    font-weight: 700;
}

.box-marquee .icon{
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
}


/*===*/

#accordion-question .accordion-item{
    border: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}

#accordion-question .accordion-item + .accordion-item{
    margin-top: 0.75rem;
}

#accordion-question .accordion-button{
    box-shadow: none !important;
    background-color: #A80000;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}

#accordion-question .accordion-button:after{
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    width: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    height: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    background-image: unset;
    border-radius: 50%;
    color: #A80000;
    font-size: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
    transition: all 0.8s cubic-bezier(.3,.9,.61,.99);
}

#accordion-question .accordion-button:not(.collapsed):after{
    transform-origin: center center;
    content: "\f054";
    transform: rotate(90deg);
}

#accordion-question .accordion-collapse{
    background-color: #A80000;
    color: #fff;
    line-height: normal;
}

#accordion-question .accordion-collapse .accordion-body{
    padding: 0 1rem 1rem;
}

.block-faq .bg-cover-1{
    background-position: right center;
    background-size: contain;
}

.block-faq .bg-cover-2{
    width: 80%;
    background-color: #D53030;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

.block-faq .img-cover{
    position: absolute;
    bottom: -2rem;
    right: 0%;
    width: 40%;
}


/*====*/
.review-slide .swiper-pagination-bullet{
    background-color: var(--cl-x);
}

.wrapper-slide .review-prev,
.wrapper-slide .review-next{
    background-color: var(--cl-x);
    color: #fff;
}

.wrapper-slide .review-prev{
    left: -3rem;
}

.wrapper-slide .review-next{
    right: -3rem;
}

.box-review{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 4px 16px 0px;
    transition: all 1s cubic-bezier(.09,.68,.42,1.02);
}

.box-review .box-content:before{
    content: ',,';
    position: absolute;
    z-index: -1;
    line-height: 0;
    font-size: 10rem;
    color: #ede8e8;
}

.box-review .box-user{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.box-review .box-user .box-icon{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
}

.box-review .box-user .box-name{
    flex: 1;
}

.box-review .box-user .box-name .name{
    font-size: 1.125rem;
    font-weight: 700;
}

.box-review .box-user .box-name .position{
    font-size: 0.875rem;
}

.review-slide .swiper-slide .box-review{
    transform: scale(0.95);
}

.review-slide .swiper-slide-active .box-review{
    transform: scale(1);
}


/*===*/
.footer{
    position: relative;
    color: #fff;
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.wrapper-form-footer{
    position: relative;
    z-index: 2;
    padding: 4rem 4rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

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

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

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

.logo-footer{
    width: clamp(5rem, 4rem + 5vw, 10rem);
}

.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.75rem;
}

.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: 0.25rem;
    background-color: transparent;
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

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

.coppyright a{
}

/**/
.form-footer .form-group{
    display: flex;
    background-color: #fff;
    border-radius: 50rem;
}

.form-footer .form-control{
    flex: 1;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
}

.form-footer button{
    border-radius: 0;
}


/*===*/
.box-iframe{
    height: 15rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.box-iframe iframe{
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.box-icon-location{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.box-icon-location .icon{
    width: 3.5rem;
    height: 3.5rem;
}

.box-icon-location .content{
    /*color: rgba(0, 0, 0, 0.5);*/
}

.box-icon-location .content .title{
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
}

.wrapper-box{
    padding: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-contact .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    box-shadow: none;
    font-size: inherit;
}

.form-contact .form-control:focus{
    border-color: #e9c6c6;
}

.iti{
    display: block !important;
}

.form-contact .g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: center;
}


/*===*/
.wrapper-content-service{
    height: 100%;
    padding: 2rem;
    background-color: #F5F5F5;
    position: relative;
}

.wrapper-content-service.odd{
    margin-top: 2rem;
    margin-left: -5rem;
}

.wrapper-content-service.even{
    margin-top: 2rem;
    margin-right: -5rem;
}

.wrapper-content-service .icon-cover{
    width: clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
    height: clamp(3.5rem, 3.2rem + 1.5vw, 5rem);
    position: absolute;
}

.wrapper-content-service.odd .icon-cover{
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}

.wrapper-content-service.even .icon-cover{
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
}



/*==== About*/
.block-about-introduce .box-content-title .content{
    background-color: #F5F5F5;
    padding: 1rem;
    border-radius: 0.5rem;
}

.block-about-introduce .box-content-title ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-left: 0;
}

.block-about-introduce .box-content-title ul li{
    width: calc(50% - 0.5rem);
}

.block-about-introduce .box-content-title ul li:before{
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: var(--cl-x);
    display: inline-block;
    margin-right: 0.5rem;
}


.box-history{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}

.box-history .box-top{
    text-align: center;
}

.box-history .box-top .title{
    font-size: 2rem;
    font-weight: 900;
    color: rgba(33, 37, 41, 0.25);
    line-height: 1;
}

.box-history .box-top .title-sub{
    margin-top: -1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.box-history .icon{
    width: 2rem;
    height: 2rem;
    position: relative;
    z-index: 1;
}

.box-history .icon:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%);
    width: 400px;
    border: 1px dashed #ccc;
}

.box-history .box-bottom{
    padding: 0 1rem;
}

.box-history .box-bottom h3{
    font-size: var(--fs-24);
}


.box-scale-team{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2rem clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
    background-color: #F5F5F5;
    border-bottom: 3px solid transparent;
    border-radius: 0.5rem;
    transition: all .5s cubic-bezier(.09,.68,.42,1.02);
}

.box-scale-team .icon{
    width: 3rem;
    height: 3rem;
    transition: all .5s cubic-bezier(.09,.68,.42,1.02);
}

.box-scale-team .icon img{
    transition: all .5s cubic-bezier(.09,.68,.42,1.02);
}

.box-scale-team .content{
    margin-top: 1rem;
    text-align: center;
    font-size: var(--fs-20);
    line-height: normal;

}

.box-scale-team .content h3{
    margin-bottom: 0;
    font-size: var(--fs-18);
    font-weight: 700;
    color: #7F7F7F;
}

.box-scale-team:hover .icon{
    transform: translateY(-0.5rem);
}

.box-scale-team:hover .icon img{
    filter: brightness(0) saturate(100%) invert(18%) sepia(63%) saturate(3965%) hue-rotate(356deg) brightness(83%) contrast(133%);
}

.box-scale-team:hover{
    transform: translateY(-0.25rem);
    border-bottom-color: var(--cl-x);
}

/*===*/
.box-machine-tech{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.5rem;
    font-size: var(--fs-18);
    font-weight: 700;
    text-align: center;
    transition: all .3s cubic-bezier(.09,.68,.42,1.02);
    overflow: hidden;
    position: relative;
}

.box-machine-tech:after{
    content: "";
    position: absolute;
    z-index: -1;
    left: -5%;
    bottom: -30%;
    width: 5rem;
    height: 5rem;
    background-color: var(--cl-x);
    border-radius: 50%;
    transform: scale(0);
    transform-origin: left bottom;
    transition: all 0.5s cubic-bezier(.09,.68,.42,1.02);
    pointer-events: none;
    opacity: 0.5;
}

.box-machine-tech:hover:after{
    transform: scale(1.0);
}

.box-machine-tech:hover{
    box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 12px 0px;
}


.wrapper-booking{
    position: relative;
    padding: 3rem 3rem 0 3rem;
    border-radius: 1rem;
    overflow: hidden;
}

.wrapper-booking .sub-title-style h3{
    background: unset;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.wrapper-booking .sub-title-style span{
    background-color: #fff;
}

.form-booking .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    background-color: transparent;
    box-shadow: none !important;
    border-color: #fff !important;
    color: #fff;
    font-size: inherit;
    transition: background-color .3s ease-in-out;
}

.form-booking select.form-control option{
    color: #000;
}

.form-booking .form-control:focus{
    background-color: #bbbbbb3b;
}

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

.form-booking .g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: left;
}

.form-booking .iti__selected-dial-code{
    color: #fff;
}

.form-booking .iti__arrow{
    border-top-color: #fff;
}

.form-booking .form-control.is-invalid{

}

.form-booking .invalid-feedback{
    color: #fff;
}

.waves{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 10s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 15s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 18s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 27s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% { 
        transform: translate3d(85px,0,0);
    }
}