:root{
    --cl-x:#1C77B8;
    --cl-y:#2e546f ;
    --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: 8%;
    --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;
}

.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);
}
.text-style{

}
.text-shadow-x{
    color: #fff;
    text-shadow:
        1px 1px 0px  var(--cl-x),
        -1px -1px 0  var(--cl-x),  
        1px -1px 0 var(--cl-x),
        -1px 1px 0 var(--cl-x),
        1px 1px 0 var(--cl-x);
}
.text-shadow-white{
    color: transparent;
    text-shadow:
        1px 1px 0px #fff,
        -1px -1px 0  #fff,  
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
}

/*background*/
.bg-x{
    background-color: var(--cl-x) !important;
}
.bg-y{
    background-color: var(--cl-y) !important;
}
.bg-gray{
    background-color: #F6F7F8;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    /*padding: 0.2rem 1rem;*/
    line-height: 1.5;
    /*border-radius: 6px;*/
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
    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-dark{
    border: 2px solid #191919;
    color: #191919;
}
.btn-outline-dark:hover{
    border: 2px solid var(--cl-x);
    color: var(--cl-x);
    background-color: #fff;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 30px, rgba(255, 255, 255, 0.22) 0px 0px 0px;
}
.btn-rgb{
    color: #fff;
    border: none;
    background: linear-gradient(70deg, #0069E4 24.65%, #00CEBD 96.06%);
}
.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    padding: var(--py-content) var(--px-content);
}
.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.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: 140px;
    transition: all .3s ease-in-out;
}
.navbar-brand{
    margin: 0;
    padding: 0;
}
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #fff;
    z-index: 10;
}
.navbar-top{
    width: 100%;
    padding-top: 0;
    padding-bottom: 0rem;
    color: #002175;
    background: #fff;
    position: relative;
}
.navbar-main{
    width: 100%;
    padding-top: 0rem;
    padding-bottom: 0rem;
    background-color:#fff;
}
.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 .logo{
    width: 120px;
}
.navbar-fixed.navbar-main{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}



.company-information-header{
    width: 100%;
    padding: 0.75rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-bottom-left-radius: 50rem;
    border-bottom-right-radius: 50rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.company-information-header:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("/templates/images/1.png");
    background-repeat: no-repeat;
    background-position: top;
    filter: brightness(0.7);
}
.company-information-header a{
    color: #fff;
}

.navbar-nav{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /*gap: 2rem;*/
}
.navbar-nav .nav-item .nav-link{
    padding: 0.5rem;
    /*font-size: var(--fs-18);*/
    color: #1E1E1E;
    font-weight: 500;
    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{
    color: var(--cl-x);
    font-weight: 700;
}
.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);
    height: 40px;
    height: 34px;
    width: 36px;
    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;
}

.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%;
    min-width: 246px;
    /*padding: 0 0.3rem;*/
    /*border: 1px solid var(--cl-x);*/
    border-radius: 0.4rem;
    overflow: hidden;
    background-color: #F1F1F1;
    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.5rem;
    border: none !important;
    outline: none;
    width: 100%;
    background-color: transparent;
}
.box-search-header button{
    padding: 0.5rem;
    border: none;
    border-left: 1px solid #C7C7C7;
    border-radius: 0;
    background: var(--cl-x);
}

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

.list-social-circle{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.list-social-circle .icon-social{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--cl-x);
    color: #fff;
}


/*============*/
.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{
    height: 230px;
    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 .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
    text-decoration: none;
}
.simple-breadcrumb{
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}
.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: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.simple-breadcrumb .breadcrumb-item.active a{
    color: var(--cl-x);
}


