:root{
    --cl-x: #010849;
    --cl-y: #FCBC20;
    --cl-z: #2E66D3;
    --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: "Inter", sans-serif;
    overflow 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-x{
    color: var(--cl-x) !important;
}

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

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

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

.btn-custom {
    display: inline-block;
    padding: .5rem 1rem;
    border: 1px solid var(--btn-color, transparent);
    border-radius: .5rem;
    font-weight: 500;
    position: relative;
    vertical-align: middle;
    transition: all .3s ease-in-out;
}

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

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

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

.btn-outline {
    background: transparent;
    color: var(--btn-color);
}

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

.btn-x {
    --btn-color: var(--cl-x);
}

.btn-y {
    --btn-color: var(--cl-y);
}

.btn-z {
    --btn-color: var(--cl-z);
}

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

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

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

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

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

.navbar-top{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--cl-y);
    color: #fff;
}

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

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

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

.navbar-nav{
    width: 100%;
    align-items: center;
    gap: 2%;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-weight: 600;
    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: 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.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{
    height: clamp(3.75rem, 3.5rem + 1.25vw, 5rem);
    transition: all .3s ease-in-out;
}

.btn-contact-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #E9BF59, #CF9C2E);
}

.btn-contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 150%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    100% { left: 150%; }
}

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

.box-search-header{
    display: flex;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.125rem 1rem;
    border: 0;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    box-shadow: none !important;
    color: #fff;
}

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


.box-search-header button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem 1rem;
    border-radius: 0 0.25rem 0.25rem 0;
}

.btn-popup-search{
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    box-shadow: none !important;
    background-color: #fff;
    color: var(--cl-x);
}

.btn-popup-search svg{
    fill: var(--cl-x);
}

/*===*/
.btn-hotline-header:hover{
    box-shadow: 0px 0px 12px 0 rgba(46, 102, 211, 0.8);
}

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


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

/*banenr-page*/
.banner-page{
    position: relative;
    min-height: clamp(15rem, 14rem + 5vw, 20rem);
    display: flex;
    align-items: center;
}

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

.banner-page .breadcrumb{
    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;
}

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

.box-hover-zoom .box-thumbnail img{
    transition: all 0.5s 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.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 700;
}

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

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: var(--px-content);
    width: 40%;
    transform: translateY(-50%);
}

.main-slide .banner-slide h2{
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    color: inherit;
}

.main-slide .banner-slide p{
    font-size: var(--fs-18);
}

.main-slide .banner-slide .btgrid{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.btn-custom.btn-icon i{
    width: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    height: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    background-color: var(--cl-y);
    border-radius: 50%;
    transition: all .3s ease;
}

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


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

.box-title-main h2 + *{
    margin-top: 1rem;
}

.box-title-main p{
    margin-bottom: 1rem;
}

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



/*===*/
.box-wcu{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    border-radius: 0.5rem;
}

.box-wcu .box-icon{
    width: clamp(5rem, 4.6rem + 2vw, 7rem);
    height: clamp(5rem, 4.6rem + 2vw, 7rem);
}

.box-wcu .box-content{
    text-align: center;
}

.box-wcu .title{
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}


/*====*/
.box-service{
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    background-color: var(--cl-x);
}

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

.box-service .box-content{
    display: flex;
    align-items: center;
    line-height: normal;
    color: #fff;
    position: relative;
}

.box-service .box-content h3{
    flex: 1;
    margin-bottom: 0;
    margin-left: 1.5rem;
    font-size: var(--fs-18);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-service .view-more{
    --w-icon: 3rem;
    position: relative;
    padding: 0.25rem 0 0 0.25rem;
    border-radius: calc(var(--w-icon) / 2) 0 0 0;
    background-color: #fff;
}

.box-service .view-more-inner{
    width: var(--w-icon);
    height: var(--w-icon);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-y);
    position: relative;
    z-index: 1;
}

.box-service .view-more:before{
    content: "";
    position: absolute;
    width: var(--w-icon);
    height: calc(var(--w-icon) / 2);
    bottom: 100%;
    right: 0;
    border-radius: 0 0 1rem 0;
    box-shadow: 20px 0 0 0 #fff;
}

.box-service .view-more:after{
    content: "";
    position: absolute;
    width: var(--w-icon);
    height: calc(var(--w-icon) / 2);
    left: calc(-1 * var(--w-icon));
    bottom: 0;
    border-radius: 0 0 1rem 0;
    box-shadow: 20px 0 0 #fff;
}


/*===*/
.box-review{
    padding: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    border: 1px dashed var(--cl-y);
    border-radius: 1rem;
    background-color: #fff;
}

.box-review .user{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

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

.box-review .user p{
    color: rgba(0, 0, 0, 0.5);
}

.box-blog{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

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

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

.box-blog .date{
    color: rgba(0, 0, 0, 0.5);
}

.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 .view-more{
    margin-top: auto;
    background: linear-gradient(90deg, rgba(233, 191, 89, 1) 0%, rgba(207, 156, 46, 1) 100%);
    -webkit-background-clip: text !important;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-weight: 700;
}

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



/*===*/
.box-product{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
}

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

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

.box-product .box-content{
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
    padding: 1rem;

}

.box-product .box-content .title{
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--cl-x);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-product .box-content .box-price{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: auto;
}

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

.box-product .box-content .box-price .label-regular-price{
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.5);
    font-size: var(--fs-14);
}


/*===*/
.footer{
    position: relative;
    background-color: var(--cl-x);
    color: #fff;
}

.footer-top{
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer a{
    color: #fff;
    transition: all .3s ease-in-out;
}

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

.logo-footer{

}

.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{
    transition: transform .2s ease-in-out;
}

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

.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:hover{
    transform: translateX(5px);
}

.list-info-sale p{
    display: flex;
    align-items: center;
}

.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: 4px;
    border-radius: 5rem;
    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: 700;
    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;
    color: #fff;
}

.coppyright a{
    color: #fff;
}

.form-footer .form-group{
    display: flex;
    background-color: #FFFFFF;
    border-radius: 50rem;
    border: 1px solid var(--cl-x);
}

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

.form-footer .btn-custom{
    border-radius: inherit;
    transform: translateX(1px);
}


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

.box-iframe-contact{
    margin-top: calc(-1 * clamp(7rem, 6.4rem + 3vw, 10rem));
}



/*===*/
.icon-info-contact{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-info-contact .icon{
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
}


.form-contact .form-control{
    background-color: #EEEEEE;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
    box-shadow: none !important;
    border: 0;
}


/*==== Trang Giới thiệu*/
.box-work-principles{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 1rem;
    background-color: var(--cl-x);
    color: #fff;
    border-radius: 50rem;
}

.box-work-principles .box-number{
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

.box-work-principles .inner-number{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    background-color: var(--cl-x);
    border-radius: inherit;
    color: var(--cl-y);
    font-weight: 700;
}

.box-work-principles .inner-number:after{
    content: "";
    position: absolute;
    inset: -1rem;
    z-index: -1;
    background-color: #fff;
    border: 2px solid var(--cl-y);
    border-radius: 50%;
}