:root{
    --cl-x: #ed1b24;
    --cl--x: #00406e;
    --cl-y:#B1010D ;
    --gray: #F2F5F9;
    --fs-14: 14px;
    --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: 10%;
    --py-content: 40px;
}

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: 12px;
}
.fs-14{
    font-size: 14px !important;
}
.fs-18{
    font-size: var(--fs-18);
}
.fs-20{
    font-size: var(--fs-20);
}
.fs-24{
    font-size: var(--fs-24);;
}
.fs-28{
    font-size: var(--fs-28);
}
.text-justify{
    text-align: justify;
}
.text-x{
    color: var(--cl-x) !important;
}
.text-y{
    color: var(--cl-y) !important;
}
.text-gray{
    color: var(--gray);
}
/*background*/
.bg-x{
    background-color: var(--cl-x) !important;
}
.bg-y{
    background-color: var(--cl-y) !important;
}
.bg-gray{
    background-color: #FAFCFF;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    vertical-align: middle;
}
.btn-custom:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.btn-x{
    background-color: var(--cl-x);
    color: #fff;
    border: 1px solid var(--cl-x);
}
.btn-x:hover{
    background-color: var(--cl--x);
}

.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: #fff;
    color: var(--cl-x);
}
.btn-outline-x:hover{
    border: 2px solid var(--cl-x);
    background-color: var(--cl-x);
    color: #fff;
}
.btn-outline-y{
    border: 2px solid var(--cl-y);
    color: #000;
}


.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);
}
.wrapper-inner{
    padding: 2%;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}
.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    position: relative;
}
.main-title-underline:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc((-1) * clamp(0.5rem, 0.4rem + 0.5vw, 1rem) );
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: var(--cl-y);
}
.main-title-underline.text-white:after{
    background-color: #fff;
}

.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 32px;
}

/*nav menu*/
.navbar-brand{
    margin: 0;
    padding: 0;
}
.logo{
    width: 100px;
    transition: all .3s ease-in-out;
}
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 10;
}
.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--cl-x);
    color: #fff;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.navbar-top a{
    color: var(--cl-x);
}

.navbar-main{
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

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

.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-nav{
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    /*gap: 1rem;*/
}
.navbar-nav .nav-item .nav-link{
    padding: 0.5rem 1rem;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.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: #fff;
}
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: #fff;
    /*background-color: var(--cl-x);*/
}
.navbar-nav .nav-item .nav-link i{
    transition: all .2s ease-in-out;
}
.navbar-nav .nav-item:hover .nav-link i{
    transform: rotate(180deg);
}


.navbar-toggler{
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
    height: 40px;
    height: 34px;
    width: 36px;
    padding: 8px;
    display: flex;
    align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.25rem 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); }
}


.modal-backdrop.show{
    z-index: 1;
}

.box-search-header{
    display: flex;
    width: 100%;
    overflow: hidden;
    font-size: 16px;
}

.box-search-header select{
    max-width: 120px;
    padding: 0.3rem;
    outline: none;
    border-width: 0 1px 0 0;
    border-color: var(--cl-x);
    border-style: solid;
    background: transparent;
    color: var(--cl-x);
}

.box-search-header input{
    padding: 0.25rem 1rem;
    outline: none;
    width: 100%;
    border: 1px solid #b3b3b3;
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    background-color: rgba(255 255 255 / 0.4);
    font-size: 14px;
}

.box-search-header input::placeholder{

}

.box-search-header button{
    margin-left: -1.5rem;
    padding: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem) 1rem;
    border-radius: 0;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
}

.btn-popup-search{
    border: 0;
    /*padding: 4px 8px;*/
    color: #fff;
    box-shadow: none !important;
    background-color: transparent;
}
.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-y);
    text-decoration: none;
    position: relative;
}

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

.gtranslate_wrapper .gt_switcher-popup span,
.gtranslate_wrapper{
    font-size: 14px !important;
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide img {
    /*display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;*/
}
.swiper-button-next:after,
.swiper-button-prev:after{
    /*font-family: "Font Awesome 6 Pro";*/
}
.swiper-button-next:after{

}
.swiper-button-prev:after{

}
.swiper-pagination-bullet{

}
.swiper-pagination-bullet-active{

}


/*banenr-page*/
.banner-page{
    min-height: 200px
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.banner-page .bg-cover{
    filter: brightness(0.3);
}
.banner-page .title{
    display: inline-block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-transform: uppercase;
    position: relative;
}

.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;
    font-weight: 500;
}
.banner-page .breadcrumb .breadcrumb-item.active{
    color: #fff;
}
.simple-breadcrumb{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #F5F5F5;
}
.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}
.simple-breadcrumb .breadcrumb-item.active{
    color: #000;
}


/* Home ============*/
.banner{
    height: 500px;
    overflow: hidden;
}