/* Home ============*/
.banner{
    height: 500px;
}
.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: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    height: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    background-color: transparent;
    opacity: 1;
    transition: .3s ease-in;
}
.banner .swiper-pagination-bullet-active{
    border: 2px solid #fff;
    border-radius: 50rem;
    background-color: transparent;
}
.banner .swiper-pagination-bullets .line{
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: relative;
}
.banner .swiper-pagination-bullets .line:before,
.banner .swiper-pagination-bullets .line:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
}
.banner .swiper-pagination-bullets .line:before{
    left: 0;
}
.banner .swiper-pagination-bullets .line:after{
    right: 0;
}


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

/**/



/*Home========================*/

.box-image-introduce{
    width: 80%;
    position: relative;
    z-index: 1;
}
.box-image-introduce:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translate(50%, -5%);
    background: var(--cl-x);
}
.box-image-introduce img{
    border-radius: 0 2.5rem;
}

.box-image-introduce-cover{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 40%;
    border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem;
    border: 6px solid #fff;
    overflow: hidden;
}

.box-title-main h1,
.box-title-main h2{
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: var(--fs-title);
    position: relative;
}
.box-title-main h1:before,
.box-title-main h2:before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background-color: var(--cl-x);
}
.box-title-main img{
    margin-bottom: 0.5rem;
    width: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}


.icon-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
    transition: all .3s ease-in-out;
    /*position: relative;*/
}
.icon-box:hover{
    transform: translateY(-5px);
}
.icon-box .icon{
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}
.icon-box .title{
    margin-bottom: 4px;
    font-size: var(--fs-18);
    color: var(--cl-x);
    font-weight: 600;
}

/**/



/*page-about*/
.desc-page-about{
    padding: 7%;
    border-left: 4px solid var(--cl-x);
    font-size: 20px;
    font-weight: bold;
}
.title-core-value{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.title-core-value .line{
    flex: 1;
    height: 12px;
    background-image: repeating-linear-gradient(45deg, #e8e8e8 0, #e8e8e8 5px, transparent 0, transparent 50%);
    background-size: 16px 16px;
    background-color: rgba(255, 255, 255, 0);
}

.card-core-value{
    display: flex;
    gap: 0.5rem;
    padding: 5%;
    height: 100%;
    background-color: #f5f5f5;
}
.card-core-value .icon{
    width: 40px;
    height: 40px;
}
.card-core-value .content{
    flex: 1;
}
.card-core-value .title{
    font-weight: bold;
}


/**/

.title-line-bottom{
    position: relative;
    font-weight: bold;
}
.title-line-bottom:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 150px;
    height: 2px;
    background-color: var(--cl-x);
}

.accordion-post .accordion-button{
    padding: 1rem 0;
    box-shadow: none !important;
    background-color: transparent;
}
.accordion-post h5{
   font-size: var(--fs-18); 
}
.accordion-post img{
    max-width: 100%;
    height: auto;
}


.box-img-references img{
    transition: all .3s ease-in-out;
}
.box-img-references img:hover{
    transform: translateY(-5px);
}



/**/
.spare_parts_slide .swiper-button-disabled{
    opacity: 0;
}
.spare_parts-next,
.spare_parts-prev{
    color: var(--cl-x);
    font-size: var(--fs-20);
}
.spare_parts-next:after,
.spare_parts-prev:after{
    content: "";
}
.spare_parts_slide .swiper-slide img{
    opacity: 0.2;
}
.spare_parts_slide .swiper-slide-active img{
    opacity: 1;
}


/**/

.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{
    border: 1px solid #D5D5D5;
    border-radius: 20px;
    background: #F7F7F7;
    transition: all .3s ease-in-out;
    overflow: hidden;
    position: relative;
}
.card-category .thumbnail{
    height: clamp(12.5rem, 10rem + 12.5vw, 25rem);
    overflow: hidden;
    position: relative;
}
.card-category .thumbnail img{
    transition: all .5s ease-in;
}
.card-category .content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}
.card-category .title{
    color: #fff;
    font-size: clamp(1.125rem, 1.0625rem + 0.3125vw, 1.4375rem);

    text-decoration: none;
    background-color: var(--cl-x);
    border-radius: 50rem;
    padding: 0.2rem 1rem;
}


