:root{
    --cl-x: #006F9F;
    --cl-y: #FAA634;
    --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-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: 60px;
}

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

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

a{
    text-decoration: none;
    color: #1E1E1E;
}

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-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.5rem;
    font-weight: 500;
    text-align: center;
    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-white{
    background-color: #fff;
    color: var(--cl-x);
    border: 1px solid #fff;
}


.btn-custom.has-icon{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-custom.has-icon .icon{
    width: 1.5rem;
    height: 1rem;
    background-image: url('/templates/images/icon-btn.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: all .3s ease-in-out;
}

.btn-custom.has-icon:hover .icon{
    transform: translateX(0.25rem);
}

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

.block .container-fluid{
    max-width: 1800px;
}

.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-top:before{
    top: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 50%);
}

.bg-cover.has-gradient-bottom: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.75rem;
    padding-bottom: 0.75rem;
    background-color: #fff;
}

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

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

.navbar-fixed{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 1s 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;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: normal;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: var(--cl-x);
    text-transform: uppercase;
}

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

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: var(--cl-y);
}

/*===*/
.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,
.navbar-nav .dropdown-menu .dropdown-item.active{
    background-color: var(--cl-y);
}

.navbar-nav .dropdown-menu .dropdown-item.active a{
    color: #fff;
}

.navbar-nav .toggle-menu{
    margin-left: 0.5rem;
}

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

.logo{
    width: 10.5rem;
    transition: all .3s ease-in-out;
    transform: translateY(-7px);
}

.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: 1px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.25);
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #fff;
}

.box-search-header input::placeholder,
.box-search-header input:focus{
    color: #fff;
}

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

.btn-hotline-header{
    border-radius: 50rem;
    background: var(--cl-grd);
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 500;
}

.navbar-main-top .social-contact .item{
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
}


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

/*banenr-page*/
.banner-page{
    min-height: clamp(14rem, 12rem + 10vw, 24rem);
    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: #fff;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.banner-page .breadcrumb-item + .breadcrumb-item::before{
    content: "";
    width: 1rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    background-image: url('/templates/images/icon-next.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    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: #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: clamp(0.75rem, 0.7rem + 0.25vw, 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;
}


/* Home ============*/
.main-slide{
    overflow: hidden;
    position: relative;
    height: clamp(31.25rem, 28.75rem + 12.5vw, 43.75rem);
}

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

.main-slide-button{
    position: absolute;
    left: 3rem;
    bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}


.main-slide-next,
.main-slide-prev{
    position: unset;
    inset: unset;
    margin: 0;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.56) 100%
    ) !important;
    color: #fff !important;
}


.main-slide-pagination{
    position: unset;
    inset: unset;
    width: 60px;
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    font-weight: 6;
    color: #fff;
    transform: rotate(30deg);
}

.main-slide-pagination .swiper-pagination-current{
    display: inline-block;
    transform: rotate(-30deg);
    font-weight: 700;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.main-slide-pagination .swiper-pagination-total{
    display: inline-block;
    transform: rotate(-30deg);
    font-weight: 700;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    opacity: 0.3;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    left: 10%;
    top: 50%;
    width: 50%;
    z-index: 10;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    font-size: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem);
    color: #fff;
    transition: all 1s ease-in-out;
}

.main-slide .swiper-slide-active .banner-slide{
    opacity: 1;
    transform: translateY(-50%) scale(1);
}


.main-slide .banner-slide h2{
    margin-bottom: 0;
    font-size: clamp(1rem, 0.7rem + 1.5vw, 2.5rem);
}

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


.box-content-main h3{
    margin-bottom: 0.375rem;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    line-height: 1;
}

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

.box-content-main h2 + *{
    margin-top: 0.5rem;
}

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


/*===*/
.box-icon-expertise{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: clamp(1rem, 0.6rem + 2vw, 3rem);
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0px 0px 10.5px #0000001a;
    transition: all .3s ease-in-out;

}

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

