:root{
    --cl-x: #27AAE1;
    --cl-y: #FFCE17;
    --cl-gray: #535353;
    --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: 8%;
    --py-content: 50px;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Inter", sans-serif;
    color: #535353;
    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;
}

.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: 50rem;
    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: 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: #F5F5F5;
    color: #535353;
    border: 1px solid #F5F5F5;
}

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

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

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

.btn-outline-white{
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-white:hover{
    background-color: #fff;
    color: #000;
}



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

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

.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: #000000;
    z-index: 1000;
}

.index .navbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
}


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

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

.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%;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 0.8rem + 1vw, 2rem);
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0rem;
    font-weight: 700;
    white-space: nowrap;
}

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

.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;
    font-size: 0.5rem;
}

.navbar-brand{
    margin: 0;
    padding: 0;
}

.logo{
    width: 82px;
    transition: all .3s ease-in-out;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    margin-left: 0;
    align-items: center;
    border: 0;
    box-shadow: none !important;
    color: #fff;
}

.box-search-header{
    display: flex;
    width: 100%;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #000000;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 0.5rem;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
    font-size: var(--fs-14);
    color: #fff;
    transition: all .3s ease-in-out;
}

.box-search-header button{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    background-color: transparent;
    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;
    gap: 0.25rem;
}

.translate .lang-item{
    color: #4E4E4E;
}

.translate .lang-item + .lang-item{
    padding-left: 0.25rem;
    border-left: 1px solid #4E4E4E;
}

.translate .lang-item.active{
    color: #fff;
}

.title-page-hidden{
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    position: none;
}


/*===*/
.fixed-label-contact{
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100;
    background-color: var(--cl-x);
    padding: 0.75rem 0.325rem;
    text-orientation: sideways;
    writing-mode: vertical-lr;
    transform: rotate(180deg) translateY(50%);
    border-radius: 0 0.5rem 0.5rem 0;
    color: #fff;
    font-size: var(--fs-14);
}



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

/*banenr-page*/
.banner-page{
    min-height: 30rem;
    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-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: #000;
}

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

