:root{
    --cl-x: #016831;
    --cl-y: #F58220;
    --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.5rem, 1.3rem + 1vw, 2.5rem);

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

/*@font-face {
    font-family: 'Your Font';
    src: 
        url('../fonts/SVN-Gilroy-Bold.woff') format('woff');
        font-weight: 700;
}*/

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

.text-gray{
    color: var(--cl-gray);
}

/*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.25rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}

.btn-custom img{
    width: 0.75rem;
}


.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-white{
    background-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;
}

.btn-style{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    background-color: #06763A;
    color: #fff;
}

.btn-style:before,
.btn-style:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background-color: var(--cl-x);
    z-index: -1;
}

.btn-style:before{
    top: 0;
    transform: translateY(-100%);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.btn-style:after{
    bottom: 0;
    transform: translateY(100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.btn-style .label-text{
    flex: 1;
}

.btn-style .icon-arrow{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -1.5rem;
    padding: 0.25rem;
    background-color: var(--cl-y);
    filter: drop-shadow(-3px 0px 4px rgba(0, 0, 0, 0.25));
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.btn-custom-small{
    padding: 0.25rem 1rem;
}

.btn-custom-small.btn-style{
    padding: 0rem 0.75rem;
}

.btn-custom-small.btn-style .icon-arrow{
    width: 1.5rem;
    height: 1.5rem
}


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

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

.block{
    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;
    background-size: cover;
}

.bg-attachment{
    background-attachment: fixed;    
}

.bg-cover.has-gradient:before,
.bg-cover.has-gradient:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; /*50%*/
}

.bg-cover.has-gradient:before{
    top: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}

.bg-cover.has-gradient:after{
    bottom: 0;
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}




/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    background-image: url(../images/bg-header.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    border-bottom: 0.25rem solid var(--cl-x);
}
.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all 0.5s ease-out;

}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-fixed{
    position: fixed;
    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-fixed .navbar-top{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-nav{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.navbar-nav .nav-item{
    flex: 1;
}

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

.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: var(--cl-y);
}

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

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

.navbar-nav .dropdown-menu .dropdown-item:hover{
    background-color: var(--cl-x);
    color: #fff;
}

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

.navbar-nav .nav-item.dropdown .dropdown-menu{
    animation: menu 0.3s;
}

.navbar-nav .dropdown:hover > .dropdown-menu{
    display: block;
}

.navbar-nav .dropdown .dropdown-menu .dropdown .dropdown-menu{
    top: 0;
    left: 98%;
}

@keyframes menu {
    0% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}

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

.logo{
    width: 100%;
    transition: all .5s ease-in-out;
}

.navbar-fixed .logo{
    width: 90%;
}

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

.box-search-header{
    display: flex;
    border: 1px solid #B3D3C2;
    border-radius: 5px;
    background-color: transparent;
    overflow: hidden;
}

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

.box-search-header input::placeholder{
    color: var(--cl-x);
}

.box-search-header button{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    background-color: transparent;
    color: var(--cl-x);
    box-shadow: none !important;
}

.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: 5rem;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #EDEDED;
    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: #838383;
    font-weight: 700;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
}

.simple-breadcrumb{
    padding-top: 0rem;
    padding-bottom: 0rem;
}
.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.simple-breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
}


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

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 3% 2%;
    border: 2px solid #fff;
    border-radius: 1.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.main-slide .banner-slide h2{
    font-size: clamp(1.25rem, 0.5rem + 3.75vw, 5rem);
    font-family: "Ribeye Marrow", serif;
    color: #fff;
}

/*Home========================*/
/*===*/
.card-hover-circle .thumbnail:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%, -100%);
    width: 100px;
    height: 100px;
    background-color: rgba(255 255 255 / 0.3);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.card-hover-circle .thumbnail:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%);
    width: 100px;
    height: 100px;
    background-color: rgba(255 255 255 / 0.3);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.card-hover-circle:hover .thumbnail:before,
.card-hover-circle:hover .thumbnail:after{
    transform: scale(7);
    opacity: 0;
}

.card-hover-zoom .thumbnail,
.card-hover-zoom-long .thumbnail{
    overflow: hidden;
}

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

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

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

.swiper-button-circle .swiper-button-next,
.swiper-button-circle .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);
    opacity: 1;
    transition: all .3s ease-in-out;
    pointer-events: all;
}
.swiper-button-circle .swiper-button-next:after,
.swiper-button-circle .swiper-button-prev:after{
    content: "";
}