.banner .swiper-slide{
    position: relative;
}
.banner .swiper-slide .banner-slide{
    position: absolute;
    bottom: 7%;
    left: 20%;
    right: 20%;
}
.banner-slide h1{
    margin-bottom: 0;
    color: var(--cl-y);
    font-weight: bold;
    font-size: clamp(1.75rem, 1.475rem + 1.375vw, 3.125rem);
}
.banner .swiper-pagination-bullets{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.banner .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D9D9D9;
    opacity: 1;
    transition: .3s ease-in;
}
.banner .swiper-pagination-bullet-active{

}
.banner-next,
.banner-prev{
    font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    color: #fff;
}
.banner-next:after,
.banner-prev:after{
    content: "";
}


/*Home========================*/
.view-more-arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-size: var(--fs-20);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.view-more-arrow:hover{
    gap: 1rem;
    box-shadow: none;
}



/**/
.box-voucher{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    font-size: 12px; 
}
.box-voucher .icon{
    width: 120px;
    height: inherit;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: rgba(0 100 172 / 0.5);
}
.box-voucher .title{
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 700;
}
.box-voucher .content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    background-color: #f4f4f4;
    border-radius: 1rem;
}
.voucher-top-content{
    display: flex;
    justify-content: space-between;
}
.voucher-top-content .short-desc{
	min-height: 36px;
}

.voucher-bottom-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-coppy-voucher{
    padding: 0.25rem;
    background-color: var(--cl-x);
    color: #fff;
    line-height: 1;
}

.btn-tooltip-voucher{
	padding: 0;
}

.tooltip-inner{
    background-color: #fff;
    filter: drop-shadow(2px 2px 6px rgba(99, 99, 99, 0.2));
}
.tooltip-inner ul{
    padding-left: 0;
    list-style: none;
}
.tooltip-inner ul li{
	padding: 0.2rem 0;
    text-align: left;
    color: #000;
}
.tooltip-arrow:after,
.tooltip-arrow:before{
    background-color: #fff !important;
    color: #fff;
}
.tooltip-detail-voucher .label{
	display: inline-block;
	min-width: 60px;
}


/*===*/
.block-tab-product .nav-tabs{
	gap: 0.5rem;
	border-bottom: 0;
}

.block-tab-product .nav-tabs .nav-item .nav-link{
	padding: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
	border: 1px solid #E4E4E4;
	border-radius: 50rem;
	color: #000;
	font-weight: 600;
    box-shadow: none !important;
}

.block-tab-product .nav-tabs .nav-item .nav-link.active{
	background-color: var(--cl-y);
	color: #fff;
}




.support-customer{
	margin-top: 1rem;
	padding: 1.5rem;
	border: 2px dashed var(--cl-x);
	border-radius: 6px;
}
.support-customer .item{
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.support-customer .item .icon{
	width: 50px;
	height: 50px;
}
.support-customer .item + .item{
	margin-top: 0.5rem;
}

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

.image-hover-zoom,
.card-hover-zoom .thumbnail,
.card-hover-zoom-long .thumbnail{
    overflow: hidden;
}
.image-hover-zoom img,
.card-hover-zoom .thumbnail img{
    transition: all 0.3s ease-in-out;
}
.image-hover-zoom:hover img,
.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;
}



/*===*/
.product-next,
.product-prev{
    font-size: clamp(1.625rem, 1.45rem + 0.8750000000000001vw, 2.5rem);
    color: var(--cl-x);
}
.product-next:after,
.product-prev:after{
    content:"";
}



/*===*/
.slideProduct{
    /*padding: 8px 3px;*/
}

.slideProduct .swiper-button-next,
.slideProduct .swiper-button-prev{
    width: 40px;
    height: 40px;
    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: 0;
    transition: all .3s ease-in-out;
}
.slideProduct:hover .swiper-button-next,
.slideProduct:hover .swiper-button-prev{
    opacity: 1;
}
.slideProduct .swiper-button-next:after,
.slideProduct .swiper-button-prev:after{
    content: "";
}


/**/
.box-image{
    overflow: hidden;
    border-radius: clamp(0.375rem, 0.3rem + 0.375vw, 0.75rem);
}

/**/
.card-product{
    height: 100%;
	border: 1px solid #E4E4E4;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.card-product .thumbnail{
    overflow: hidden;
    position: relative;
}

.card-product .thumbnail img{
    transition: all .5s ease-in;
}

.discount-percent{  }

.card-product .content{
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
}

.card-product .label-sold-quantity{
    margin-bottom: 6px;
    font-size: 12px;
    color: #999999;
}

.card-product .label-sold-quantity .label{
    display: flex;
    justify-content: space-between;
}

.card-product .label-sold-quantity .timeline{
    position: relative;
    width: 100%;
    height: 7px;
    border-radius: 20rem;
    background-color: #BEBEBE;
}

