:root{
    --cl-x: #F08300;
    --cl-y: #D85600;
    --cl-z: #FFFAF5;
    --cl-gray: #F5F5F5;
    --fs-12: 12px;
    --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
    --fs-title: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);

    --px-content: 8%;
    --py-content: 40px;
}

html{
    overflow-x: hidden;
}

body{
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    color: #000;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #000;
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.fs-12{
    font-size: var(--fs-12) !important;
}

.fs-14{
    font-size: var(--fs-14) !important;
}

.fs-18{
    font-size: var(--fs-18) !important;
}

.fs-20{
    font-size: var(--fs-20) !important;
}

.fs-24{
    font-size: var(--fs-24) !important;
}

.fs-28{
    font-size: var(--fs-28) !important;
}

.text-justify{
    text-align: justify !important;
}

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

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

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

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

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

.btn-custom{
    display: inline-block;
    padding: 0.375rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    position: relative;
    transition: all .3s ease-in-out;
}

.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: #FA8108;
    color: #fff;
    border: 1px solid #FA8108;
}

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

.btn-x-shadown{
    box-shadow: 1px 2px 0px 2px var(--cl-y) !important;
}

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

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

.btn-outline-x{
    border: 1px solid var(--cl-x);
    background-color: transparent;
    color: var(--cl-x);
}

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

.btn-outline-y{
    border: 1px solid var(--cl-y);
    background-color: transparent;
    color: var(--cl-y);
}

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

.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    position: relative;
    padding: var(--py-content) var(--px-content);
    background-color: #eef0f2;
}

.block .container-fluid{
    /*max-width: 1600px;*/
    position: relative;
    z-index: 1;
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

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

.main-title-underline{
    display: inline-block;
    margin-bottom: 0.5rem;
}

.main-title-underline:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 100%;
    height: 0.25rem;
    background-color: #F0830036;
}



/*nav menu*/
.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{
    background-color: var(--cl-z);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: var(--fs-14);
    font-weight: 500;
}

.navbar-main{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: #F5F5F5;
}

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

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