.swiper-button-circle.hover-show-button .swiper-button-next,
.swiper-button-circle.hover-show-button .swiper-button-prev{
    opacity: 0;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-next,
.swiper-button-circle.hover-show-button:hover .swiper-button-prev{
    opacity: 1;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-disabled{
    opacity: 0.5;
}


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

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

/**/
.icon-box{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 2rem 1rem;
    transition: all .3s ease-in-out;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.icon-box .icon{
    width: 4.5rem;
    height: 4.5rem;
}

.icon-box .content{
    flex: 1;
}

.icon-box .title{
    margin-bottom: 0.5rem;
    font-size: var(--fs-24);
    text-align: center;
}

.icon-box-horizontal{
    flex-direction: column;
}
.icon-box-horizontal .title{
    text-align: center;

}

.icon-box:hover{
    transform: translateY(-0.25rem);
}


/*===*/
.block-achievement{
    padding-top: clamp(4rem, 3.6rem + 2vw, 6rem);
    padding-bottom: clamp(4rem, 3.6rem + 2vw, 6rem);
}

.box-counter{
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 10% 5%;
    background-color: #FFFFFF;
    border-radius: 1rem;
}

.box-counter .counter-icon{
    width: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    height: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
}

.box-counter .counter-label{
    flex: 1;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    font-weight: 700;
}

.box-counter .title{
    margin-bottom: 0;
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
}



/*===*/
.block-category .img-cover-1,
.block-category .img-cover-2{
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.block-category .img-cover-1{
    left: 0;
    top: 0;
    width: clamp(6rem, 2.2rem + 19vw, 25rem);
}

.block-category .img-cover-2{
    right: 0;
    bottom: 20%;
    width: clamp(5rem, 2.8rem + 11vw, 16rem);
}





.box-enterprise-system{
    height: 100%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0.75rem;
    overflow: hidden;
}

.box-enterprise-system .box-content{
    padding: 0.75rem;
    text-align: center;
    line-height: normal;
}

.box-enterprise-system .box-content h3{
    font-size: var(--fs-18);
    font-weight: 700;
    color: var(--cl-x);
}




/*===*/
.box-collaboration{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #fff;
}

.box-collaboration .box-top{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.box-collaboration .box-top .icon{
    width: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
}


.box-collaboration .box-top .title{
    margin-bottom: 0;
    font-size: var(--fs-18);
    font-weight: 700;
    color: var(--cl-x);
}



/*===*/
.card-service{
    display: flex;
    flex-direction: column;
}
.card-service .thumbnail{
    position: relative;
    border-radius: 0.5rem 1.5rem;
}
.card-service .thumbnail .description{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    font-size: var(--fs-14);
}

.card-service .content{
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    text-align: center;
}

.card-service .title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    transition: all .3s ease-out;
    color: var(--cl-x);
}
.card-service .description{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    color: #fff;
    transition: all .3s ease-in-out;
}

.card-service:hover .thumbnail img{
    filter: brightness(0.3);
}

.card-service:hover .description{
    opacity: 1;
}


/*===*/
.block-technical{
    padding-top: clamp(2rem, 1.4rem + 3vw, 5rem);
    padding-bottom: clamp(2rem, 1.4rem + 3vw, 5rem);
}

.card-technical .thumbnail{
    border-radius: 1.25rem;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.card-technical .content{
    margin-top: 1rem;
}

.card-technical .card-meta{
    margin-top: 0.25rem;
}
.card-technical .card-meta .date{
    color: #6D6D6D;
    font-size: var(--fs-14);
    font-weight: 500;
}
.card-technical .title{
    margin-bottom: 0;
    height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
}

.card-technical .btn-custom{
    transform: translateX(-1rem);
}


/*===*/
.box-partner{
    padding: clamp(0.5rem, 0.2rem + 1.5vw, 2rem);
}

.box-partner img{
    filter: grayscale(1);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.box-partner:hover img{
    filter:  grayscale(0);
    transform: translateY(-0.25rem);
}


/*===*/
.card-category{
    border-radius: clamp(1rem, 0.8rem + 1vw, 2rem);
    overflow: hidden;
}

.card-category .thumbnail{
    --bs-aspect-ratio: 120%;
    border-radius: 1rem;
    background-color: #FCFFF5;
    overflow: hidden;
}

.card-category .title{
    margin-bottom: 0;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    color: var(--cl-x);
    text-align: center;
    font-weight: 700;
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}

/*===*/
/*.product-slide .swiper-slide{
    height: calc((100% - 30px) / 2) !important;
}*/

.card-product{
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0px 0px 10.9px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.card-product .thumbnail{
    --bs-aspect-ratio: 120%;
    border-radius: 1rem;
    overflow: hidden;
}

.card-product .content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 2.5rem;
    text-align: center;
    background: rgba(1, 104, 49, 0.49);
}

.card-product .title{
    margin-bottom: 0rem;
    font-size: 1rem;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-price .label-sale-price{
    color: #000;
}

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


/**/
.box-blog .box-thumbnail{
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.box-blog .box-content{
    margin-top: 1rem;
}

.box-blog .title{
    margin-bottom: 0.25rem;
    height: 44px;
    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 .view-more{
    margin-top: 0.5rem;
    font-size: var(--fs-18);
    color: var(--cl-x);
    text-decoration: underline;
}

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


/*===*/
.card-gallery{
    display: block;
    position: relative;
}

.card-gallery .title{
    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);
}
.card-gallery:hover .title{
    opacity: 1;
    transform: scale(1);
}

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

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


.block-gallery .card-gallery .thumbnail{
    height: clamp(11.25rem, 9.125rem + 10.625vw, 21.875rem);
}


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

.footer .bg-cover{
    background-position: top;
}

.footer-bottom{
    background-color: #016831;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer a{
    color: #fff;
}

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

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

.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
}

.title-footer{
    position: relative;
    margin-bottom: 1.5rem;
    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.625rem;
}

.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: 2.25rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.24rem;
    border: 1px solid #fff;
    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{
    background-color: #fff;
    color: var(--cl-x);
}

.social-contact-footer .item.item-zalo{
    color: var(--cl-x);
}


.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-x);
    border-color: var(--cl-x);
    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;
}


.form-footer .form-control{
    background-color: #fff;
    border-radius: 0.5rem 0 0 0.5rem;
}

.form-footer .btn-custom{
    border-radius: 0 0.5rem 0.5rem 0;
}



/*===*/
.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)
}


.sort-product{
    display: flex;
    gap: 1rem;
}

.sort-product .sort-type{
    display: flex;
    gap: 0.5rem;
}

.sort-product .sort-type select{
    padding: 0.25rem;
    border: 0;
    border-radius: 6px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.card-product-simple .title{
    margin-top: 0.5rem;
     margin-bottom: 0;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    text-align: center;
    color: var(--cl-x);
}

.slide-product-horizontal .swiper-slide{
    height: fit-content !important;
}

/*===*/
.wrapper-slide-category{
    position: relative;
    padding: 0 clamp(1rem, 0.8rem + 1vw, 2rem);
}

.wrapper-slide-category .shape-cover{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.box-category{
    display: flex;
    background-image: url('../images/box-category.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 1.25rem 1.5rem 1.5rem 1.25rem;
    box-shadow: 0px 0px 9.2px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}

.box-category .left-content{
    width: 80%;
    border-radius: 1.25rem;
    filter: brightness(0.9) blur(1px);
    overflow: hidden;
}

.box-category .right-content{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-category .label-brand{
    color: #fff;
    font-weight: 700;
    font-size: var(--fs-24);
    line-height: 1;
    writing-mode: vertical-rl;
}

.bottom-content{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    padding-left: 0.5rem;
    padding-right: 1.75rem;
}

.box-category .box-description{
    flex: 1;
    color: #fff;
    font-size: var(--fs-14);
    padding: 0.5rem;
}

.box-category .box-thumb-product{
    width: 18%;
}

.box-category .title{
    font-size: 1rem;
    font-weight: bold;
}

.box-category .description{
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-category .box-thumbnail{
    position: absolute;
    top: 0%;
    right: 0%;
    transform: translate(20%, -20%);
    width: clamp(4rem, 3.8rem + 1vw, 5rem);
    height: clamp(4rem, 3.8rem + 1vw, 5rem);
/*    background-color: #fff;*/
/*    border-radius: 50%;*/
/*    border: 0.25rem solid var(--cl-x);*/
    overflow: hidden;
}

[class*="list-dot-cover-"]{
    list-style: none;
    margin-bottom: 0;
    padding: 0.5rem;
    background-color: #fff;
}

[class*="list-dot-cover-"] li{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--cl-x);
}

[class*="list-dot-cover-"] li + li{
    margin-top: 0.5rem;
}

.list-dot-cover-1{
    position: absolute;
    left: 0;
    bottom: 20%;
    transform: translateX(-50%);
}

.list-dot-cover-2{
    position: absolute;
    right: 0;
    top: 20%;
    transform: translateX(50%);
}