.card-product .label-sold-quantity .timeline:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60%;
    border-radius: 20rem;
    background-color: var(--cl-x);
    z-index: 1;
}
.card-product .label-color-quantity{
    margin-bottom: 6px;
    color: #999999;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}


.card-product .description{  }

.card-product .title{
    margin-bottom: 0.5rem;
    /*height: 40px;*/
    font-size: 15px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-product .card-price{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}


.card-product .card-price-discount,
.card-product .card-regular-regular{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-product .card-price-discount{
    margin-bottom: 6px;
}

.card-product .card-price-discount .label-price{
    color: #BEBEBE;
    text-decoration: line-through;
}

.card-product .card-price-discount .label-discount-price{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 6px;
    border-radius: 4px;
    background-color: var(--cl-y);
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

.card-product .card-regular-regular .label-price{
    color: var(--cl-y);
    font-weight: 600;
}

.card-product .card-regular-regular .card-btn-buy{
    position: relative;
    z-index: 1;
    padding: 0;
    font-size: 13px;
    background-color: transparent;
}

.card-product .card-regular-regular .card-btn-buy:after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 30px;
    border-radius: 50rem;
    background-color: var(--cl-y);
    transform: scaleX(1);
    transform-origin: right 15px;
    transition: all .2s ease-in-out;
}

.card-product .card-regular-regular .card-btn-buy:hover{
    color: #fff;
    box-shadow: none;
}

.card-product .card-regular-regular .card-btn-buy:hover:after{
    width: 105%;
}

.card-product .card-regular-regular .card-btn-buy .icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--cl-y);
    border-radius: 50%;
    color: #fff;
}



.card-product .view-more{
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
    color: var(--cl-y);
}
.card-product .view-more span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid var(--cl-y);
    border-radius: 50rem;
    background-color: #D9D9D9;
    color: var(--cl-y);
    font-size: 12px;
    transition: all .3s ease-out;
}
.card-product:hover .view-more span{
    background: var(--cl-y);
    color: #fff;
}


/**/
.card-blog{  }

.card-blog .thumbnail{
    height: 250px;
    overflow: hidden; 
}
.card-blog .content{
    position: relative;
}
.card-blog .meta-post{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #5F5F5F;
	color: #5F5F5F;
    font-size: 14px;
}
.card-blog .date{  }

.card-blog .title{
    margin-bottom: 0.5rem;
    height: clamp(2.4375rem, 2.4rem + 0.1875vw, 2.625rem);
    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;
}
.card-blog .description{
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-blog .view-more{
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: var(--cl-x);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s ease-in-out;
}
.card-blog:hover .title{
    color: var(--cl-x);
}
.card-blog .view-more:hover{
	background-color: #1a2655;
}

.card-blog-vertical{
    display: flex;
    gap: 1rem;
}
.card-blog-vertical .thumbnail{
    width: clamp(8.125rem, 7.75rem + 1.875vw, 10rem);
    height: inherit;
}
.card-blog-vertical .content{
    flex: 1;
    padding: 0rem;
}
.card-blog-vertical .title{
    margin-bottom: 6px;
    font-size: 1rem;
    height: 38px;
}
.card-blog-vertical .description{
    font-size: 14px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-post-vertical{
    display: flex;
    flex-direction: column;
    /*gap: 1rem;*/
    border: 1px solid #ccc;
}
.list-post-vertical .card-blog-vertical{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
}
.list-post-vertical a + a .card-blog-vertical{
    border-top: 1px solid #ccc;
}

.related-news .thumbnail{
    height: 150px;
}


/**/
.widdget{
    /*border: 1px solid #DCDCDC;
    padding: 5%;*/
}
.widdget + .widdget{
    margin-top: 1.5rem;
}

.widdget-title{
    margin-bottom: 0.5rem;
    padding: 0.75rem 0.5rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    border-radius: 4px;
    background-color: var(--cl-x);
}

.widdget-search-product form{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DCDCDC;
    padding: 0.5rem;
}
.widdget-search-product input{
    border: none;
    outline: none;
    width: 100%;
}
.widdget-search-product button{
    border: none;
    background-color: transparent;
}

.widdget-category{
    border: 1px solid var(--cl-x);
    border-radius: 4px;
}


/**/
.footer{
    position: relative;
    color: #fff;
    font-size: 15px;
}
.footer-bottom{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--cl-x);
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer a:hover{
    color: var(--cl-y);
}
.footer p{
    margin-bottom: 0.7rem;
}
.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
    margin-bottom: 1rem;
}
.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.7rem;
}
.list-footer ul li i{
    margin-right: 6px;
}

.list-footer:not(.list-information-footer) ul li::marker {
    content: "\f0da \00A0 \00A0";
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
}

.list-information-footer li{
    display: flex;
    align-items: baseline;
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.social-contact .item{
    width: 2.5rem;
    height: 2.5rem;
    padding: 4px;
    border-radius: 50%;
    /*background-color: #929292;*/
    display: flex;
    justify-content: center;
    align-items: center;
    color: #909497;
    font-size: 20px;
    transition: all .2s ease-out;
}
.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #909497;
}


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


@keyframes shake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.list-information ul li{
    display: flex;
    align-items: baseline;
}

.copyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    color: #fff;
}
.copyright a{
    color: #fff;
}
/**/
.form-booking-footer{
    display: flex;
    border-radius: 6px;
	background: #FFF;
	box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.form-booking-footer .form-control{
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.form-booking-footer button{
	padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem) clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    border: 0;
    background-color: var(--cl-y);
    color: #fff;
    font-size: var(--fs-20);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.form-booking-footer .form-control::placeholder{
    color: #000;
}

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