:root{
    --cl-x: #f4be20;
    --cl-y: #661414;
    --cl-z: #FF621A;
    --fs-12: 0.75rem;
    --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-title: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);

    --px-content: 10%;
    --py-content: 60px;
}

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: 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;
}

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

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

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    transition: all .3s ease-in-out;
    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-color: var(--cl-x);
}

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

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


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

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

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

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

.bg-cover.has-gradient:before,
.bg-cover.has-gradient:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100%; /*50%*/
}

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

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


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

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

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

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

.content-header{
    color: #fff;
}

.navbar.navbar-index .content-header{
    color: #000;
}

.navbar-index.navbar .navbar-top svg{
    fill: #fff;
}

.navbar-index .navbar-top{
    background-color: transparent;
}

.navbar-main{
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-index .navbar-main-inner{
    padding-left: 1rem;
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

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

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

.navbar-fixed.navbar{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.3s ease-in-out;
}

.navbar-fixed.navbar .navbar-top{
    color: #fff;
}

.navbar-index.navbar-fixed.navbar .navbar-top{
    color: #000;
}

.navbar-index.navbar-fixed.navbar .navbar-top svg{
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(10%) hue-rotate(306deg) brightness(98%) contrast(101%);
}


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

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

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

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-x);
    font-weight: 600;
}

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


.shape-header{
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    z-index: -1;
    height: 100vh;
    background-color: var(--cl-x);
    clip-path: url('#clip-path-shape-header');
}


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


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

/*banenr-page*/
.banner-page .inner-banner-page{
    min-height: clamp(15rem, 12rem + 15vw, 30rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
    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-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;
}


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

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

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3%;
    border: 2px solid #fff;
}

.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    color: #fff;
}

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

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


.box-icon-about{
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}

.box-icon-about .icon{
    width: 3rem;
    height: 3rem;
}

.box-icon-about .title{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cl-x);
}

.box-icon-about .description{
    font-weight: 600;
    color: var(--cl-z);
}


/*===*/
.box-progess .progess-line .line{
    width: 100%;
    height: 0.75rem;
    background: linear-gradient(127deg,rgba(8, 121, 211, 1) 0%, rgba(0, 0, 0, 1) 33%, rgba(93, 187, 187, 1) 66%, rgba(253, 220, 46, 1) 100%);
    border-radius: 50rem;
    position: relative;
}

.box-progess .progess-line .line:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: inherit;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(127deg,rgba(8, 121, 211, 1) 0%, rgba(9, 22, 159, 1) 100%);
    transition: width 1.5s ease;
}

.box-progess.aos-animate .progess-line .line:after {
    width: var(--w-progess);
}

.box-progess .progess-label{
    min-width: 70px;
    font-size: var(--fs-20);
    font-weight: 700;
    text-align: right;
    line-height: 1;
    color: var(--cl-x);
}


/*===*/
.box-category{
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.box-category:after{
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 98, 26, 0.2) 0%, rgba(255, 98, 26, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.box-category .box-content{
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80%;
    padding: 0.5rem;
    background-color: var(--cl-z);
    transform: translateX(-50%);
    clip-path: url('#clip-path-title-category');
}

.box-category .box-content .title{
    font-size: 1.125rem;
    text-align: center;
    color: #fff;
}


/*===*/
.box-aplication{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    position: relative;
    padding: 1.5rem;
    border-radius: 0.75rem;
    height: 100%;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.box-aplication:after{
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: inherit;

    background: linear-gradient(
        270deg,
        rgba(9, 22, 159, 0.2),
        rgba(9, 22, 159, 1),
        rgba(9, 22, 159, 0.2)
    );

    background-size: 200% 100%;
    animation: borderMove 3s linear infinite;

    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes borderMove {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

.box-aplication .title{
    font-size: var(--fs-20);
    font-weight: 700;
    color: var(--cl-x);
}

.box-aplication .icon{
    width: 6rem;
    height: 6rem;
}

.box-aplication .view-more{
    margin-top: auto;
    align-self: flex-end;
    text-transform: uppercase;
    color: #F48E00;
}

.box-aplication:hover{
    transform: translateY(-0.5rem);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}



/*===*/
.box-home-project{
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.box-home-project .box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background: linear-gradient(180deg,rgba(244, 142, 0, 0.4) 0%, rgba(244, 142, 0, 1) 100%);
}

.box-home-project .box-content .title{
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    color: #fff;
}


/*===*/
.review-slide .swiper-slide{
    width: 40%;
}

.review-prev,
.review-next{
    position: unset;
    height: unset;
    margin: 0;
    font-size: 2rem;
    inset: unset;
    color: #fff;
    transition: all .3s ease-in-out;
}

.review-prev:after,
.review-next:after{
    content: unset;
}


.box-review{
    --w-icon: clamp(5rem, 4.6rem + 2vw, 7rem);
    --pd: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.box-review .box-thumbnail{
    width: var(--w-icon);
    height: var(--w-icon);
    background-color: #fff;
    border-radius: 50%;
    border: 6px solid #174A99;
    overflow: hidden;
    margin-left: var(--pd);
    position: relative;
    z-index: 1;
}

.box-review .box-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: calc(-1 * var(--w-icon) / 2);
    padding: calc(var(--pd) + 1.5rem) 2rem 1.5rem;
    background-color: #fff;
    border-radius: 0.75rem;
}

.box-review .info-rating{
    display: flex;
    align-items: flex-end;
    margin-top: auto;
}

.box-review .user{
    flex: 1;
}

.box-review .user .label-name{
    font-weight: 600;
    color: var(--cl-x);
}

.box-review .user .label-position{
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cl-x);
}


/*===*/
.form-rfq{
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.25);
}

.box-map-rfq{
    height: 100%;
    min-height: 400px;
}

.box-map-rfq iframe{
    width: 100%;
    height: 100%;
}

.form-rfq .form-control{
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.125);
    backdrop-filter: blur(2px);
    box-shadow: unset !important;
    color: #fff;
    font-size: inherit;
}

.form-rfq .form-control::placeholder{
    color: #fff;
}



/*===*/
.box-hover-zoom .box-thumbnail,
.box-hover-zoom-long .box-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(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    color: var(--cl-x);
    transition: all .3s ease-in-out;
    pointer-events: all;
}

.wrapper-slide .swiper-button-next:after,
.wrapper-slide .swiper-button-prev:after{
    font-size: 1rem;
    font-weight: 700;
}

.wrapper-slide.hover-show-button .swiper-button-next,
.wrapper-slide.hover-show-button .swiper-button-prev{
    opacity: 0;
}
.wrapper-slide.hover-show-button:hover .swiper-button-next,
.wrapper-slide.hover-show-button:hover .swiper-button-prev{
    opacity: 1;
}
.wrapper-slide.hover-show-button:hover .swiper-button-disabled{
    opacity: 0.5;
}



/*====*/
.box-product{
    height: 100%;
    padding: 0.375rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.box-product .box-thumbnail{
    position: relative;
    border-radius: 0.375rem;
}

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

.box-product .box-content{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0.25rem 0.25rem;
    text-align: center;
}

.box-product .box-title{
    /*max-height: 2.5rem;*/
}

.box-product .title{
    margin-bottom: 0rem;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-product .box-price{
    gap: 0.5rem;
    font-weight: 600;
    color: #FF0E0E;
}

.box-product .box-price .label-sale-price{
    color: #000;
}

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

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



/*===*/
#tab-home-post .nav-item .nav-link{
    border-radius: 0.5rem;
    background-color: #E3E3E3;
    color: var(--cl-x);
    font-weight: 600;
}

#tab-home-post .nav-item .nav-link.active{
    background-color: var(--cl-x);
    color: #fff;
}

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

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

.box-blog .badge-date{
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 2px;
    background-color: #fff;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
}

.box-blog .badge-date .date{
    padding: 0 4px;
    background-color: var(--cl-x);
    border-radius: 0.25rem;
    color: var(--cl-z);
    text-align: center;
}

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

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

.box-blog .box-meta{
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #A3A3A3;
    font-size: 0.875rem;
    color: #A3A3A3;
}

.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:hover .title{
    color: var(--cl-x);
}



/*===*/
.footer{
    position: relative;
}

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

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

.logo-footer{
    width: 100%;
}

.wrapper-form-footer{
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 2.5rem 6rem;
    color: #fff;
}

.wrapper-form-footer:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 150%;
    height: 100%;
    background-color: var(--cl-x);
    clip-path: url('#clip-path-footer-top');
}

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-weight: 700;
}