.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f4f4f4;
}
.simple-breadcrumb .breadcrumb{
    flex-wrap: none;
    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: #000;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

.simple-breadcrumb .breadcrumb-item.active{
    color: var(--cl-x);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*===*/
.page-loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-top,
.loader-bottom{
    position: absolute;
    width: 100%;
    height: 50%;
    background: #000;
    left: 0;
    z-index: 1;
    transition: height 0.5s;
    overflow: hidden;
}

.loader-top{
  top: 0;
}

.loader-bottom {
  bottom: 0;
}


.img-loader {
    width: 250px;
}

.loader-top .img-loader{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.loader-bottom .img-loader{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
}




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

.wrapper-slide.wrapper-outline-button .swiper-button-next{
    right: calc(-1 * clamp(0rem, -0.6rem + 3vw, 3rem));
}

.wrapper-slide.wrapper-outline-button .swiper-button-prev{
    left: calc(-1 * clamp(0rem, -0.6rem + 3vw, 3rem));
}




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

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

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

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

.main-slide video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide-scroll{
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}


.slide-scroll svg{
    animation: soft-bounce 1s infinite;
}

@keyframes soft-bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: ease-in;
    }
    50% {
        transform: translateY(-10px);
        animation-timing-function: ease-out;
    }
}


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

.box-title-main.text-white h2{
    color: #fff;
}


/*===*/

.block-field-operation .bg-cover:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(154deg, #000 0.82%, rgba(0, 0, 0, 0.00) 40%);
}


.box-field-operation .box-thumbnail{
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}

.box-field-operation .box-title{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.box-field-operation .box-title .title{
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-size: var(--fs-20);
}

.box-field-operation .box-content{
    padding: 0.75rem;
}



/*===*/
.box-industrial-profession{
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #27AAE1 0%, #147CA8 100%);
    box-shadow: 0px 0px 15.1px 0px rgba(0, 0, 0, 0.10);
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.box-industrial-profession .box-top{
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.box-industrial-profession .box-top .title{
    font-size: var(--fs-20);
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

.box-industrial-profession .box-top .icon{
    height: 2.5rem;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(17%) hue-rotate(307deg) brightness(106%) contrast(103%);
}

.box-industrial-profession .box-bottom{
    font-size: var(--fs-14);
}

.box-industrial-profession-cover{
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #fff;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.box-industrial-profession-cover .icon{
    position: absolute;
    top: 2rem;
    right: 2rem;
    height: 4rem;
    transition: all .3s ease-in-out;
}

.box-industrial-profession-cover .title{
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    color: #000000;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.box-industrial-profession:hover{
    transform: translateY(-0.5rem);
}

.box-industrial-profession:hover .box-industrial-profession-cover{
    opacity: 0;
}

.box-industrial-profession:hover .box-industrial-profession-cover .icon{
    transform: translateY(-100%);
}

.box-industrial-profession:hover .box-industrial-profession-cover .title{
    transform: translateX(-100%);
}


/*===*/
.box-product{
    padding: 0.325rem;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.box-product .box-thumbnail{
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    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;
    padding: 0.75rem;
}

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

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

.box-product .box-excerpt{
    text-align: center;
    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);
}





/*===*/
.nav-child-post{
    gap: 1.5rem;
}
.nav-child-post .nav-link{
    padding: 0.5rem 0;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    color: #000;
    font-weight: 500;
}

.nav-child-post .nav-link.active{
    color: var(--cl-x);
}

.form-search-post{
    display: flex;
    border: 1px solid #ccc;
    border-radius: 0.325rem;
}

.form-search-post .form-control{
    flex: 1;
    box-shadow: none !important;
    border: 0;
    font-size: inherit;
}

.form-search-post .btn-custom{
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
}


.box-blog{
    position: relative;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
    color: #535353;
}

.box-blog .box-thumbnail{
    position: relative;
    border-radius: 1rem;
}

.box-blog .box-content{
    padding: 1rem;
    border-radius: 1rem;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

.box-blog .box-title{
    max-height: 2.5rem;
    margin-bottom: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}

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

.box-blog .box-excerpt{
    height: clamp(2.625rem, 2.55rem + 0.375vw, 3rem);
    text-align: justify;
    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;
    justify-content: space-between;
    margin-top: 0.5rem;
}


.box-blog .box-meta .date{
    color: #B6B4B4;
}

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

.box-blog .box-content{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: unset !important;
    display: flex;
    flex-direction: column;
    
}

.box-blog:hover .box-content .box-excerpt{
    height: clamp(3.875rem, 3.75rem + 0.625vw, 4.5rem);
    -webkit-line-clamp: 3;
}





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

.box-gallery .box-content{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
}

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


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

.footer-bottom{
    padding-top: 0;
    padding-bottom: 1rem;
}

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

.footer p{

}

.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
}

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

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

.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: var(--cl-x);
    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:not(.list-footer-horizontal) ul li + li{
    margin-top: 0.7rem;
}

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


.list-footer-horizontal ul{
    display: flex;
    row-gap: 0.5rem;
    column-gap: 1.5rem;
}


.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: #9C9C9C;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item .inner-item{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.325rem;
    background-color: #9C9C9C;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: all .2s ease-out;
}

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

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

.social-contact:hover .item .inner-item{
    background-color: var(--cl-x);
}


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


/*===*/
iframe{
    width: 100%;
    max-width: 100%;
}
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*/
.box-company-introduction{
    position: relative;
    padding-left: 1.5rem;
    max-height: 450px;
    overflow-y: scroll;
    direction: rtl;
}

.box-company-introduction > *{
     direction: ltr;
}

.box-company-introduction::-webkit-scrollbar {
    width: 4px;
    background-color: #D9D9D9;
}

.box-company-introduction::-webkit-scrollbar-thumb {
    background-color: var(--cl-x);
}

.box-company-introduction::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

/*.box-company-introduction:before,
.box-company-introduction:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    border-radius: 50rem;
}

.box-company-introduction:before{
    background-color: #D9D9D9;
    height: 100%;
}

.box-company-introduction:after{
    background-color: var(--cl-x);
    height: 150px;
}*/


/*===*/
.box-mission-vission .box-top{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.box-mission-vission .box-top .icon{
    height: clamp(3rem, 2.8rem + 1vw, 4rem);
}

.box-mission-vission .box-top .title{
    flex: 1;
    margin-bottom: 0;
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    font-weight: 700;
    color: var(--cl-x);
}


/*===*/

#accordion-values .accordion-item{
    border: 0;
    border-bottom: 1px solid #C5C5C5;
}

#accordion-values .accordion-button{
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 500;
}

#accordion-values .accordion-button:after{
    background-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

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

#accordion-values .accordion-body{
    padding: 0 0 0.5rem;
    color: var(--cl-x);
}

#accordion-values .accordion-collapse {
  display: none;
}

#accordion-values .accordion-collapse.show {
  display: block !important;
}