.navbar-fixed.navbar{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar-nav{
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: clamp(0rem, -0.4rem + 2vw, 2rem);
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 1rem;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.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-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{
    width: 200px;
    transition: all .3s ease-in-out;
}

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

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.4rem;
    border: 2px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #fff;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent;
    font-size: var(--fs-14);
    box-shadow: none !important;
}

.box-search-header button{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    border-radius: 50%;
    font-size: var(--fs-14);
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

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

.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: var(--cl-x);
    font-size: var(--fs-18);
    position: relative;
}

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

.translate{
    display: flex;
    gap: 0.25rem;
}

.translate .lang-item img{
    filter: brightness(0.8);
}
.translate .lang-item.active img{
    filter: brightness(1);
}


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

/*banenr-page*/
.banner-page{
    min-height: clamp(11rem, 10rem + 5vw, 16rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-page .title{
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.banner-page .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #fff;
}

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

.simple-breadcrumb{
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--cl-x);
}

.simple-breadcrumb .breadcrumb{
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
}

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

.simple-breadcrumb .breadcrumb-item.active{
    /*flex: 1;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}


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

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

.main-slide .swiper-pagination-bullet{
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
    transition: all .3s ease;
}

.main-slide .swiper-pagination-bullet-active{
    background-color: var(--cl-x);
    border-color: var(--cl-x);
}

.main-slide .swiper-slide .banner-content{
    position: absolute;
    top: 50%;
    left: var(--px-content);
    right: var(--px-content);
    transform: translateY(-50%);
    color: #fff;
}

.main-slide .banner-content h2{
    margin-bottom: 0;
    font-size: clamp(1.125rem, 0.725rem + 2vw, 3.125rem);
    /*text-shadow: 0px 4px 4px #00000040;*/
}

.main-slide .banner-content .btn-custom{
    font-size: clamp(0.625rem, 0.5rem + 0.625vw, 1.25rem);
}


.box-content-title h1,
.box-content-title h2{
    margin-bottom: 1rem;
    font-size: var(--fs-title);
    position: relative;
}


/*====*/
.wrapper-form-searh-product{
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: #fff;
}

.wrapper-form-searh-product label{
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: var(--fs-14);
}

.wrapper-form-searh-product .form-control{
    background-color: #F3F3F3;
    box-shadow: none !important;
}

.wrapper-form-searh-product .form-control:focus{
    border-color: var(--cl-x);
}

.wrapper-form-searh-product .btn{
    width: 100%;
    background-color: #F3F3F3;
    border: 1px solid #dee2e6;
    text-align: left;
    border-radius: 0.375rem !important;
}

.wrapper-form-searh-product .dropdown-menu{
    padding: 0.5rem 1rem;
}

.wrapper-form-searh-product .form-check-input:checked{
    background-color: var(--cl-x);
    border-color: var(--cl-x);
}

.wrapper-form-searh-product .form-check-input:focus{
    box-shadow: 0 0 0 .25rem rgb(240 131 0 / 25%);
}


/*====*/
.box-img-about:after{
    content: '';
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    z-index: 1;
    width: 7rem;
    height: 3rem;
    background-image: repeating-linear-gradient(-45deg, #d85600 0, #d85600 2px, transparent 0, transparent 50%);
    background-size: 20px 20px;
    background-color: rgba(255, 255, 255, 0);
}

.box-icon-about{
    display: inline-block;
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    background-color: #F083000A;
    font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
}

.box-icon-about .top-icon{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.box-icon-about .top-icon .icon{
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
}

.box-icon-about .top-icon .counter{
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    line-height: 1;
    font-weight: 700;
}

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

.box-service .box-content{
    flex: 1;
    padding: 1.5rem 1rem 2rem;
    position: relative;
}

.box-service .box-content:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 0.5rem;
    background-color: #F0830036;
}

.box-service .box-content .title{
    font-size: var(--fs-20);
    font-weight: 600;
}

.box-service .bg-number{
    position: absolute;
    top: 0;
    right: 1rem;
    z-index: -1;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: #F083000D;
    pointer-events: none;
}

/*===*/
.form-contact .form-control{
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    font-size: inherit;
}

.form-contact .form-control:focus{
    border-color: var(--cl-x);
    box-shadow: 1px 1px 10px rgba(240, 132, 0, 0.2);
}

.iti{
    display: block !important;
}

.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact{
    height: 250px;
    border-radius: 0.75rem;
    overflow: hidden;
}

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



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

.box-hover-zoom .box-thumbnail img{
    transition: all 0.3s ease-in-out;
}

.box-hover-zoom:hover .box-thumbnail img,
.box-hover-zoom-long:hover .box-thumbnail img{
    transform: scale(1.1);
}

.box-hover-zoom-long .box-thumbnail img{
    transition: all 1s ease-in-out;
}

.wrapper-slide{
    position: relative;
} 

.wrapper-slide .swiper-button-next,
.wrapper-slide .swiper-button-prev{
    width: clamp(2rem, 1.8rem + 1vw, 3rem);
    height: clamp(2rem, 1.8rem + 1vw, 3rem);
    background-color: var(--cl-y);
    border-radius: 0.375rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transition: all .3s ease-in-out;
    pointer-events: all;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
}

.wrapper-slide .swiper-button-next{
    background-image: url('/templates/images/next.png');
}

.wrapper-slide .swiper-button-prev{
    background-image: url('/templates/images/prev.png');
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after,
.swiper-button-no-absolute:after{
    content: "";
}

.swiper-button-no-absolute{
    position: unset;
    inset: unset;
    margin: 0;
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    background-color: var(--cl-x);
    border-radius: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
}

.swiper-button-no-absolute.swiper-button-next{
    background-image: url('/templates/images/next-sm.svg');
}

.swiper-button-no-absolute.swiper-button-prev{
    background-image: url('/templates/images/prev-sm.svg');
}


/*===*/
.box-product{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

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

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

.box-product .title{
    margin-bottom: 0rem;
    font-size: var(--fs-20);
    font-weight: 700;
    color: var(--cl-x);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-title{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.box-product .box-title .title{
    padding: 0.25rem 1rem;
    background-color: #F3F3F3;
    border-radius: 0.375rem;
    font-size: 1rem;
    text-align: center;
    color: #000;
}

.box-product .box-meta{
    display: flex;
    gap: 5rem;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.box-product .box-meta .address{
    flex: 1;
}

.box-product .box-meta .rate i{
    color: #FFE241;
}

.box-product .box-tag{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.box-product .box-tag .item{
    padding: 0.25rem 0.5rem;
    background-color: #5EBDBD;
    border-radius: 0.375rem;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
    color: #fff;
}

.box-product .box-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-product .box-price{
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
    font-size: var(--fs-18);
}

.box-product .box-price .label-sale-price{
    color: var(--cl-x);
}

.box-product .box-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

.box-product .btn-custom{
    flex: 1;
    width: 100%;
    padding: 0.25rem;
}

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

/*===*/
.box-blog{
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.box-blog .box-thumbnail{
    padding: 0.75rem;
}

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

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

.box-blog .box-badge{
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-left: 1rem;
}

.box-blog .box-badge .author{
    font-weight: 500;
    color: var(--cl-x);
}

.box-blog .box-badge .meta{
    display: flex;
    gap: 1.5rem;
    padding: 0.25rem 1rem;
    background-color: #FFFAF5;
    font-size: 0.875rem;
    color: #ACACAC;
}

.box-blog .box-title{
    padding: 0 1rem;
}

.box-blog .box-title .title{
    font-size: var(--fs-20);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-blog .box-excerpt{
    margin-top: 0.5rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    padding: 0 1rem;
    text-align: right;
    font-size: var(--fs-14);
}

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


/*===*/
.box-img-partner{
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: #fff;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}


/*===*/
.footer{
    position: relative;
    /*background-color: var(--cl-x);*/
    background-color: #F5F5F5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.footer-top,
.footer-bottom{
    background-color: #F5F5F5;
}

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

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

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

.logo-footer{
    width: clamp(8rem, 7.6rem + 2vw, 10rem);
}

.title-footer{
    position: relative;
    margin-bottom: clamp(1rem, 0.9rem + 0.5vw, 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:before{
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    margin-right: 0.5rem;
    font-size: 0.75rem;
    vertical-align: middle;

}

.list-footer ul li:hover{
    transform: translateX(5px);
}

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

.list-footer ul li i{
    margin-right: 6px;
    color: var(--cl-x);
}

.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: 50%;
    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: 900;
    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{
    padding: 0.5rem;
    border-radius: 0.75rem 0.75rem 0 0;
    background-color: #DF7A00;
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
    color: #fff;
}


/**/
.form-footer .form-group{
    display: flex;
    border-radius: clamp(0.375rem, 0.35rem + 0.125vw, 0.5rem);
    overflow: hidden;
}

.form-footer .form-control{
    flex: 1;
    padding: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) 1rem;
    background-color: #fff;
    box-shadow: none !important;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}

.form-footer button{
    background-color: #3C3C3C;
    color: #fff;
    border: 0;
    border-radius: 0;
}


.contact-information{
    padding: 5% 20%;
    border-radius: 1rem;
    background-color: var(--cl-x);
}

.contact-information li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-align: center;
}

.contact-information li + li{
    margin-top: 1.5rem;
}

.contact-information li span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cl-x)
}


/*====*/
.single-product-nursing-home{
    .single-title{
        color: var(--cl-x);
    }
    .nursing-home-meta{
        display: flex;
        flex-wrap: wrap;
        row-gap: 0.25rem;
        column-gap: 2rem;
        margin-bottom: 1rem;
    }

    .box-tag{
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
        .item{
            padding: 0.25rem 0.5rem;
            background-color: #5EBDBD;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            color: #fff;
        }
    }
    .single-content{
        padding: clamp(1rem, 0.8rem + 1vw, 2rem);
        border-radius: 0.5rem;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    }
}


/*===*/

.section:not(.section-footer){
    padding-top: 96px;
    background-color: #eef0f2;
}


.box-vs{
    position: relative;
    padding: clamp(2rem, 1.8rem + 1vw, 3rem);
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.box-vs .title{
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: var(--fs-28);
    color: var(--cl-x);
}

.box-vs .img-cover-vs{
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(7rem, 6.4rem + 3vw, 10rem);
    height: clamp(7rem, 6.4rem + 3vw, 10rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    mix-blend-mode: luminosity;
}


/*===*/
.box-icon-number{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
    border-width: 0 2px 2px 2px;
    border-color: var(--cl-y);
    border-style: solid;
    border-radius: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem);
    background-color: var(--cl-x);
    color: #fff;
}

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

.box-icon-number .box-top .box-icon{
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
}

.box-icon-number .box-top .box-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-icon-number .box-top .box-title{
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    line-height: 1;
}

.box-icon-number .box-title-left .number{
    font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
    font-weight: 700;
    line-height: 1;
}

.box-icon-number .box-bottom .content{
    font-weight: 600;
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
    text-align: center;
}


/*===*/
.box-vision{
    position: relative;
    padding: clamp(2rem, 1.8rem + 1vw, 3rem);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    border-radius: 1.25rem;
    background-color: #fff;
}

.box-vision .box-top{
    display: flex;
}

.box-vision .box-top .icon{
    position: absolute;
    left: 3rem;
    top: -0.5rem;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.box-vision .box-top .inner-icon{
    width: 3rem;
    height: 4rem;
    background-color: var(--cl-x);
    padding: 0.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.box-vision .box-top .icon:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    width: 120%;
    height: 0.5rem;
    background-color: var(--cl-y);
    transform: translateX(-50%);
    clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
}


.box-vision .box-top .title{
    flex: 1;
    padding-left: 4rem;
    font-weight: 700;
    font-size: var(--fs-18);
}


.grecaptcha-badge{
    opacity: 0;
    pointer-events: none;
}