:root{
    --cl-x:#FF3131;
    --cl-y:#1E8F52 ;
    --gray: #707070;
    --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-title: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    --px-content: 4%;
    --py-content: 50px;
}


@font-face {
    font-family: 'FZ-Poppins';
    src: 
        url('../fonts/FZ-Poppins-Regular.woff') format('woff');
}
@font-face {
    font-family: 'FZ-Poppins';
    src: 
        url('../fonts/FZ-Poppins-Medium.woff') format('woff');
        font-weight: 500;
}
@font-face {
    font-family: 'FZ-Poppins';
    src: 
        url('../fonts/FZ-Poppins-SemiBold.woff') format('woff');
        font-weight: 600;
}
@font-face {
    font-family: 'FZ-Poppins';
    src: 
        url('../fonts/FZ-Poppins-Bold.woff') format('woff');
        font-weight: 700;
}


body{
    font-family: "Inter", 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: #F2F2F2;
}

.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: 500;
    text-decoration: none;
    position: relative;
    vertical-align: middle;
}
.btn-x{
    color: #fff;
    background-color: var(--cl-x);
    border: 1px solid var(--cl-x);
}
.btn-x:hover{
    background-color: #fff;
    color: var(--cl-x);
}

.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;
}

.btn-outline-black{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #000;
    color: #000;
}


.btn-outline-style:before{
	content: "";
	position: absolute;
	inset: 0;
	border: 3px solid var(--cl-x);
	border-radius: 6px;
}
.btn-outline-style:after{
	content: "";
	position: absolute;
	inset: 0;
	border: 3px solid var(--cl-y);
	border-radius: 6px;
	clip-path: polygon(0 0, 50% 0, 40% 100%, 0% 100%);
    transition: all .3s ease-in-out;
}
.btn-outline-style:hover:after{
	clip-path: polygon(40% 0, 100% 0, 100% 100%, 50% 100%);
}
.btn-outline-style i{
	color: var(--cl-y);
}
.btn-outline-style:hover i{
	animation: outlinebtn 1s;
}
@keyframes outlinebtn {
    0% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0px); }
}


.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);
}

.block:not(.block.navbar-main){
    /*overflow-x: hidden;*/
}
.page-content img{
    max-width: 100%;
    height: auto !important;
}
.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;
}
.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 32px;
}

/*nav menu*/
.logo{
    width: 100px;
    padding: 4px;
    transition: all .3s ease-in-out;
}
.navbar-brand{
    margin: 0;
    padding: 0;
}
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    z-index: 10;
}


.navbar-top{
    width: 100%;
    font-size: 14px;
}
.navbar-top a{
    color: var(--cl-x);
}
.navbar-main{
    width: 100%;
    padding-top: 0rem;
    padding-bottom: 0rem;
}
.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #fff;
    animation: animate 1s;
    transition: all 1s ease-in-out;
    z-index: 30;
}
.home .navbar-fixed,
.san-pham-100 .navbar-fixed{
	background: #fff !important;
}


@keyframes animate {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
   }
}

.navbar-fixed .logo{
    width: 80px;
}

.navbar-nav{
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    /*gap: 1rem;*/
}
.navbar-nav .nav-item .nav-link{
    padding: 0.5rem;
    /*font-size: var(--fs-18);*/
    color: #1E1E1E;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-nav .nav-item .nav-link a{
    color: #1E1E1E;
}
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-x);
}
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color:var(--cl-x);
}

.navbar-toggler{
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
    font-size: var(--fs-18);
    height: 40px;
    height: 32px;
    width: 34px;
    padding: 8px;
    display: flex;
    align-items: center;
}

.navbar-nav .dropdown-menu .dropdown-item{
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: normal;
}

