:root{
    --cl-x: #3889BE;
    --cl-y: rgba(235, 219, 128, 0.53);
    --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.25rem, 1.1rem + 0.75vw, 2rem);

    --px-content: 6%;
    --py-content: 50px;
}

body{
    font-family: "Montserrat", sans-serif;
    color: #3B3B3B;
    overflow-x: hidden;
}

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

a{
    color: #3B3B3B;
    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;
}

.text-gray{
    color: var(--cl-gray);
}

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

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

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


.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    line-height: 1.5;
    font-weight: 600;
    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: 1px solid var(--cl-x);
}

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

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

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

.btn-gray{
    background-color: #222224;
    color: #fff;
    border: 1px solid #222224;
}

.btn-gray:hover{
    background-color: #222224;
}

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

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

.btn-outline-gray{
    border: 1px solid #222224;
    background-color: transparent;
    color: #222224;
}

.btn-outline-gray:hover{
    background-color: #222224;
    color: #fff;
}


.btn-outline-rgd{
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #2368C7, #113361) border-box;
    border: 2px solid transparent;
}

.btn-outline-rgd span{
    font-weight: 700;
    background: -webkit-linear-gradient(#2368C7, #113361);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


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


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


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

.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}

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

.navbar-main{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.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%;
    align-items: center;
}

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

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

.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: 280px;
    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;
    align-items: center;
    background-color: #D9D9D9;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25) inset;
    border-radius: 50rem;
}

.translate .img-lang-current{
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    overflow: hidden;
}

.translate button{
    box-shadow: none;
    border: none;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-right: 0.25rem;
    font-weight: 700;
    font-size: inherit;
}


.dropdown-toggle::after{
    margin-left: 0;
}

.translate .dropdown-menu.show{
    padding-top: 0;
    padding-bottom: 0;
    min-width: -webkit-fill-available !important;
    overflow: hidden;
}

.translate .dropdown-menu .dropdown-item{
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
    font-weight: 500;
}

.translate .dropdown-menu .dropdown-item .icon{
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.translate .dropdown-menu .dropdown-item.active,
.translate .dropdown-menu .dropdown-item:hover{
    background-color: var(--cl-x);
    color: #fff;
}


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

.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}


/*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: 600;
    color: #2B2B2B;
    font-size: clamp(1rem, 0.8rem + 1vw, 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: #2B2B2B;
    font-size: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
}

.banner-page .breadcrumb-item + .breadcrumb-item::before{
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;

}

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


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

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

.box-main-title h3{
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}


.box-img-about{
    position: relative;
}

.box-img-about .img-circle{
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(4rem, 3.4rem + 3vw, 7rem);
    height: clamp(4rem, 3.4rem + 3vw, 7rem);
    transform: translate(-50%, 50%);
    transform-origin: center;
}


.box-img-about .img-circle .inner-img-circle{
    animation: spin 5s linear infinite;
}

.box-img-about .img-circle svg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: clamp(1.25rem, 1.05rem + 1vw, 2.25rem);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*===*/
.box-ecosystem .box-content{
    position: relative;
    z-index: 1;
    margin: -2rem 2rem 0;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transition: all 1s cubic-bezier(.3,.85,.29,.98);
}

.box-ecosystem .box-content img{
    width: clamp(2rem, 1.8rem + 1vw, 3rem) !important;
    height: clamp(2rem, 1.8rem + 1vw, 3rem) !important;
}

.box-ecosystem .box-content h3{
    margin-bottom: 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.box-ecosystem:hover .box-content{
    transform: translateY(-0.5rem);
}


/*===*/
.box-content-service{
    height: 30rem;
    display: flex;
    align-items: center;
    padding: 10%;
    color: #fff;
}

.service-next:after,
.service-prev:after{
    content: "";
}


/*===*/
.nav-tabs-project{
    width: fit-content;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    border-radius: 0.5rem;
    border: 1px solid #D6D6D6;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.nav-tabs-project .nav-link{
    background-color: transparent;
    border: 0;
    color: #181818;
    font-weight: 500;
    white-space: nowrap;
}

.nav-tabs-project .nav-link.active{
    background-color: transparent;
    color: #fff;
}

.nav-tabs-project .nav-slider-rect {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    background-color: #181818;
    transition: all .5s cubic-bezier(.3,.85,.29,.98);
    border-radius: 0.5rem;
}

/*====*/
.box-project{
    position: relative;
    overflow: hidden;
}

.box-project img{
    transition: all 1s cubic-bezier(.3,.85,.29,.98);
}


.box-project .box-content{
    position: absolute;
    inset: 5%;
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: rgba(235, 219, 128, 0.53);
    border: 2rem solid rgba(237, 223, 148, 0.42);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: all 1s cubic-bezier(.3,.85,.29,.98);
    transform: scale(1.3);
}

.box-project .box-content .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 600;
}