.box-icon-expertise .content{
    text-align: center;
    line-height: 1.4;
}

.box-icon-expertise .content .title{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 600;
    color: var(--cl-x);
}


.box-icon-expertise:hover{
    box-shadow: 0px 0px 10.5px rgba(0, 0, 0, 0.4);
}



.environment-slide .swiper-pagination-bullet{
    opacity: 1;
    background-color: #fff;
}

.environment-slide .swiper-pagination-bullet-active{
    outline: 2px solid #fff;
    outline-offset: 2px;
}


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

/*===*/
.box-blog{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.5rem;
    border-radius: 0.75rem;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
      );
}

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

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

.box-blog .title{
    margin-bottom: 0;
    font-size: 1rem;
    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{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
}

.box-blog .box-meta{
    position: absolute;
    top: 0;
    left: -0.5rem;
    padding: 1.25rem 1rem 0.25rem 0.5rem;
    transform: translateY(-100%);
    position: absolute;
    background-color: #E0731F;
    color: #fff;
    clip-path: url('#clip-path-date');
    font-size: var(--fs-18);
    font-weight: 700;
    line-height: 1;
}


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


/*===*/
.grid-layout{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
    width: 100%;
}

.grid-layout .item{
    display: flex;
    border-radius: 0.5rem;
    overflow: hidden;
}

.grid-layout .item:nth-child(1) {
    grid-row: 1 / span 2;
}

.grid-layout .item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.grid-layout .item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.grid-layout .item:nth-child(4) {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.grid-layout .box-thumbnail{
    width: 100%;
    height: inherit;
}



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

.footer-center{
    padding-bottom: 3rem;
}

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

.footer a:hover{

}

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

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

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    color: var(--cl-x);
    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 + li{
    margin-top: 0.5rem;
}

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

.list-menu-footer{
    justify-content: center;
}

.list-menu-footer .nav-link{
    color: #fff;
}

.list-menu-footer .nav-link i{
    font-size: 6px;
    vertical-align: middle;
    margin-right: 0.5rem;
}


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

.social-contact .item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cl-x);
    font-weight: 500;
}

.social-contact .item .icon{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--cl-x);
    border-radius: 50%;
    color: var(--cl-x);
    font-size: var(--fs-24);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 0.75rem;
    font-weight: 900;
}

.social-contact .item > *{
    color: inherit;
}

.social-contact-footer .item .icon:hover{
    animation: scale-icon 0.5s;
}

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

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    text-align: center;
    color: var(--cl-x);
}

.coppyright a{
    color: inherit;
}



/*=== Page About*/

.box-icon-counter{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) 1rem;
    border-radius: clamp(0.5rem, 0.4rem + 0.5vw, 1rem) clamp(0.5rem, 0.4rem + 0.5vw, 1rem) 0 clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    background-color: var(--cl-x);
    color: #fff;
    line-height: 1;
}


.box-icon-counter .label-counter{
    font-size: var(--fs-20);
    font-weight: 700;
}


/*===*/
.box-core-value{
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding: 2rem 2rem 2rem 0;
    background-color: var(--bg-box);
    border-radius: 0.5rem;
    color: #fff;
    overflow: hidden;
}

.box-core-value .title{
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    font-weight: 700;
}

.box-core-value .number-cover{
    -webkit-text-stroke: 2px transparent;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(6rem, 5.6rem + 2vw, 8rem);
    color: var(--bg-box);
    font-weight: 700;
    line-height: 1;
    margin-left: calc(-1 * clamp(1rem, 1.6rem + -0.5vw, 1.5rem));
    margin-bottom: -3.5rem;
    min-width: 74px;
    display: flex;
    justify-content: flex-end;
}


/*===*/
.culture-slide{
    height: clamp(20rem, 19rem + 5vw, 25rem);
    border-radius: 0.5rem;
}