/*.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:active{
    color: #fff;
    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%;
}
.nav-item.dropdown .dropdown-menu li{
    display: flex;
    align-items: center;
    padding: 0px 0.5rem;
}



@keyframes menu {
    0% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}


.modal-backdrop.show{
    z-index: 1;
}
.btn-modal-search{
    background-color: transparent;
}
.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.5rem;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #fff;
    font-size: 16px;
}
.box-search-header select{
    max-width: 120px;
    padding: 0.5rem;
    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{
    flex: 1;
    padding: 0.5rem;
    border: none !important;
    outline: none;
    width: 100%;
    background-color: transparent;
    font-size: 14px;
}
.box-search-header button{
    padding: 0.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 50%;
    background-color: var(--cl-x) !important;
    color: #fff !important;
}

.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-x);
    text-decoration: none;
    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);
}
.name-company-header{
    text-align: center;
}
.name-company-header h1,
.name-company-header h2{
    margin-bottom: 0;
    font-size: clamp(1.125rem, 1.025rem + 0.5vw, 1.625rem);
    font-weight: 900;
    color: var(--cl-x);
}
.name-company-header h3,
.name-company-header h4,
.name-company-header h5,
.name-company-header h6{
    margin-bottom: 0;
    font-size: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
    font-weight: 900;
    color: var(--cl-y); 
}
.translate{
    display: flex;
    align-items: center;
    gap: 6px;
}
.translate .lang-item{
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}


/*banenr-page*/
.banner-page{
    height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
/*    background: linear-gradient(107deg, rgba(255, 24, 24, 0.83) 5.18%, rgba(30, 143, 82, 0.83) 105.32%);*/
}
/*.banner-page .bg-cover{
    filter: brightness(0.3);
}*/
.banner-page .title{
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--cl-x);
    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;
    text-decoration: none;
}
.simple-breadcrumb{
    /*padding-top: 1rem;*/
    /*padding-bottom: 1rem;*/
}
.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 ============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
.swiper-pagination-bullets{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.swiper-pagination-bullet{
    width: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    height: clamp(0.25rem, 0.225rem + 0.125vw, 0.375rem);
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50rem;
    background-color: #555;
    opacity: 1;
    transition: .3s ease-in;
}
.swiper-pagination-bullet-active{
    height: clamp(0.375rem, 0.35rem + 0.125vw, 0.5rem);
    background-color: var(--cl-x);
}


.banner{
    height: 600px;
    position: relative;
}
.banner:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 80%;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 23.26%, #FFF 84.65%);
    pointer-events: none;
}
.banner .swiper-slide{
    position: relative;
}
.banner .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 6%;
    right: 50%;
    transform: translateY(-50%);
}
.banner-slide h1,
.banner-slide h2{
    margin-bottom: 0.5rem;
    color: var(--cl-y);
/*    font-size: clamp(1.75rem, 1.475rem + 1.375vw, 3.125rem);*/
/*    font-size:clamp(1.5rem, 1.2rem + 1.5vw, 3rem);*/
    font-size: clamp(1.5rem, 1.15rem + 1.7500000000000002vw, 3.25rem);
}

.banner-next,
.banner-prev{
    font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    color: #fff;
}
.banner-next:after,
.banner-prev:after{
    content: "";
}
.banner .swiper-pagination-bullets{
	bottom: 86px;
}

/*Home========================*/
.block-about{
	margin-top: -70px;
	padding-top: 0;
	position: relative;
	z-index: 1; 
}


.client-slide{
    padding-bottom: 30px;
}
.client-slide .swiper-slide{
    height: calc((100% - 30px) / 2) !important;
}
.client-slide .swiper-pagination-bullets{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    bottom: 0;
}

.box-client{
    padding: 0.25rem;
}



.card-business{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
/*    padding: 7%;*/
/*    border: 2px solid #000;*/
/*    border-radius: 1rem;*/
/*    background: linear-gradient(107deg, rgba(255, 24, 24, 0.83) 0%, rgba(30, 143, 82, 0.83) 75%);*/
    transition: all .3s ease-in-out;
}

/*.col-business:nth-child(even) .card-business{
    background: linear-gradient(-107deg, rgba(255, 24, 24, 0.83) 0%, rgba(30, 143, 82, 0.83) 75%);
}*/