.box-project .box-content .box-excerpt{
    line-height: none;
}

.box-project:hover .box-content{
    opacity: 1;
    transform: scale(1);
}

.box-project:hover img{
    filter: brightness(0.5);
}


/*===*/
.wrapper-process-content{
    margin: calc(-1 * clamp(1rem, 0.4rem + 3vw, 4rem)) clamp(2rem, 1rem + 5vw, 7rem) 0;
    padding: 5%;
    background-color: #EDE6BF;
    clip-path: url(#clips-path-wrapper-process);
}


.wrapper-box-process .inner-wrapper-box{
    display: flex;
    justify-content: center;
    align-items: center;
}


.wrapper-box-process .dot{
    position: absolute;
    z-index: 1;
    width: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    height: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    border: 1px solid #555555;
    border-radius: 50%;
    background-color: #EDE6BF;
}

.wrapper-box-process .dot-left{
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.wrapper-box-process .dot-right{
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.wrapper-box-process .dot-center{
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper-box-process.even .dot-center{
    top: unset;
    bottom: 0;
    transform: translate(-50%, 50%);
}


.wrapper-box-process .shape-circle-stroke{
    position: absolute;
    inset: 0;
    border: clamp(0.125rem, 0.1rem + 0.125vw, 0.25rem) solid #555555;
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.wrapper-box-process.even .shape-circle-stroke{
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}


.wrapper-box-process .shape-circle-dashes{
    position: absolute;
    inset: 0;
    border: 0.125rem dashed #555555;
    border-radius: 50%;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.wrapper-box-process.even .shape-circle-dashes{
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}


.wrapper-box-process .shape-circle-fill{
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #EDE6BF;
    clip-path: polygon(80% 0, 50% 50%, 100% 20%);
}


.wrapper-box-process.even .shape-circle-fill{
    clip-path: polygon(100% 80%, 50% 50%, 80% 100%);
}

.box-process{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    position: relative;
    z-index: 1;
}

.wrapper-box-process.even .box-process{
    flex-direction: column-reverse;
}

.box-process .icon{
    width: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    height: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
}

.box-process .content{
    line-height: normal;
}


/*===*/
.grid-container{
    --w-item: clamp(10rem, 8rem + 10vw, 20rem);
    --gap-grid: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    margin: auto;
}

.grid-container .grid-item{
    height: var(--w-item);
    border-radius: 0.5rem;
    overflow: hidden;
}

.grid-container .grid-item:nth-child(1){
    grid-column: span 2;
}

.grid-container .grid-item:nth-child(2){
    grid-row: span 2;
    height: auto;
}


/*===*/
.box-text-partner{
    padding-left: 0.25rem;
    background: -webkit-linear-gradient(-90deg, #47A9D4 5%, #222224 90%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #fff;
    font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    font-weight: 700;
    line-height: 1;
    mix-blend-mode: multiply;
}


.box-img-partner{
    padding: 1rem;
    background-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;
}


/*===*/
.box-blog .box-date{
    margin-bottom: 0.5rem;
    color: #1E1E1E;
    font-weight: 500;
}

.box-blog .box-content{
    margin-top: 0.5rem;
}

.box-blog .title{
    margin-bottom: 0.25rem;
    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-excerpt{
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-blog .box-view-more{
    font-style: italic;
    color: var(--cl-x);
}

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


/*===*/
.box-recruitment{
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: #FFF;
    box-shadow: 0 3px 8px 0 rgba(48, 150, 137, 0.08);
}

.form-recruitment{
    padding: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    background-color: #F9F9F9;
    box-shadow: 0 0 13.1px 0 rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
}

.form-recruitment .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    box-shadow: none;
    background-color: #EDEDED;
    font-size: inherit;
}

.g-recaptcha-contact{
    transform: scale(0.8);
}


/*===*/
.grid-container-service{
    --w-item: clamp(10rem, 8rem + 10vw, 20rem);
    --gap-grid: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: auto;
}

.grid-container-service .grid-item{
    display: flex;
}

.grid-container-service .grid-item-0{
    grid-row: span 2;
}


.box-service{
    position: relative;
    width: 100%;
    height: 100%;
}

.box-service .box-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
}

.box-service .box-thumbnail,
.box-service .box-thumbnail .inner-thumbnail{
    height: 100%;
}

.box-service .box-content .title{
    margin-bottom: 0;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    color: #fff;
    text-align: center;
}


/*===*/
#accordion-question .accordion-item{
    background-color: transparent;
}

#accordion-question .accordion-button{
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    border-radius: 0;
    background-color: transparent;
    font-weight: 600;
    font-size: inherit;
}

#accordion-question .accordion-button:not(.collapsed){
    color: var(--cl-x);
}

#accordion-question .accordion-button:after{
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    background-image: unset;
    transition: all 0.8s cubic-bezier(.3,.9,.61,.99);
    display: flex;
    justify-content: center;
    align-items: center;
}

#accordion-question .accordion-button:not(.collapsed):after{
    transform-origin: center center;
    content: "\f068";
    transform: rotate(360deg);
}

#accordion-question .accordion-body{
    padding: 1rem;
    background: #EFE5AF;
}


/*===*/
.form-contact-service{
    padding: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    background-color: #F1F1F1;
    border-radius: 1.5rem;
}

.form-contact-service .form-control{
    padding: clamp(0.5rem, 0.45rem + 0.25vw, 0.75rem) 1rem;
    box-shadow: none;
    font-size: inherit;
}

.form-contact-service .btn-custom{
    width: 100%;
    background-color: #1E1E1E;
    border-color: #1E1E1E;
}


.box-text-faq-contact{
    position: absolute;
    bottom: 0;
    padding-left: 0.25rem;
    background: -webkit-linear-gradient(-90deg, #2B2B2B 5%, #2B2B2B 90%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    mix-blend-mode: multiply;
}



/*===*/
.box-slogan{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--cl-y);
    font-weight: 500;
    outline: 1px solid #838383;
    outline-offset: -0.75rem;
}

.box-slogan .btn-custom{
    padding: 0.75rem 2rem;
    border: 1px solid #222224;
    border-radius: 50rem;
    font-weight: 700;
}

/*===*/
.nav-tabs-archive-project{
    justify-content: center;
    border-bottom: 0;
}

.nav-tabs-archive-project .nav-link{
    color: #757575;
    border: 1px solid #E4E4E4;
    border-radius: 0;
}

.nav-tabs-archive-project .nav-link.active{
    background-color: #252525;
    color: #F6DC48;
}


/*===*/
.box-gallery{
    display: block;
    position: relative;
    height: 100%;
}

.box-gallery .thumbnail{
    height: 100%;
}

.box-gallery .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    color: #fff;
    line-height: normal;
    transition: all 1s cubic-bezier(.3,.85,.29,.98);
    opacity: 0;
    transform: scale(0.7);
}