.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;
    color: var(--cl-x);
}

.list-footer p{
    margin-bottom: 0.75rem;
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-contact .item{
    width: 2.25rem;
    height: 2.25rem;
    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: 0.75rem;
    font-weight: 900;
    color: var(--cl-x);
}

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

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
    color: #fff;
}

.coppyright a{
    color: #fff;
}

/**/
.form-footer .form-group{
    display: flex;
    border-radius: 0.5rem;
    box-shadow: none !important;
    background-color: #fff;
    color: #fff;
}

.form-footer .form-control{
    flex: 1;
    padding: 0.625rem 1rem;
    background-color: transparent;
    border: 0;
    box-shadow: none !important;
}   


/*=== Page Contact*/
.box-iframe{
    height: 100%;
}

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

.box-iframe-contact{
    height: 15rem;
}

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

.box-icon-contact{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--cl-x);
    border-radius: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.box-icon-contact .icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    height: clamp(3rem, 2.9rem + 0.5vw, 3.5rem);
    color: var(--cl-x);
}

.box-icon-contact .content{
    text-align: center;
}

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

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

.contact-form label{
    margin-bottom: 0.125rem;
}

.contact-form label.required:after{
    content: "*";
    color: #DF000B;
}


/*Trang Giới thiệu*/
.box-vs{
    height: 100%;
    padding: 3rem;
    background-color: var(--cl-x);
    background-repeat: no-repeat;
    background-position: right top;
    background-blend-mode: soft-light;
    border-radius: 0.75rem;
    color: #fff;
}

.box-vs .box-top{
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.box-vs .box-top .title{
    font-size: var(--fs-title);
    font-weight: 700;
}

.box-vs .box-top .icon{
    width: 4rem;
    height: 4rem;
}

.wrapper-slide .gallery-next,
.wrapper-slide .gallery-prev{
    background-color: var(--cl-z);
    border-radius: 0.5rem;
    color: #fff;
}

.wrapper-slide .gallery-next{
    right: 0;
    transform: translateX(50%);
}

.wrapper-slide .gallery-prev{
    left: 0;
    transform: translateX(-50%);
}


/*===*/
.shop-sidebar{
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}


.box-product-vertical{
    display: flex;
    gap: 0.5rem;
}

.box-product-vertical .box-thumbnail{
    width: 70px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.box-product-vertical .box-content .title{
    font-size: 1rem;
}



/*=== Trang dự án*/
.box-project .box-thumbnail{
    position: relative;
    border-radius: 0.5rem;
}

.box-project .box-content{
    padding-top: 0.75rem;
}

.box-project .label-cover{
    position: absolute;
    left: 0;
    bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.box-project .box-content .date{
    margin-bottom: 0.25rem;
    text-align: center;
    color: #8F8F8F;
}

.box-project .box-content .title{
    font-size: var(--fs-18);
    text-align: center;
}