.card-business .thumbnail{
    width: clamp(5rem, 4.75rem + 1.25vw, 6.25rem);
    height: clamp(5rem, 4.75rem + 1.25vw, 6.25rem);
}
.card-business .content{
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--cl-y);
}
.card-business .title{
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.card-business:hover{
    transform: translateY(-5px);
/*    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;*/
}

.box-title-line{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.box-title-line .line{
    width: 120px;
    height: 6px;
    background: var(--cl-x);
    position: relative;
}
.box-title-line .line:before{
    content: "\f2ec";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-weight: 700;
    color: var(--cl-x);
}
.box-title-line .line:after{
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--cl-y);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 10% 100%);
}

.flex-1{
    flex: 1;
}

.img-partner{
    padding: 0.5rem;
}

/**/

.card-service{
    position: relative;
    border-radius: 20px 20px 10px 10px;
    background-color: #F2F2F2;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
.card-service .thumbnail{
    height: 300px;
    border-radius: 10px;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.card-service .thumbnail img{
    transition: all 4s ease;
}
.card-service .content{
    padding: 4%;
    transition: all 5s ease;
}
.card-service .title{
    margin-bottom: 0.5rem;
    font-size: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    color: var(--cl-x);
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-service .description{
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-service .view-more span{
    color: var(--cl-x);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    
}
.card-service .view-more img{
    width: 14px;
    margin-left: 4px;
    transition: all .2s ease-out;
}
.card-service:hover .title{
    color: var(--cl-y);
}
.card-service .view-more:hover img{
    transform: translate(4px);
}


/**/
.box-video{
    position: relative;
}
.box-video:after{
    content: "\f144";
    font-size: 50px;
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-video img{
    transition: all .3s ease-in-out;
}
.box-video:hover img{
    filter: brightness(0.5);
}


.bg-zoom-infinity{
    overflow: hidden;
}
.bg-zoom-infinity img{
    animation: zoom-infinite 40s;
    animation-iteration-count: infinite;
    transition: all 4s ease; 
}
@keyframes zoom-infinite {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}




/**/
.card-review{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/17.svg");
    background-repeat: no-repeat;
    background-position: center bottom;

    padding: 15%;
    background-size: contain;
    text-align: center;
}
.card-review .thumbnail{
    margin-top: -78px;
    margin-bottom: 1rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.card-review .title{
    font-size: var(--fs-20);
    font-weight: bold;
}



/**/
.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;
    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: "";
}



/**/
.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 img{
    transition: all 0.3s ease-in-out;
}
.card-hover-zoom:hover .thumbnail img{
    transform: scale(1.1);
}


/**/
.card-category{
    transition: all .4s ease-in-out;
    overflow: hidden;
    position: relative;
}
.card-category .thumbnail{
    overflow: hidden;
    position: relative;
    border: 3px solid #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
    padding: 20%;
}
.card-category .thumbnail img{
    transition: all .6s ease-in-out;
}
.card-category .title{
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: var(--fs-18);
    text-decoration: none;
}
.card-category:hover{
    transform: translateY(-5px);
}
.card-category:hover .thumbnail img{
    transform: rotateY(360deg);
}

/**/
.card-product{
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    position: relative;
}
.card-product .thumbnail{
    height: clamp(10rem, 8.25rem + 8.75vw, 18.75rem);
    overflow: hidden;
    position: relative;
}
.card-product .thumbnail img{
    transition: all .5s ease-in;
}
.discount-percent{  }

.card-product .content{
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.card-product .description{
    margin-bottom: 0px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-product .title{
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.card-price{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}
.card-price .label-sale-price{
    color: #E40606;
}
.card-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
}
.card-product .view-more{
    width: fit-content;
    margin: auto; 
    padding: 0.25rem 1rem;
    color: #fff;
    font-size: 15px;
    border: 1px solid var(--cl-x);
    border-radius: 50rem;
    background-color: var(--cl-x);
    transition: all .3s ease-out;
}

.card-product:hover .title{
    color: var(--cl-x);
}

.card-product:hover .view-more{
    border: 1px solid var(--cl-x);
    background: transparent;
    color: var(--cl-x);
}
/**/
.card-product-vertical{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}
.card-product-vertical .content{
    flex: 1;
}

.card-product-vertical .thumbnail{
    width: clamp(8.125rem, 7.25rem + 4.375vw, 12.5rem);
    border: 1px solid var(--gray);
    overflow: hidden;
}
.card-product-vertical .title{
    margin-bottom: 0.5rem;
    display: -webkit-box;
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-product-vertical .description{
    font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/**/
.card-blog{
    border-radius: 12px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    overflow: hidden;
}
.card-blog .thumbnail{
    height: 250px;
    overflow: hidden; 
}
.card-blog .content{
    padding: 1rem;
    position: relative;
}
.card-blog .date{
    margin-bottom: 0.5rem;
    color: #707070;
    font-style: italic;
}
.card-blog .box-title{
    display: flex;
}
.card-blog .title{
    flex: 1;
    margin-bottom: 0.5rem;
    height: clamp(2.5rem, 2.4375rem + 0.3125vw, 2.8125rem);
    font-size: var(--fs-20);
    font-weight: 700;
    text-transform: uppercase;
    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{
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    outline: 2px solid #fff;
    outline-offset: -4px;
    background-color: var(--cl-y);
    color: #fff;
    font-size: 15px;
  	transition: all .2s ease-out;
}
.card-blog .view-more:hover{
    background-color: transparent;
    outline-offset: -2px;
    color: var(--cl-y);
    outline: 2px solid var(--cl-y);
}
.card-blog:hover .title{
    color: var(--cl-y);
}
/**/
.card-blog-vertical{
    display: flex;
}
.card-blog-vertical .thumbnail{
    width: 500px;
    height: 280px;
}
.card-blog-vertical .content{
    flex: 1;
}
.card-blog-vertical .title{
    margin-bottom: 6px;
    font-size: var(--fs-24);
    height: 52px;
}
.card-blog-vertical .description{
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-blog-vertical .view-more{
    color: #000;
}


/**/
.widdget{
    /*border: 1px solid #DCDCDC;
    padding: 5%;*/
}
.widdget + .widdget{
    margin-top: 1.5rem;
}

.widdget-title{
    margin-bottom: 0.5rem;
    padding: 1rem;
    background-color: #dedede;
    border-radius: 0.5rem;
    text-transform: uppercase;
    font-size: var(--fs-20);
    font-weight: 600;
    color: var(--cl-x);
    position: relative;
}
/*.widdget-title:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 4px;
	background-color: var(--cl-y);
	border-radius: 50rem;
}
.widdget-title:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 50%;
	height: 6px;
	background-color: var(--cl-x);
	border-radius: 50rem;
}*/
.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;
}




/**/
.footer{
/*    margin-top: -2.5rem;*/
    color: #000;
    font-size: 14px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.footer-top{
/*    padding-top: 120px;*/
    padding-top: 3rem;
}
.footer-bottom{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #000;
}
.footer a{
/*    color: #fff;*/
/*    text-decoration: none;*/
}
.footer a:hover{
/*    color: #fff;*/
}
.logo-footer{
    width: 150px;
}
.title-footer{
    position: relative;
    margin-bottom: 0.8rem;
    font-size: var(--fs-18);
    font-weight: bold;
    text-transform: uppercase;
}
.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 p{
    margin-bottom: 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: 1rem;
}
.social-contact .item{
    width: 2.25rem;
    height: 2.25rem;
    padding: 4px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cl-y) !important;
    font-size: 20px;
    transition: all .2s ease-out;
}

.social-contact-footer .item:hover{
    animation: shake 0.5s;
}


@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;
}
.form-booking-footer .form-control{
    padding: 0.25rem;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: none !important;
    background-color: #fff;
    color: #fff;
}

.form-booking-footer button{
    padding:  0.5rem;
    background-color: var(--cl-y);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 0;
}
.form-booking-footer .form-control::placeholder{
    color: #696969;
}

.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