.box-gallery .box-content .title{
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    font-weight: 600;
}

.box-gallery:hover .box-content{
    opacity: 1;
    transform: scale(1);
}

.box-gallery img{
    transition: all .2s ease-in-out;
}

.box-gallery:hover img{
    filter: brightness(0.5);
}


/*===*/
.box-product{
    overflow: hidden;
}

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

.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;
    margin-top: 0.75rem;
}

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

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

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

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


/*===*/
.footer{
    position: relative;
    color: #fff;
    font-size: 15px;
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

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

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

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

.logo-footer{
    width: 100%;
}

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

.list-footer ul{
    list-style-image: url('/templates/images/icon-list-footer.svg');
    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);
}

.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: 0.25rem;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.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{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
}


/**/
.form-booking-footer .form-control{
    border: 1px solid #D9D9D9;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.form-booking-footer button{
    width: 100%;
    border-radius: 0;
    color: #303029;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.form-booking-footer .form-control::placeholder{
    color: #fff;
}
.form-booking-footer .g-recaptcha-contact{
    transform: scale(0.7);
    transform-origin: 0 0;
}    


/*===*/
.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact iframe{
    /*height: 100%;*/
}

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


/*==== Page About*/
.about-slide{
    --w-slide: 60%;
}

.about-slide .swiper-slide{
    width: var(--w-slide);
    transform: scale(0.9);
    transition: all .3s ease-in-out;
}

.about-slide .swiper-slide-active{
    transform: scale(1.0);
}


