@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* --- Book (Regular) --- */
@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-Book.woff') format('woff');
    font-weight: 400; /* Book thường tương đương với normal hoặc 400 */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-BookItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* --- Medium --- */
@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* --- Bold --- */
@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* --- ExtraBold --- */
@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Magistral';
    src: url('../fonts/FS-Magistral-ExtraBoldItalic.woff') format('woff');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@import 'https://cdn.jsdelivr.net/npm/@photo-sphere-viewer/core@5/index.css';

:root{
    --cl-x: #1D9E4A;
    --cl-y: #ED4C2E;
    --cl-grd-x: linear-gradient(180deg, #6BBB45 0%, #1D9E4A 100%);
    --cl-grd-y: linear-gradient(180deg, #F49227 0%, #ED4C2E 100%);
    --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: 10%;
    --py-content: 60px;
}

body{
    font-family: 'FS Magistral';
    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 1.125rem;
    border: 1px solid transparent;
    border-radius: 0.125rem 0.75rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition-property: all !important;
    vertical-align: middle;
    box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.25);
}

.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: var(--cl-grd-x);
    color: #fff;
    border: 1px solid var(--cl-grd-x);
}

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

.btn-y{
    background: var(--cl-grd-y);
    color: #fff;
    border: 1px solid var(--cl-grd-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;
}

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

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


.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-image: url('/templates/images/bg-header.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

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

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

.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: 0.5rem 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}

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

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

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

/*===*/
.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{
    display: block;
    margin: 0;
    padding: 0.25rem;
}

.logo{
    width: 120px;
    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);
}

.icon-header i{
    background: var(--cl-grd-y);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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: 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{
    display: flex;
    border: 1px solid var(--cl-x);
    border-radius: 0.25rem;
}

.translate .lang-item{
    display: block;
    padding: 0.125rem 0.5rem 0.25rem;
    color: #000;
    font-weight: 500;
    line-height: normal;
    transition: all .3s ease;
}

.translate:hover .lang-item,
.translate:hover .lang-item.active{
    background: transparent;
    color: #000;
}

.translate .lang-item.active,
.translate .lang-item:hover,
.translate .lang-item.active:hover{
    background: var(--cl-grd-x);
    color: #fff;
}

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

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

.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f4f4f4;
}
.simple-breadcrumb .breadcrumb{
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
}

.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.simple-breadcrumb .breadcrumb-item.active{
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--cl-x);
}


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

.main-slide{
    height: calc(100vh - 88px);
}

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

.main-slide-next{
    left: 50%;
    top: 50%;
    right: unset;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
}