.card-product{
    background: #fff;
    overflow: hidden;
    position: relative;
}

.card-product .thumbnail{
    height: clamp(12.5rem, 11.5rem + 5vw, 17.5rem);
    border: 1px solid #E6E6E6;
    overflow: hidden;
    position: relative;
}

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

.card-product:hover .thumbnail img{
    transform: scale(1.05);
}

.discount-percent{  }

.card-product .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.card-product .description{
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8%;
    color: #fff;
    background: rgba(235, 97, 0, 0.63);
    opacity: 0;
    transition: all .4s ease-in-out;
    pointer-events: none;
}
.card-product:hover .description{
    opacity: 1;
}

.card-product .title{
    font-weight: 500;
    font-size: var(--fs-18);
    margin-bottom: 1rem;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.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 .btn-more{
    width: 32px;
    height: 32px;
    font-size: 20px;
}

/**/
.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{
    background-color: #fff;
}
.card-blog .thumbnail{
    height: 250px;
    overflow: hidden; 
}
.card-blog .content{
    /*padding: 0.8rem;*/
    position: relative;
}
.card-blog .date{
    margin-bottom: 0.5rem;
    color: #707070;
    font-size: 14px;
}
.card-blog .title{
    margin-bottom: 0;
    height: 47px;
    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{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-blog .view-more{
    display: block;
    margin: 1rem 0;
    color: var(--cl-x);
    font-weight: bold;
    font-size: 14px;
}
.card-blog:hover .title{
    color: var(--cl-x);
}


/**/
.list-post-vertical{
    padding: 2px 6px 2px 0px;
    overflow-y: scroll;
}
.list-post-vertical::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}
.list-post-vertical::-webkit-scrollbar-thumb {
    background-color: var(--cl-y);
    border-radius: 8rem;
}
.list-post-vertical::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
.list-post-vertical .card-vertical + .card-vertical{
    margin-top: 1rem;
}

.card-vertical{
    display: flex;
    box-shadow: none;
    gap: 12px;
}
.card-vertical .thumbnail{
    width: 150px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}
.card-vertical .content{
    flex: 1;
    padding: 0;
}
.card-vertical .title{
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/**/
.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;
    background-color: #333333;
}

.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 .nav-item .nav-link{
    color: #23262D;
    padding: 0.3rem 0;
}
.widdget-tag ul{
    list-style: none;
    padding-left: 0;
}
.widdget-tag .nav-item .nav-link{
    padding: 0.75rem 1rem;
}
.widdget-tag .nav-item + .nav-item .nav-link{
    border-top: 1px solid var(--gray);
}
.widdget-tag .nav-item .nav-link:hover a{
    color: var(--cl-x);
}

.list-category-post{
    flex-direction: column;
}
.list-category-post .nav-item .nav-link{
    padding: 0.8rem 1rem;
    color: var(--cl-x);
    font-weight: bold;
    background-color: #D2D2D2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
}
.list-category-post .nav-item + .nav-item{
    margin-top: 8px;

}
.list-category-post .nav-item .nav-link:hover{
    transform: translateX(5px);
}


/**/
.footer{
    padding-bottom: 0;
    color: #fff;
    font-size: 14px;
    position: relative;
}

.footer-bottom{
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: var(--cl-x);
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer a:hover{
    color: #fff;
}
.logo-footer{
    width: 100%;
}
.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 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-footer{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.social-contact-footer .item{
    width: 2rem;
    height: 2rem;
    padding: 4px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cl-x);
    font-size: 18px;
    transition: all .2s ease-out
}
.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-y);
    color: #fff;
}

@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 .form-control{
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: none !important;
    outline: none;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
}

.form-booking-footer button{
    background-color: #EF6415;
    color: #fff;
    font-weight: 500;
}
.form-booking-footer .form-control::placeholder{
    color: rgba(255, 255, 255, 0.78);
}


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