/*=== Page Capacity*/
.block-nav-capacity{
    position: sticky;
    top: 2rem;
    z-index: 2;
    padding-bottom: 2rem;
    background-color: #fff;
}

.nav-capacity{
    justify-content: center;
    gap: clamp(1rem, 0.8rem + 1vw, 2rem);
}

.nav-capacity .nav-link{
    padding: 0.25rem 0;
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
    font-weight: 600;
    color: #C5C5C5;
    text-transform: uppercase;
}

.nav-capacity .nav-link.active{
    position: relative;
    color: var(--cl-x);
}

.nav-capacity .nav-link.active:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.125rem;
    width: 100%;
    height: 2px;
    background-color: var(--cl-x);
}

.box-video{
    position: relative;
    border-radius: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.box-video-play-button{
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    height: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid #fff;
    transform: translate(-50%, -50%);
}

.box-video-play-button svg{
    width: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    margin-left: 0.25rem;
}

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

.box-video:hover img{
    transform: scale(1.1);
    filter: brightness(0.5);
}



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

.box-equipment .box-thumbnail{
    border-radius: 1rem;
}

.box-equipment .box-content{
    padding: 0.75rem;
}

.box-equipment .box-content .title{
    margin-bottom: 0.25rem;
    font-size: var(--fs-20);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.box-equipment .box-content .title_sub{
    font-size: var(--fs-18);
    font-weight: 500;
    text-align: center;
}



/*===*/
.box-operational-workflow{
    --box-rd: clamp(2rem, 1.8rem + 1vw, 3rem);
    display: flex;
    align-items: flex-end;
    margin-top: clamp(1rem, 0.6rem + 2vw, 3rem);
    border-radius: var(--box-rd);
    background: #F6F6F6;
    position: relative;
    cursor: pointer;
}

.box-operational-workflow.odd{
    margin-left: clamp(1rem, 0.6rem + 2vw, 3rem);
}

.box-operational-workflow.even{
    flex-direction: row-reverse;
    margin-right: clamp(1rem, 0.6rem + 2vw, 3rem);
}

.box-operational-workflow .box-number{
    transform: translateY(10%);
    font-size: clamp(10rem, 9rem + 5vw, 15rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: #F6F6F6;
    text-shadow:
    -1px -1px 0 var(--cl-x),
     1px -1px 0 var(--cl-x),
    -1px  1px 0 var(--cl-x),
     1px  1px 0 var(--cl-x);
     overflow: hidden;
}

/*.box-operational-workflow.odd .box-number .inner-number{
    margin-left: -1rem;
}

.box-operational-workflow.even .box-number .inner-number{
    margin-right: -1rem;
}*/


.box-operational-workflow .box-content{
    flex: 1;
    padding: clamp(2rem, 1.4rem + 3vw, 5rem) clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.box-operational-workflow .title{
    font-weight: 700;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    color: #000;
}

.box-operational-workflow:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: calc(-1 * clamp(1rem, 0.7rem + 1.5vw, 2.5rem));
    width: 30%;
    height: 50%;
    background: linear-gradient(90deg, #27AAE1 0%, #1789B9 100%);
}

.box-operational-workflow.odd:before{
    left: calc(-1 * clamp(1rem, 0.7rem + 1.5vw, 2.5rem));
    border-top-left-radius: calc(var(--box-rd) + clamp(1rem, 0.8rem + 1vw, 2rem));
}

.box-operational-workflow.even:before{
    right: calc(-1 * clamp(1rem, 0.7rem + 1.5vw, 2.5rem));
    border-top-right-radius: calc(var(--box-rd) + clamp(1rem, 0.8rem + 1vw, 2rem));
}

.box-operational-workflow:after{
    content: "";
    position: absolute;
    inset: -0.25rem;
    z-index: -1;
    background: linear-gradient(90deg, #FFF 0%, #EDEDED 100%);
    box-shadow: -4px 12px 5px rgba(0, 0, 0, 0.1);
    border-radius: var(--box-rd);
}


.block-profile-download{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: linear-gradient(-45deg, #8d720e, #000000, #27aae1, #0b0c0c);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/*===*/
.box-img-certification{
    border-radius: 0.5rem;
    overflow: hidden;
}

.certification-next,
.certification-prev{
    position: unset;
    inset: unset;
    width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    background-color: #fff;
    border-radius: 50%;
    margin: 0;
    color: #000;
}

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




/*=== Page Commercial capacity*/
.box-partnership-workflow{
    display: flex;
    gap: 0.75rem;
    transition: all .3s ease-in;
    cursor: pointer;
}

.box-partnership-workflow .box-number{
    width: 4rem;
    display: flex;
    justify-content: center;
    font-size: 6rem;
    line-height: 1;
    font-weight: 700;
    color: #AEAEAE;
    transition: all .3s ease-in;
}

.box-partnership-workflow .box-content{
    flex: 1;
}

.box-partnership-workflow .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
    color: #000;
    transition: all .3s ease-in;
}

.box-partnership-workflow:hover{
    transform: translateY(-0.5rem);
}

.box-partnership-workflow:hover .box-number{
    color: var(--cl-x);
}

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





/*===== Page Product*/
.box-category .box-thumbnail{
    border-radius: 0.625rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.box-category .box-content{
    margin-top: 0.75rem;
    text-align: center;
}

.box-category .box-content .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
    color: #535353;
}

.main-title-underline{
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #8D8D8D;
    color: #8D8D8D;
    font-size: var(--fs-24);
}


.box-brand .box-thumbnail{
    border-radius: 0.25rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

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

.box-brand .title{
    font-size: var(--fs-20);
    text-align: center;
}



/*===*/
.box-product-vertical{
    display: flex;
    align-items: flex-start;
    gap: 7rem;
}

.box-product-vertical .box-thumbnail{
    width: 20%;
}

.box-product-vertical .box-thumbnail .inner-thumbnail{
    height: 100%;
}

.box-product-vertical .box-content{
    flex: 1;
}

.box-product-vertical .box-content .box-title{
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.box-product-vertical .box-content .box-title .title{
    color: var(--cl-x);
    font-weight: 600;
}

.box-product-vertical .box-content .box-title .view-more{
    color: var(--cl-x);
    font-size: var(--fs-18);
}

.box-product-vertical .box-content .excerpt table{
    width: 100% !important;
}

.box-product-vertical .box-content .excerpt table th{
    background-color: var(--cl-x);
    color: #fff;
    padding: 0.5rem;
}

.box-product-vertical .box-content .excerpt table td{
    border-width: 1px;
    padding: 0.5rem;
}


.box-product-connector .title{
    font-size: 1.5rem;
    color: var(--cl-x);
    font-weight: 600;
}


.form-search-file-product .group-search{
    display: flex;
    border-bottom: 1px solid var(--cl-x);
}

.form-search-file-product button{
    background-color: transparent;
    border: 0;
    box-shadow: 0;
    color: var(--cl-x);
}

.form-search-file-product input{
    border: 0;
    outline: none;
    font-style: italic;
}

.form-search-file-product select{
    height: 2rem;
    border: 1px solid #C4CACC;
    background: #EFEFEF;
}


#datatables-file th{
    background-color: var(--cl-x);
    color: #fff;
    white-space: nowrap;
}

#datatables-file tbody tr.even td{
    background-color: #EBF7FC !important;
}

#datatables-file_filter{
    display: none;
}

.dataTables_wrapper .dataTables_paginate{
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 1.5rem !important;
    float: unset !important;
    text-align: center !important;
}

.dataTables_paginate .paginate_button{
    width: 2rem !important;
    min-width: unset;
    height: 2rem !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid transparent !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: var(--fs-18);
    color: #9C9C9C !important;
}

.dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    border: 1px solid #9C9C9C !important;
    color: #000 !important;
}


.dataTables_wrapper .dataTables_paginate > span{
    display: flex;
    gap: 6px;
}


.dataTables_paginate .paginate_button i{
    font-size: var(--fs-14);
}


div.fp-watermark {
    display: none;
}