.main-slide-next:after{
    content: "\f101";
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.main-slide .swiper-slide .box-img-slide{
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    transform: translateY(100px);
    transition: all 2s ease;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.main-slide .swiper-slide-active .box-img-slide{
    transform: translateY(0);
    opacity: 1;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    z-index: 30;
    transform: translateY(-30%);
    color: #fff;
    opacity: 0;
    transition: all 1s ease;
}

.main-slide .swiper-slide-active .banner-slide{
    transform: translateY(-50%);
    opacity: 1;
}

.main-slide .banner-slide h2{
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    text-shadow: 4px 3px 0 #1E1E1E;
}

.wrapper-slide-thumb {
    width: clamp(21.875rem, 18.75rem + 15.625vw, 37.5rem);
    height: clamp(21.875rem, 18.75rem + 15.625vw, 37.5rem);
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    transform: translate(-50%, 30%);
}

.wrapper-slide-thumb .list-item-thumb {
    position: absolute;
    inset: 0;
    border: 2px solid var(--cl-x);
    border-radius: 50%;
    transition: transform 1.5s ease;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.wrapper-slide-thumb .list-item-thumb .item {
    position: absolute;
    width: clamp(6.25rem, 5rem + 6.25vw, 12.5rem);
    height: clamp(6.25rem, 5rem + 6.25vw, 12.5rem);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wrapper-slide-thumb .list-item-thumb .item.active {  }

.shape-cover-slide-thumb{
    position: absolute;
    inset: 0;
    border: clamp(3rem, 2.6rem + 2vw, 5rem) solid rgba(255, 255, 255, 0.31);
    border-radius: 50%;
    z-index: -1;
}

.wrapper-slide-thumb .list-name{
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
    width: 50%;
    display: flex;
    justify-content: center;
}

.wrapper-slide-thumb .list-name .item{
    position: absolute;
    top: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
    font-weight: 700;
    text-shadow: 4px 3px 0 #1E1E1E;
    color: #fff;

}

.wrapper-slide-thumb .list-name .item.active{
    opacity: 1;
    transform: translateX(0);
}

.wrapper-main-slide .shape-circle{
    position:  absolute;
    inset: 0;
    border-radius: 50%;
    z-index: -1;
}

.wrapper-main-slide .shape-circle-1:before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #6BBB45, #1D9E4A);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
          mask-composite: exclude;
}


.wrapper-main-slide .shape-circle-2:before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #6BBB45, #1D9E4A);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
          mask-composite: exclude;
}


.wrapper-main-slide .clouds{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    /*overflow-x: hidden;*/
    pointer-events: none;
    z-index: 10;
}

.wrapper-main-slide .clouds .cloud-item{
    position: absolute;
    bottom: -20%;
    left: var(--tras);
    transform-origin: bottom;
    max-width: 100%;
    width: 30%;
    height: 30%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    animation: animate-cloud calc(5s * var(--i)) linear infinite;
}

@keyframes animate-cloud{
    0%{
        opacity: 0;
        transform: scale(1);
    }
    25%, 75%{
        opacity: 0.75;
    }
    100%{
        transform: scale(2);
        opacity: 0;
    }
}

.wrapper-main-slide .bg-cover.shape-trans{
    z-index: 2;
    pointer-events: none;

}

.wrapper-main-slide .bg-cover.shape-trans:before{
    content: unset;
}

.wrapper-main-slide .bg-cover.shape-trans:after{
    height: 20%;
}


/*Home========================*/
.box-content-main h1,
.box-content-main h2{
    --cl-title: var(--cl-grd-x);
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    position: relative;
    background: var(--cl-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-content-main h3{
    font-family: "Gilbert Qualifi Demo";
    font-weight: 200;
    color: #056029;
    text-transform: uppercase;
    /*background: var(--cl-grd-x);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    margin-bottom: 0;
}

.box-content-main h3 span{
    color: #e43f05;
    /*background: var(--cl-grd-y);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}

.box-content-main.h2-cl-y h2{
    --cl-title: var(--cl-grd-y);
}

/*===*/
.box-position{
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: var(--cl-grd-y);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.box-impressive-number{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.box-impressive-number .box-top{
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--cl-grd-y);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-impressive-number .box-icon{
    max-width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
}

.box-impressive-number .counter{
    font-size: clamp(1.75rem, 1.7rem + 0.25vw, 2rem);
    font-weight: 700;
    line-height: 1;
}

.box-impressive-number .box-title{
    flex: 1;
    font-weight: 600;
}

.box-impressive-number .box-bottom{
    text-align: center;
}


/*===*/
.box-our-team{
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.box-our-team .box-thumbnail{
    padding: 1rem 1rem 0;
    background-color: #D9D9D9;
}

.box-our-team .box-content{
    flex: 1;
    position: relative;
    padding: 1rem;
    text-align: center;
    color: #868686;
}

.box-our-team .box-content:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 1.5rem;
    background-color: #fff;
    transform: translateY(-100%);
}

.box-our-team .box-content:after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
    height: 1.5rem;
    background-color: #fff;
    transform: translateY(-100%);
}

.box-our-team .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    color: #000;
}

.box-our-team .social{
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.box-our-team .social .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #ccc;
    font-size: 0.875rem;
}


/*===*/
.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: 1rem;
}


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

.box-product .box-thumbnail{
    position: relative;
}

.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;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.box-product .box-title{
    max-height: 2.5rem;
}

.box-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-20);
    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;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

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

.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{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.box-blog .box-thumbnail{
    border-radius: 0.75rem;
}

.box-blog .box-meta{
    display: flex;
    gap: 1rem;
    color: #ACACAC;
}

.box-blog .box-meta i{
    color: #744526;
}

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

.box-blog .title{
    margin-bottom: 0.25rem;
    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{
    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-blog-vertical{
    flex-direction: row;
    background-color: #EEECEC;
    border-radius: 0.75rem;
}

.box-blog-vertical .box-thumbnail{
    width: 40%;
}

.box-blog-vertical .box-content{
    padding: 1rem 0.5rem;
}


.box-gallery{
    position: relative;
}

.box-gallery .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    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);
}

.box-gallery .box-content .title{
    font-size: var(--fs-18);
    text-align: center;
}



/*===*/
.footer{
    position: relative;
    padding-top: clamp(3rem, 2.6rem + 2vw, 5rem);
    color: #fff;
}

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

.footer .bg-cover:before{
    height: 50%;
}

.footer .bg-cover:after{
    content: unset;
}

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

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

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

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

.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{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-contact .item{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    background: var(--cl-grd-y);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-weight: 900;
    color: #303029;
}

.social-contact-footer .item{
    font-size: 2rem;
}

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


/**/
.form-footer .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    border: 0;
    border-radius: 0.25rem;
    box-shadow: none !important;
    background-color: #fff;
    font-size: inherit;
}

.form-footer button{
    padding-left: 2rem;
    padding-right: 2rem;
}


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

.box-iframe-contact{
    height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.box-iframe-contact iframe{
    height: 100%;
}

#contact-form label{
    color: var(--cl-x);
}

#contact-form .form-control{
    padding: 0.75rem 1rem;
    background-color: #F6F6F6;
    border: 0 !important;
    border-radius: 0.5rem;
    box-shadow: none;
    font-size: inherit;
}

#contact-form .form-control:focus{
    box-shadow: 0 0 6px 0 #1d9e4a;
}

#contact-form .btn-custom{
    padding-left: 3rem;
    padding-right: 3rem;
}



/*====*/
.marquee-gallery {
    -webkit-font-smoothing: antialiased;
    width: fit-content;
    display: flex;
    gap: 0.5rem;
    overflow: hidden;
}

.marquee-gallery-item{
    flex-shrink: 0;
    font-smooth: always;
    width: auto;
    height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.marquee-gallery-item img {
    width: clamp(20rem, 17.6rem + 12vw, 32rem);
}


/*====*/
.box-img-partner{
    border-radius: 0.5rem;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all .3s ease;
}

.box-img-partner:hover{
    transform: translateY(-0.5rem);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}


.box-img-ceo-message{
    display: flex;
    border-radius: 0.75rem;
    overflow: hidden;
}

.box-img-ceo-message .box-left{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: var(--cl-grd-y);
    padding-left: 0.5rem;
}

.box-img-ceo-message marquee{
    height: -webkit-fill-available;
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    line-height: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
    letter-spacing: 0.75rem;
}

.box-img-ceo-message .box-right{
    flex: 1;
}



/*===*/
.icon-item-history{
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    background: var(--cl-grd-y);
    padding: 0.5rem;
    border-radius: 0 1rem;
}


.line-history{
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 1px;
    background-color: #CFCFCF;
    transform: translateX(-50%);
}

.box-img-history{
    display: flex;
}

.box-img-history .box-left{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
    font-weight: 700;
    line-height: 1;
    transform: rotate(180deg);
    padding-left: 1rem;
    opacity: 0.38;
    background: var(--cl-grd-x);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.box-img-history .box-right{
    flex: 1;
    border-radius: 0.75rem;
    overflow: hidden;
}



.box-content-vm{
    height: 100%;
    padding: clamp(2rem, 1.6rem + 2vw, 4rem);
    background: linear-gradient(-45deg, #1E9E4A, #35A748, #4DB047, #6ABB45);
    border-radius: 1rem;
    background-size: 300% 300%;
    color: #fff;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.box-year-history{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.box-year-history .dot{
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 1px solid #ccc;
    transition: all .5s ease;
}

.box-year-history .label{
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    opacity: 0.8;
    color: #000;
    text-align: center;
    transition: all .3s ease;
}

.swiper-slide-thumb-active .box-year-history .label{
    opacity: 1;
    background: var(--cl-grd-x);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper-slide-thumb-active .box-year-history .dot{
    border: 1px solid var(--cl-x);
    outline: 3px solid var(--cl-x);
    outline-offset: -12px;
}


.slide-history-next{
    right: calc(-1 * clamp(0rem, -0.6rem + 3vw, 3rem));
}

.slide-history-prev{
    left: calc(-1 * clamp(0rem, -0.6rem + 3vw, 3rem));
}

.slide-history-next:after,
.slide-history-prev:after{
    color: #ccc;
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
}


.slide-history-content h2{
    font-size: var(--fs-28);
}

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