.box-content-culture{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(1rem, 0.8rem + 1vw, 2rem) clamp(1rem, 0.8rem + 1vw, 2rem) 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
    background: linear-gradient(0deg, #006f9f 0%, rgba(0, 111, 158, 0) 100%);
    color: #fff;
}

.culture-slide-thumb{
    height: clamp(5rem, 4.4rem + 3vw, 8rem);
}

.culture-slide-thumb .swiper-slide {
    filter: brightness(0.6);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all .3s ease;
}

.culture-slide-thumb .swiper-slide-thumb-active {
    filter: brightness(1);
}


.culture-button-prev,
.culture-button-next{
    position: relative;
    inset: unset;
    margin: 0;
    width: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

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

.culture-button-prev{
    background-image: url('/templates/images/icon-prev.svg');
}

.culture-button-next{
    background-image: url('/templates/images/icon-next.svg');
}


/*=== Page Product*/
.box-icon-technology{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background-color: #fff;
    border: 1px solid #ebedf0;
    border-radius: 1rem;
    transition: all .3s ease;
}

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

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

.box-icon-technology .content .title{
    font-size: var(--fs-18);
    font-weight: 700;
}

.box-icon-technology .content .sub-title{
    color: #B3B3B3;
}

.box-icon-technology:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/*===*/
.box-development{
    position: relative;
    --cl-box: linear-gradient(45deg, #200098 0%, #a904f8 100%);
}

.box-development .box-development-wrapper{
    padding: 25%;
}

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


.box-development .box-number{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--cl-box);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    color: #fff;
    font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    font-weight: 700;
}

.box-development .box-content{
    position: absolute;
    left: 50%;
    width: max-content;
    max-width: 280px;
    transform: translate(-50%, 40%);
    text-align: center;
    line-height: normal;
}

.box-development.odd .box-content{
    top: 0;
    transform: translate(-50%, -140%);
}


.box-development .box-content h3{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
}


.box-development:after{
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 8px;
    background: var(--cl-box);
    -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-development.odd:after{
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.box-development.even:after{
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.box-development .dot-circle{
    width: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    height: clamp(2.5rem, 2.4rem + 0.5vw, 3rem);
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transform: translate(-50%, -50%);
}

.box-development .dot-circle-2{
    right: 0;
    transform: translate(50%,-50%);
}


.box-development-2{
    --cl-box: linear-gradient(45deg, #FF4F00 0%, #FFAF03 100%);
}

.box-development-3{
    --cl-box: linear-gradient(45deg, #018FFD 0%, #03D3D7 100%);
}

.box-development-4{
    --cl-box: linear-gradient(45deg, #2BC108 0%, #ECD704 100%);
}


/*=== Page Recruitment*/
.box-icon-wcu{
    display: flex;
    gap: 0.75rem;
}

.box-icon-wcu .icon{
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background-color: rgba(250, 166, 52, 0.4);
}

.box-icon-wcu .title{
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/*===*/
.box-recruitment{
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #C4C4C4;
    border-radius: 1rem;
}

.box-recruitment .meta{
    display: flex;
    gap: 1rem;
    font-weight: 600;
}

.box-recruitment .description{
    max-height: 300px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}



/*=== Page Review*/
.box-content-review{
    position: relative;
    padding: 4rem 4rem 4rem 10rem;
}

.box-content-review:before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #F6F6F6;
    clip-path: url('#clip-path-content-review');
}

.box-content-review:after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-color: var(--cl-x);
    transform: translate(10px, 2px);
    clip-path: url('#clip-path-content-review');
}


.box-content-review .title{
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    font-weight: 700;
    color: var(--cl-x);
}

.box-content-review .position{
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    font-weight: 700;
    color: var(--cl-x);
}





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

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

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

.contact-information li{
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.contact-information li .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);
    border-radius: 50%;
    background-color: var(--cl-x);
    color: #fff
}