.about-slide .about-prev,
.about-slide .about-next{
    width: clamp(2rem, 1.8rem + 1vw, 3rem);
    height: clamp(2rem, 1.8rem + 1vw, 3rem);;

    background-color: var(--cl-x);
    border-radius: 50%;
}

.about-slide .about-next{
    right: calc((100% - var(--w-slide)) / 2);
}

.about-slide .about-prev{
    left: calc((100% - var(--w-slide)) / 2);
}


.about-slide .about-prev:after,
.about-slide .about-next:after{
    font-size: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    font-weight: 200;
}

.about-slide .about-next:after{
    content: "\f178";
}

.about-slide .about-prev:after{
    content: "\f177";
}

/*===*/
.box-icon-service .icon{
    width: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    height: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--cl-x);
}

.box-icon-service .content{
    margin-top: 0.75rem;
}

.box-icon-service .content .title{
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    font-weight: 600;
}


/*===*/
.box-icon-value{
    height: 100%;
    background-color: #F2F2F2;
}

.box-icon-value.even{
    background-color: #E6E6E6;
}

.box-icon-value .box-icon-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #E6E6E6;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.box-icon-value.even .box-icon-top{
    background-color: #F2F2F2;
}

.box-icon-value .box-icon-top .icon{
    width: clamp(3rem, 2.8rem + 1vw, 4rem);
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
    margin-bottom: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.box-icon-value .box-icon-top .title{
    margin-bottom: clamp(1rem, 0.8rem + 1vw, 2rem);
    font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
    font-weight: 700;
    color: var(--cl-x);
}

.box-icon-value .box-icon-bottom{
    padding: clamp(2rem, 1.6rem + 2vw, 4rem);
}


/*===*/
.box-icon-capacity{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.box-icon-capacity .icon{
    width: clamp(5rem, 4.8rem + 1vw, 6rem);
    height: clamp(5rem, 4.8rem + 1vw, 6rem);
    padding: 1rem;
    background-color: #181818;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(.3,.85,.29,.98);
}

.box-icon-capacity .content{
    text-align: center;
    transition: all 0.5s cubic-bezier(.3,.85,.29,.98);
}

.box-icon-capacity .content .title{
    margin-bottom: 0;
    font-size: var(--fs-18);
    font-weight: 600;
}

.box-icon-capacity:hover .icon{
    transform: translateY(-0.5rem);
    background-color: var(--cl-x);
}

.box-icon-capacity:hover .content{
    transform: translateY(-0.25rem);
}


/*===*/
.box-img-portfolio{
    position: relative;
}

.box-img-portfolio img{
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}


.box-text-portfolio{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
    padding-left: 0.25rem;
    background: -webkit-linear-gradient(-90deg, #2B2B2B 5%, #FFFFFF 90%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #fff;
    font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
    font-weight: 700;
    line-height: 1;
    mix-blend-mode: multiply;
}



/*===*/
.box-icon-we-have{
    display: flex;
    gap: 2rem;
}

.box-icon-we-have .number{
    position: relative;
    padding: 0.125rem;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    background: -webkit-linear-gradient(-90deg, #3B3B3B 5%, #3B3B3B 90%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
    color: #fff;
}

.box-icon-we-have .number .shape-cicle{
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: -1;
    width: clamp(2rem, 1.8rem + 1vw, 3rem);
    height: clamp(2rem, 1.8rem + 1vw, 3rem);
    background-color: var(--cl-x);
    border-radius: 50%;
}

.box-icon-we-have .title{
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    font-weight: 600;
}

.box-icon-we-have .content{
    align-self: center;
}


/*===*/
.box-staff{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.box-staff .box-staff-top{
    width: 35%;
    flex-shrink: 0;
    text-align: center;
}

.box-staff .box-thumbnail{
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
}

.box-staff .box-thumbnail .inner-thumbnail{
    --bs-aspect-ratio: 120%;
}

.box-staff .box-content{
    max-height: 350px;
    overflow-y: auto;
}

.box-staff .title,
.box-staff .box-content h3{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-weight: 600;
}

/*===*/
.box-our-strengths{
    display: flex;
    gap: 1rem;
    height: 100%;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
}

.box-our-strengths .icon{
    width: 4rem;
    height: 4rem;
}

.box-our-strengths .content{
    flex: 1;
}

.box-our-strengths .content h3{
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}

.box-our-strengths:hover{
    transform: translateY(-0.5rem);
    box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
}