:root{
    --bgpa: #d32b34cc;
    --bgpaa: #d32b3477;
    --bgp: #d32b34;
    --gct: #85868c;
    --gcta: #85868ccc;
    --black: #2f2f2f;
    --blacka: #2f2f2fcc;
    --white: #fafafa;
    --whitea: #fafafa77;
}
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
    font-family: 'Arial Narrow', Arial, Helvetica, sans-serif;
    /* overflow-x: hidden; */
}

html, body {
    min-height: 100vh; /* Body setinggi layar */
    display: flex;
    flex-direction: column; /* Mengatur layout vertikal */
}

main {
    flex: 1; /* Membuat konten fleksibel */
    background-color: var(--white);
}

footer {
    background-color: var(--bgp);
}


.fs-125{
    font-size: 1.25rem;
}
.fs-15{
    font-size: 1.5rem;
}
.fs-2{
    font-size: 2rem;
}
.fs-25{
    font-size: 2.5rem;
}
.fs-3{
    font-size: 3rem;
}
.fw-bold{
    font-weight: bold;
}

.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.text-justify{
    text-align: justify;
}

.gmt{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    grid-template-areas: 'media text';
}
.gmt.swap{ 
    grid-template-areas: 'text media';
}
.gmt-text{
    grid-area: text;
}
.gmt-media{
    grid-area: media;
}

.head-img{
    position: relative;
    height: 75vh;
    overflow: hidden;
}
.head-img img{
    width: 100%;
    height: auto;
    max-height: 100%;
}
.head-img .text{
    position: absolute;
    color: white;
    padding: 0.5rem;
    border-bottom: 3px solid red;
    bottom: 10%;
    left: 5%;
    font-size: 2.5rem;
}

.line-start{
    width: 3px;
    height: 4rem;
    background-color: var(--bgp);
    margin: 0 auto 3rem;
}

.img-fs{
    position: fixed;
    top: 0;
    bottom: 100%;
    left: 0;
    right: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    overflow: hidden;
    transition: 0.5s;
}
.img-fs.active{
    bottom: 0;
    right: 0;
}
.img-fs .close-fs{
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}
.img-fs .close-fs svg{
    fill: white;
    width: 1rem;
}
.img-fs img{
    max-height: 95%;
    max-width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-gradient{
    display: block;
    padding: 0.5rem 1rem;
    background-image: linear-gradient(90deg, var(--bgp), transparent);
    color: white;
    width: 100%;
    text-shadow: none;
}
.head-sm{
    font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
    color: var(--black);
    font-size: 25px;
    font-weight: bold;
}
.head-md{
    font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
    color: var(--black);
    font-size: 30px;
    font-weight: bold;
}
.head-md-red{
    font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
    color: var(--bgp);
    font-size: 30px;
    font-weight: bold;
}
.head-lg{
    font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
    color: var(--bgp);
    font-size: 60px;
    font-weight: bold;
}

/* header */

.nav-position{
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}
.nav-position::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    top: 100%;
    left: 0;
    background: linear-gradient(white, rgba(255, 255, 255, 0));
}
.nav-position.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.head{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10% 0;
    z-index: 999;
    background-color: white;
}

.head .logo img{
    height: 3rem;
}

.head .contact{
    text-align: right;
    color: var(--gct);
    font-style: italic;
}
.head .contact span{
    font-style: normal;
    display: block;
    margin-top: 0.3rem;
}
.head .contact .head-email{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--bgp);
    margin-top: 0;
}

#hamburger, #close{
    display: none;
    color: var(--bgp);
    background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;

}
/* header end */

/* navbar */
.navbar{
    padding: 1rem 10% 0.5rem;
    z-index: 99;
    background-color: white;
    transition: 0.75s;
}
.navbar .menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.navbar .menu .menu-list{
    position: relative;
}
.navbar .menu .menu-list a{
    text-decoration: none;
    color: var(--black);
    font-size: 1.15rem;
    font-weight: bold;
    transition: 0.5s;
    letter-spacing: 1px;
}
.navbar .menu .menu-list a:hover, .navbar .menu .menu-list a.active{
    color: var(--bgp);
    letter-spacing: 3px;
}
.navbar .menu .menu-list.dropdown .dropdown-menu{
    position: absolute;
    top: 100%;
    right: 0;
    overflow: hidden;
    background-color: white;
    list-style: none;
    padding: 0;
    min-width: 200px;
    max-height: 0;
    transition: 0.5s;
    z-index: 1000;
}
.navbar .menu .menu-list.dropdown .dropdown-menu .menu-list{
    margin-bottom: 1rem;
}
.navbar .menu .menu-list.dropdown .dropdown-menu .menu-list:last-child{
    margin-bottom: 0;
}
.navbar .menu .menu-list.dropdown:hover .dropdown-menu, .dropdown-menu:hover{
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem 0.5rem;
    max-height: none;
}

.navbar a::after{
    content: '';
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 0.15rem solid var(--bgp);
    transform: scaleX(0);
    transition: 0.2s linear;
}

.navbar a.active::after{
    transform: scaleX(1.2);
}

/* navbar end */

/* section 1 */

/* carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    height: 35rem;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    max-width: 100%; /* 100% * 5 slides */
}

.slide {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.text-section {
    position: absolute;
    left: 5rem;
    top: 7rem;
    color: black;
    /* background-color: rgba(0, 0, 0, 0.308); */
    padding: 20px;
    max-width: 350px;
    z-index: 1;
}
.text-section.color-white{
    color: var(--white);
}

.text-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    overflow-x: hidden;
}

.text-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.text-section .btn {
    display: flex;
    background-color: var(--bgp);
    color: white;
    padding: 10px 20px;
    text-wrap: nowrap;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    width: 8rem;
    font-size: 1rem;
}

.slide img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
}

.slide.img-right .text-section {
    left: 5rem;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    /* background-color: rgba(0, 0, 0, 0.308); */
    padding: 20px;
    max-width: 100%;
    z-index: 1;
}

.slide.img-right h1{
    font-size: 4rem;
    text-shadow: 3px 3px 5px orange;
}
.slide.img-right p{
    font-weight: bold;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: rgba(211, 211, 211, 0.8);
    border: none;
    cursor: pointer;
    font-size: 50px;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    border: 1px solid lightgray;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active, .dot:hover {
    background-color: lightgray;
}
/* carousel end */
/* section 1 end */

/* section 2  */
.section2{
    padding: 5rem 10%;
    text-align: center;   
}

.section2 .welcome{
    margin-bottom: 3rem;
}
.section2 .welcome .img-text{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bgp);
    margin-bottom: 1rem;

} 
.section2 .welcome .img-text img{
    height: 50pt;
}
.section2 .welcome .main-gradient{
    margin-top: 1rem;
    text-align: left;
    padding: 1rem;
}


.section2 .video{
    margin-bottom: 3rem;
}


.section2 .corporate-info{
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 5rem;
}
.section2 .corporate-info .media{
    overflow: hidden;
    padding: 1.5rem 0;
    height: 20rem;
    width: 20%;
    background-image: linear-gradient(var(--bgp) 40%, transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-radius: 15px 15px 0 0;
    transition: 0.5s ease;
}
.section2 .corporate-info .media:hover{
    transform: translateY(-5%);
}
.section2 .corporate-info .media svg{
    fill: white;
    width: 5rem;
}
.section2 .corporate-info .media .fs-2{
    margin-top: 1rem;
}
.section2 .corporate-info .media .head-sm{
    display: block;
    margin-top: 1rem;
    color: var(--white);
}


.section2 .principle{
    display: flex;
    justify-content: space-between;
    align-items: center;   
}

.section2 .principle-item{
    /* padding: 2rem; */
    text-align: center;
    color: var(--bgp);
    transition: 0.5s;
    
}
.section2 .principle-item p{
    color: var(--gct);
    margin-top: 1rem;
    line-height: 1.5rem;
}
.section2 .principle-item .fs-2{
    margin-top: 1rem;
}
/* section 2 end */

/* section 3 */
.section3{
    background-color: white;
    padding: 3rem 10%;
}

.section3 .our-product{
    position: relative;
    text-align: right;
    
}
.section3 .our-product img{
    max-height: 75vh;
}
.section3 .our-product .text{
    position: absolute;
    text-align: left;
    top: 25%;
    left: 0;
}
.section3 .our-product .text .main-gradient{
    font-size: 1rem;
}


.section3 .product-section{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.section3 .product-section .product-type{
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 25rem;
    transition: 0.5s ease;
}
.section3 .product-section .product-type:hover{
    transform: translateY(-8%);
}
.section3 .product-section .product-type .img-product{
    width: 100%;
    height: 100%;
    opacity: 0.75;
    /* transition: 0.5s ease; */
}
.section3 .product-section .product-type .text-product{
    position: absolute;
    padding: 1rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--bgp);
    background-image: linear-gradient(to top, rgba(250, 250, 250), transparent);
    cursor: pointer;
    overflow: hidden;
    /* transition: 0.5s ease; */
}
.section3 .product-section .product-type .text-product .text{
    font-size: 1.5rem;
    font-weight: 550;
    position: absolute;
    bottom: 10%;
    left: 5%;
    letter-spacing: 5px;
    /* transition: 0.5rem; */
}
.section3 .product-section .product-type:hover .text-product{
    color: var(--white);
    background-image: linear-gradient(to top, rgba(211, 43, 52, 0.75) 30%, transparent);
}
.section3 .product-section .product-type .text-product::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 15%;
    background-image: linear-gradient(to top, white 25%, transparent);
    z-index: 3;
}
.section3 .product-section .product-type:hover .img-product{
    opacity: 0.75;
}
/* section 3 end */

/* section 4 */
.section4{
    padding: 5rem 10%;
}

.section4 .why-us{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}
.section4 .why-us i{
    color: var(--bgp);
    font-size: 3rem;
}
.section4 .why-us .fs-15{
    color: var(--black);
    margin: 1rem 0;
}
.section4 .why-us p{
    color: var(--gct);
    font-size: 1.1rem;
}



/* section 4 end */

/* section 5  */
.section5{
    padding: 3rem 10%;
}

.section5 .main-process{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.section5 .main-process .process-detail{
    padding: 2rem;
    border: 2px solid lightgray;
    transition: 0.75s;
}
.section5 .main-process .process-detail:hover{
    background-color: var(--bgp);
}
.section5 .main-process .process-detail .number{
    color: var(--bgp);
    font-size: 3rem;
    font-weight: bold;
    transition: 0.75s;
    font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
}
.section5 .main-process .process-detail:hover .number{
    color: rgba(255, 255, 255, 0.5);
}
.section5 .main-process .process-detail .fs-15{
    margin: 1rem 0;
    color: var(--black);
    transition: 0.75s;
}
.section5 .main-process .process-detail:hover .fs-15{
    color: white;
}
.section5 .main-process .process-detail p{
    color: var(--gct);
    line-height: 1.75rem;
    font-size: 1.2rem;
    transition: 0.75s;
}
.section5 .main-process .process-detail:hover p{
    color: lightgray;
}
/* section 5 end */

/* section 6 */
.section6{
    padding: 3rem 10% 5rem 10%;
}

.partners-section{
    margin-top: 3rem;
    padding: 0.25rem 0;
    height: 9rem;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0),
        rgba(0,0,0,1) 3%,
        rgba(0,0,0,1) 97%,
        rgba(0,0,0,0)
    );
}

.partners-wrapper{
    margin-inline: auto;
    position: relative;
    height: 8rem;
    width: calc(8*15rem);
}
.partners-wrapper .logo{
    position: absolute;
    height: 6rem; 
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 100%;   
    
    animation-name: scrollLeft;
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    border-radius: 10px;
    animation-play-state:running;
}
.partners-wrapper:hover .logo{
    animation-play-state: paused;
}
  
.partners-wrapper .logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@keyframes scrollLeft{
    to{
      left: -5rem;
    }
}
  
.partners-wrapper .logo.logo1{
    animation-delay: calc(25s / 8 * (8 - 1) * -1);
}
.partners-wrapper .logo.logo2{
    animation-delay: calc(25s / 8 * (8 - 2) * -1);
}
.partners-wrapper .logo.logo3{
    animation-delay: calc(25s / 8 * (8 - 3) * -1);
}
.partners-wrapper .logo.logo4{
    animation-delay: calc(25s / 8 * (8 - 4) * -1);
}
.partners-wrapper .logo.logo5{
    animation-delay: calc(25s / 8 * (8 - 5) * -1);
}
.partners-wrapper .logo.logo6{
    animation-delay: calc(25s / 8 * (8 - 6) * -1);
}
.partners-wrapper .logo.logo7{
    animation-delay: calc(25s / 8 * (8 - 7) * -1);
}
.partners-wrapper .logo.logo8{
    animation-delay: calc(25s / 8 * (8 - 8) * -1);
}

/* section 6 end */

/* footer */
.footer{
    display: flex;
    
    gap: 2rem;
    padding: 3rem 5%;
    background-image: url(../img/footer.jpeg);
    background-position: bottom;
    background-repeat:no-repeat;
    position: relative;
    border-top: 2px solid lightgray;
}

.footer-head{
    width: 35%;
    text-align: center;
}
.footer-head img{
    width: 80%;
    margin-bottom: 1rem;
}
.footer-head .footer-map{
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 10px;
    overflow: hidden;
}
.footer-body{
    width: 65%;
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    justify-content: end;
    padding-top: 2rem;
}
.footer-body .navigation{
    margin-right: 5rem;
}
.footer-body .navigation .navigation-head{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.footer-body .navigation .navigation-body{
    display: flex;
    flex-direction: column;
}
.footer-body .navigation .navigation-body a{
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: 0.5s ease;
}
.footer-body .navigation .navigation-body a:hover{
    color: var(--black);
}
.footer-body .text{
    padding-right: 5%;
    text-align: left;
}
.footer-body .text p {
    margin-bottom: 1rem;
}
.footer-body .text a {
    display: inline-block;
    color: var(--bgp);
    background-image: linear-gradient(to right, var(--white), transparent);
    width: 100%;
    padding: 0.25rem 0.5rem;
    font-weight: bold;
}

/* .footer-head{
    color: white;
    text-align: center;
    padding: 0 1rem;
}
.footer-head img{
    width: 80%;
    margin-bottom: 1rem;
}
.footer-head .fs-15{
    display: block;
}

.footer-map{
    width: 100%;
    aspect-ratio: 1.5/1;
    border-radius: 20px;
    overflow: hidden;
}

.footer-contact{
    color: white;
    text-align: center;
    align-self: center;
}
.footer-contact .text{
    margin-bottom: 3rem;
}
.footer-contact .text h3{
    margin-bottom: 0.5rem;
}
.footer-contact a{
    color: white;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 1rem 2rem;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    transition: 1s;
}
.footer-contact a:hover{
    background-color: rgba(0, 0, 0, 0.2);
} */
/* footer end */


.head-page{
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
.head-page img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.head-page .gradient{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right : 0;
    background-image: radial-gradient(farthest-corner at 95% 5%, rgba(255, 255, 255, 0.25), var(--white) 60%);
}
.head-page .gradient.left{
    background-image: radial-gradient(farthest-corner at 5% 5%, rgba(255, 255, 255, 0.25), var(--white) 60%);
}
.head-page .page-text{
    position: absolute;
    left: 10%;
    top: 15%;
    color: var(--black);
    font-weight: bold;
}
.head-page .page-text .text-head{
    font-size: 1.5rem;
    margin-top: 0.5rem;
}
.head-page .page-text .text-head span{
    font-size: 3rem;
    color: var(--bgp);
}

/* about us page */

.vidtext{
    padding: 0 10% 3rem;
}

.vidtext .text{
    color: var(--black);
}
.vidtext .text .text-lg{
    font-size: 2rem;
    text-align: right;
}
.vidtext .text .text-lg p{
    display: inline-block;
    font-weight: bold;
    line-height: 2.5rem;
    margin: 5rem 0 5rem 40%;
}
.vidtext .text .text-sm p{
    display: inline-block;
    margin: 0 50% 1rem 0;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.our-history{
    padding: 5rem 10%;
}
.main-history{
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}
.main-history::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 10%;
    background-image: linear-gradient(to left, var(--white), transparent);
}
.main-history .history-wrapper{
    display: inline-flex;
    transition: 1s ease;
}
.main-history .history-wrapper .history{
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    margin-left: 5%;
}
.main-history .history-wrapper .history .history-img{
    width: 100%;
    aspect-ratio: 2/1;
    overflow: hidden;
}
.main-history .history-wrapper .history .history-img img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.main-history .history-wrapper .history .history-content{
    padding: 1rem 0;
}
.main-history .history-wrapper .history .history-content .history-year{
    position: relative;
    font-size: 1.5rem;
    color: var(--bgp);
    font-weight: bold;
    z-index: 0;
}
.main-history .history-wrapper .history .history-content .history-year::before{
    content: '';
    position: absolute;
    height: 2px;
    right: 0;
    left: 0;
    background-color: var(--gct);
    top: 50%;
    transform: translateY(-50%);
}
.main-history .history-wrapper .history .history-content .history-year .year{
    position: relative;
    display: inline-block;
    background-color: var(--white);
    padding-right: 0.5rem;
    z-index: 1;
}
.main-history .history-wrapper .history .history-content .history-text{
    margin-top: 0.5rem;
    color: var(--gct);
    text-align: justify ;
}
.main-history .history-wrapper .history .history-content .history-text .history-head{
    font-size: 1.25rem;
    color: var(--black);
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.main-history .righth, .main-history .lefth{
    position: absolute;
    display: block;
    color: var(--gct);
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    z-index: 1;
    cursor: pointer;
}
.main-history .righth.hidden, .main-history .lefth.hidden{
    display: none;
}
.main-history .righth{
    right: 0;
}
.main-history .lefth{
    left: 0;
}


.our-certifications{
    padding: 0 0 5rem;
    background-image: url(../img/slide-3.jpeg);
    background-repeat: no-repeat;
    background-position: 15rem 0;
}
.our-certifications .gradient{
    width: 100%;
    height: 100%;
    background-image: radial-gradient(farthest-corner at 100% 5%, rgba(255, 255, 255, 0.25), var(--white) 40%);
}
.our-certifications .certifications{
    padding: 3rem 10%;
    z-index: 3;
}
.our-certifications .certifications .certificate-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.our-certifications .certifications .certificate-wrap .certificate{
    display: flex;
    flex-direction: column;
}
.our-certifications .certifications .certificate-wrap .certificate img{
    width: 100%;
    height: 30rem;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.5);
}
.our-certifications .certifications .certificate-wrap .certificate .text{
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.our-certifications .certifications .certificate-wrap .certificate .text .title{
    font-size: 1.5rem;
    color: var(--bgp);
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.our-certifications .certifications .certificate-wrap .certificate .text .name{
    font-size: 1.25rem;
    color: var(--black);
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.our-certifications .certifications .certificate-wrap .certificate .text .exp-date{
    color: var(--gct);
}

.our-awards{
    padding: 0 0 5rem;
}
.our-awards .head-md, .our-awards .head-md-red{
    padding: 0 10%;
}
.awards-box{
    position: relative;
    display: flex;
    margin: 3rem 5%;
}
.awards-box::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10%;
    background-image: linear-gradient(to top, var(--white), transparent);
    z-index: 5;
}
.awards-box .award-box{
    position: relative;
    width: 20%;
    height: 25rem;
    transition: 0.5s;
    overflow: hidden;
    cursor: pointer;
}
.awards-box:hover .award-box{
    width: 15%;
}
.awards-box .award-box:hover{
    width: 40%;
}
.awards-box .award-box .box-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}
.awards-box .award-box .box-img img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.awards-box .award-box .box-inner{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-size: 1.25rem;
    transition: 0.5s;
    z-index: 1;
}
.awards-box .award-box .box-inner img{
    height: 100%;
    width: 100%;
    object-fit: fill;
}
.awards-box .award-box:hover .box-inner img{
    display: none;
}
.awards-box .award-box .box-inner .box-text{
    position: absolute;
    display: flex;
    background-color: var(--bgpaa);
    align-items: end;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1rem;
    font-weight: bold;
}
.awards-box .award-box:nth-child(even) .box-inner .box-text{
    background-color: var(--gcta);
    align-items: self-start;
}
.awards-box .award-box:hover .box-inner .box-text{
    background-color: transparent;
    align-items: self-start;
}
.awards-box .award-box .box-inner .box-text .text{
    margin: 20% 0;
}
.awards-box .award-box:hover .box-inner .box-text .text{
    margin: 0 2rem;
    color: var(--black);
}
.awards-box .award-box .box-inner .box-text h3{
    font-size: 2rem;
}
.awards-box .award-box:hover .box-inner .box-text h3{
    font-size: 1.5rem;
    color:var(--bgp);
}
.awards-box .award-box:hover .box-inner{
    top: 80%;
}

.our-branches{
    padding: 0 10% 5rem;
}
.branch-cover{
    position: relative;
    width: 100%;
    aspect-ratio: 2/1;
    margin-top: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}
.branch-cover::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background-image: linear-gradient(to top, var(--black), transparent);
}
.branch-cover .branch-full{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: 0.5s;
}
.branch-cover .branch-full.active{
    opacity: 1;
    visibility: visible;
}
.branch-cover .branch-full img{
    width: 100%;
    height: 100%;
}
.branch-cover .branch-full .branch-text{
    position: absolute;
    left: 1%;
    bottom: 5%;
    width: 50%;
    color: var(--white);
    padding: 1rem 2rem;
    letter-spacing: 2px;
    z-index: 3;
    text-shadow: 1px 1px 5px var(--black);
}
.branch-cover .branch-full .branch-text .branch-head{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.branch-cover .branch-small{
    position: absolute;
    width: 40%;
    bottom: 5%;
    right: 5%;
    z-index: 3;
    overflow: hidden;
    padding: 1rem 0;
}
.branch-cover .branch-small::after{
    content: '';
    position: absolute;
    width: 20%;
    bottom: 1rem;
    right: 0;
    top: 1rem;
    background-image: linear-gradient(to left, var(--blacka), transparent);
}
.branch-cover .branch-small .branch-wrap{
    display: inline-flex;
    transition: 1s ease;
}
.branch-cover .branch-small .img-sm{
    width: 35%;
    flex-shrink: 0;
    aspect-ratio: 1.3/1;
    margin-left: 5%;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 0 5px 2px var(--black);
    overflow: hidden;
    cursor: pointer;
    transform: 0.5s ease;
}
.branch-cover .branch-small .img-sm:hover{
    transform: translateY(-5%);
}
.branch-cover .branch-small .img-sm .text{
    position: absolute;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: bold;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 1.15rem;
    background-image: linear-gradient(to top, #2f2f2fee 50%, transparent);
}
.branch-cover .branch-small .img-sm img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.branch-cover .branch-small .rightbr, .branch-cover .branch-small .leftbr{
    position: absolute;
    display: block;
    color: var(--white);
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    z-index: 1;
    cursor: pointer;
}
.branch-cover .branch-small .rightbr.hidden, .branch-cover .branch-small .leftbr.hidden{
    display: none;
}
.branch-cover .branch-small .rightbr{
    right: 0;
}
.branch-cover .branch-small .leftbr{
    left: 0;
}

/* about us page end */


/* products page */
    .head-page.products-page .page-text{
        right: 10%;
        top: unset;
        bottom: 20%;
        text-align: right;
    }
    .main-harness{
        padding: 5rem 10%;
    }
    .main-title{
        text-align: center;
    }
    .main-title .head-md-red, .main-title .head-md{
        display: inline-block;
    }
    .main-car{
        width: 100%;
        aspect-ratio: 2/1;
        overflow: hidden;
        margin-top: 3rem;
    }
    .main-car img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .main-harness .products, .auxiliary-harness .products{
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }
    .main-harness .products .product, .auxiliary-harness .products .product{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 25%;
        height: 75vh;
        padding: 1rem 0;
        border-radius: 15px 15px 0 0;
        overflow: hidden;
        transition: 0.5s;
    }
    .main-harness .products:hover .product{
        width: 20%;
    }
    .main-harness .products .product:hover{
        width: 40%;
    }
    .main-harness .products .product::after, .auxiliary-harness .products .product::after{
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: linear-gradient(to top, transparent, rgba(211, 211, 211, 0.5));
    }
    .main-harness .products .product .product-title, .auxiliary-harness .products .product .product-title{
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--black);
        text-align: center;
        position: relative;
        z-index: 3;
    }
    .main-harness .products .product .product-img, .auxiliary-harness .products .product .product-img{
        height: 100%;
        overflow: hidden;
        display: flex;
        justify-content: start;
        transition: 0.5s;
    }
    .main-harness .products .product .product-img img, .auxiliary-harness .products .product .product-img img{
        height: 100%;
        object-fit: contain;
        transition: 0.5s;
    }
    .main-harness .products .product .product-detail, .auxiliary-harness .products .product .product-detail{
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: 0.5s;
    }
    .main-harness .products .product:hover .product-img, .auxiliary-harness .products .product:hover .product-img{
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .main-harness .products .product:hover .product-img img, .auxiliary-harness .products .product:hover .product-img img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .main-harness .products .product:hover .product-detail, .auxiliary-harness .products .product:hover .product-detail{
        opacity: 1;
        visibility: visible;
        display: block;
        padding: 0.25rem 1rem;
    }

    .auxiliary-harness, .small-harness, .high-voltage-harness{
        padding: 0 10% 5rem;
    }
    .auxiliary-harness .products .product{
        width: calc(100%/3);
    }
    .auxiliary-harness .products:hover .product{
        width: 25%;
    }
    .auxiliary-harness .products .product:hover{
        width: 50%;
    }
    .auxiliary-harness .products .product .product-img{
        aspect-ratio: 1/1.05;
    }
    
    .small-harness .products, .high-voltage-harness .products{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    .small-harness .products .product, .high-voltage-harness .products .product{
        display: flex;
        flex-direction: column;
    }
    .small-harness .products .product .product-img, .high-voltage-harness .products .product .product-img{
        width: 100%;
        aspect-ratio: 1.5/1;
        display: flex;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 0.5rem;
    }
    .small-harness .products .product .product-img img, .high-voltage-harness .products .product .product-img img{
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .small-harness .products .product .product-title, .high-voltage-harness .products .product .product-title{
        font-size: 1.25rem;
        font-weight: bold;
        color: var(--white);
        padding: 0.5rem;
        background-image: linear-gradient(to right, var(--bgp) 50%, var(--white));
        margin-bottom: 1rem;
    }
    .small-harness .products .product .product-title span, .high-voltage-harness .products .product .product-title span{
        display: inline-block;
        width: 80%;
    }

/* products page end */

/* technology page */
.head-page .page-text.bottom{
    left: 10%;
    top: unset;
    bottom: 20%;
}

.rd-capabilities{
    padding: 5rem 10%;
}
.rd-capabilities .head-text{
    text-align: center;
}
.rd-capabilities .head-text .head-md, .rd-capabilities .head-text .head-md-red{
    font-size: 40px;
}

.rd-capabilities .main-text{
    text-align: justify;
    margin-top: 2rem;
}
.rd-capabilities .main-text p{
    margin-top: 1rem;
    font-size: 1.15rem;
}

.technicians{
    padding: 0 15% 5rem; 
}
.technicians-wrap{
    position: relative;
    background-color: rgba(211, 211, 211, 0.3);
    border-radius: 20px 20px 0 0;
    padding: 2rem 2rem 0;
}
.technicians-wrap::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background-image: linear-gradient(to top, var(--white), transparent);
}
.technicians-wrap .technicians-detail{
    text-align: center;
    color: var(--black);
}
.technicians-wrap .technicians-detail p{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}
.technicians-wrap .technicians-detail .number{
    color: var(--bgp);
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
}
.technicians-wrap .technicians-detail .number.lg{
    font-size: 3.5rem;
}
.technicians-wrap .technicians-detail .text{
    font-size: 1.5rem;
    font-weight: bold;
}
.technicians-wrap .technicians-detail svg{
    width: 1.5rem;
    color: var(--black);
}
.technicians-wrap .engineer{
    display: grid;  
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.technicians-wrap .engineer .engineer-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: var(--bgp);
    color: var(--white);
    border-radius: 15px 15px 0 0 ;
    font-weight: bold;
}
.technicians-wrap .engineer .engineer-detail .number{
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}
.technicians-wrap .engineer .engineer-detail .text{
    font-size: 1.5rem;
    margin-bottom: 5rem;
}

.section5 .main-title .head-md, .section5 .main-title .head-md-red, .lab-centre .main-title .head-md, .lab-centre .main-title .head-md-red{
    font-size: 40px;
}

.lab-centre{
    padding: 0 10% 5rem;
}
.lab-centre .lab-img{
    width: 100%;
    aspect-ratio: 2/1;
    margin-top: 3rem;
    overflow: hidden;
}
.lab-centre .lab-img img{
    width: 100%;
    object-fit: cover;
}
.lab-centre .lab-text{
    margin-top: 2rem;
    text-align: justify;
}
.lab-centre .lab-text p{
    display: inline-block;
    font-size: 1.15rem;
    margin-top: 1rem;
}

/* technology page end */


/* client page */
.our-partners{
    padding: 5rem 10%;
}

.partners-wrap{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: end;
}
.partners-wrap .partners{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.partners-wrap .partners .partner{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.partners-wrap .partners .partner .partner-img{
    position: relative;
    padding: 0.5rem 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4/1;
    border-radius: 10px 10px 0 0;
    background-color: rgba(211, 211, 211, 0.4);
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.partners-wrap .partners .partner .partner-img::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background-image: linear-gradient(to top, var(--white), transparent);
}
.partners-wrap .partners .partner .partner-img img{
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.partners-wrap .partners .partner .partner-detail{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}
.partners-wrap .partners .partner .partner-detail .country{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.partners-wrap .partners .partner .partner-detail .country .flag{
    width: 2rem;
    aspect-ratio: 2/1;
    overflow: hidden;
    margin-right: 0.5rem;
    box-shadow: 0 0 3px 1px var(--blacka);
}
.partners-wrap .partners .partner .partner-detail .country .flag img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.partners-wrap .partners .partner .partner-detail .text{
    color: var(--black);
}
/* client page end */

/* news page */
.news-wrap{
    padding: 5rem 10%;
}
.news-wrap .news-body{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
} 

.news-wrap .news-body .news{
    border: 1px solid gray;
}
.news-wrap .news-body .news .image{
    width: 100%;
    height: 20rem;
}

.news-wrap .news-body .news .content{
    padding: 1rem;
}
.news-wrap .news-body .news .content a{
    color: black;
}
.news-wrap .news-body .news .content a:hover{
    color: rgb(25, 25, 211);
}
.news-wrap .news-body .news .content .news-title{
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}
.news-wrap .news-body .news .content .date{
    font-weight: lighter;
    color: gray;
    margin-bottom: 0.5rem;
}

.news-wrap .news-body .news .content .text{
    line-height: 1.25rem;
    margin-bottom: 1rem;
}
.news-wrap .news-body .news .content .text{
    line-height: 1.25rem;
    margin-bottom: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-wrap .news-body .news .content .link{
    font-size: 0.9rem;
    padding: 0.25rem 0.4rem;
    border-left: 3px solid red;
    font-weight: bold;
}
.news-wrap .news-body .news .content .link:hover a{
    color: red;
}

/* news page end */

/* career page */
.career-tab{
    padding: 5rem 10%;
}
.career-tab .recruitment{
    text-align: center;
}
.career-tab .recruitment-position{
    margin-top: 2rem;
    padding: 3rem 2.5%;
    background-color: #F7F7F8;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
    text-align: left;
}
.career-tab .recruitment-position .recruit-head{
    background-color: rgb(187, 4, 4);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    display: grid;
    grid-template-columns: 6fr 3fr 2fr 2fr 0.5fr;
    padding: 1rem;
}
.career-tab .recruitment-position .job-list .top-list{
    background-color: var(--white);
    display: grid;
    grid-template-columns: 6fr 3fr 2fr 2fr 0.5fr;
    padding: 1rem;
    cursor: pointer;
}
.career-tab .recruitment-position .job-list .bottom-list{
    background-color:var(--gcta);
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    display: none;
}
.career-tab .recruitment-position .job-list .bottom-list.active{
    display: block;
}
.career-tab .recruitment-position .job-list .bottom-list .detail-position{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1rem;
}
.career-tab .recruitment-position .job-list .bottom-list .require{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2rem;
    margin-bottom: 1rem;
}
/* career page end */

/* contact page */
.contact-us{
    background-color: var(--white);
    display: grid;
    grid-template-columns: 5fr 6fr;
    padding: 5rem 10%;
    gap: 3rem;
}

.contact-us .info-contact .detail-contact{
    padding: 0 1rem;
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--black);
    border-left: 3px solid var(--black);
    margin: 1rem;
}
.contact-us .info-contact .detail-contact .icon{
    padding-right: 1.5rem;
}

.contact-us .info-contact .detail-contact .text{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.contact-us .info-contact .detail-contact .text .head-info{
    font-weight: bold;
    font-size: 1.25rem;
    padding: 0.5rem 0;
}
.contact-us .info-contact .detail-contact .text .detail{
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--bgp);
}

.contact-us .message-form{
    background-color: lightblue;
    width: 100%;
    padding: 3rem;
}

.contact-us .message-form .form{
    margin-top: 1rem;
}
.contact-us .message-form .form span{
    color: red;
}

.form-label{
    margin-bottom: 0.5rem;
    display: inline-block;
    color: #212529; 
}

.form-input {
    display: block;                    
    width: 100%;                       
    padding: 0.375rem 0.75rem;         
    font-size: 1rem;                   
    line-height: 1.5;                  
    color: #495057;                   
    background-color: #fff;           
    border: 1px solid black;  
}

.form-input:focus {         
    background-color: #fff;                 
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); 
}

.btn-submit{
    display: inline-block;
    background-color: #0d6efd;
    color: white;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    margin-top: 1rem;
}
/* career page end */

/* contact page */

/* contact page end */

/* media responsive */
/* tablet */
@media (max-width: 768px) {
    html{
        font-size: 85%;
    }
    html, body{
        overflow-x: hidden;
    }
    body{
        width: 100vw;;
    }

    .head-img{
        height: 30rem;
    }
    .head-img img{
        height: 100%;
    }

    .gmt, .gmt.swap{
        grid-template-columns: 1fr;
        grid-template-areas: 'media' 'text';
    }
    .head-sm{
        font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
        color: var(--black);
        font-size: 20px;
        font-weight: bold;
    }
    .head-lg{
        font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
        color: var(--bgp);
        font-size: 45px;
        font-weight: bold;
    }

    
    .head{
        padding: 1rem 5%;
    }

    #hamburger{
        display: inline-block;
    }
    .contact{
        display: none;
    }


    .carousel-container {
        background-color: var(--black);
        height: 35rem;
    }
        
    .text-section {
        left: 10%;
        top: unset;
        bottom: 5%;
        transform: translateY(0);
        color: black;
        text-shadow: 1px 0 5px var(--white);
        width: 50%;
        padding: 20px;
        z-index: 1;
    }
    
    .slide.img-right .text-section {
        background-color: transparent;
    }   
    .slide.img-right img {
        object-position: right;
    }   
    
    .slide.img-right h1{
        font-size: 3rem;
    }
    .slide.img-right p{
        font-weight: bold;
    }
    
    .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        color: rgba(211, 211, 211, 0.8);
        border: none;
        cursor: pointer;
        font-size: 50px;
        z-index: 2;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }

    .navbar{
        padding-top: 10rem;
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
    }
    .navbar.active{
        right: 0;
    }

    .navbar .menu{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: start;
        list-style: none;
    }
    .navbar .menu .menu-list{
        margin: 1rem 0;
    }
    .navbar .menu .menu-list a{
        font-size: 1.5rem;
    }
    .navbar .menu .menu-list.dropdown{
        margin: 0;
        padding: 0;
    }
    .navbar .menu .menu-list.dropdown .menu{
        display: none;
    }
    .navbar .menu .menu-list.dropdown .dropdown-menu{
        position: relative;
        top: unset;
        right: unset;
        padding: 0;
        min-width: auto;
        max-height: 100%;
    }
    
    .navbar .menu .menu-list.dropdown .dropdown-menu .menu-list{
        margin: 1rem 0 2rem;
    }
    .navbar .menu .menu-list.dropdown .dropdown-menu .menu-list:last-child{
        margin: 1rem 0;
    }
    .navbar .menu .menu-list.dropdown:hover .dropdown-menu, .dropdown-menu:hover{
        box-shadow: none;
        padding: 0;
    }

    .navbar a::after{
        transform-origin: 0 0 ;
    }

    /* slide */
    /* .carousel-container {
        height: 30rem;
    }
    .slide img {
        height: 30rem;
    }

    .text-section {
        padding: 5px 10px;
        bottom: 1.25rem;
        left: 3%;
        right: 3%;
        top: unset;
        color: white;
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.4);
        display: grid;
        grid-template-columns: 3fr 1fr;
        grid-template-areas: 
            'header button'
            'text button';
        align-items: center;
        gap: 0.5rem;
    }

    .slide.img-right .text-section {
        left: 3rem;
        background-color: transparent;
        display: block;
    }
    
    .slide.img-right h1{
        font-size: 3rem;
        text-shadow: 3px 3px 5px orange;
    }
    .slide.img-right p{
        font-size: 1.25rem;
        font-weight: bold;
    }
    .slide.img-right .text-section .btn {
        max-width: 8.5rem;
    }
    
    .text-section h1 {
        grid-area: header;
    }
    
    .text-section p {
        grid-area: text;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .text-section .btn {
        grid-area: button;
        height: 3rem;
        align-items: center;
        width: 100%;
    } */
    /* slide end*/

    .section2, .section3, .section4, .section5, .section6{
        padding: 3rem 5%;
    }

    .section2 .corporate-info .media{
        overflow: hidden;
        padding: 1.5rem 0;
        height: 15rem;
        width: 20%;
        background-image: linear-gradient(var(--bgp) 40%, transparent);
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        border-radius: 15px 15px 0 0;
        transition: 0.5s ease;
    }
    .section2 .corporate-info .media:hover{
        transform: translateY(-5%);
    }
    .section2 .corporate-info .media svg{
        fill: white;
        width: 4rem;
    }
    .section2 .corporate-info .media .fs-2{
        margin-top: 1rem;
        font-size: 1.75rem;
    }
    .section2 .corporate-info .media .head-sm{
        display: block;
        margin-top: 1rem;
        color: var(--white);
    }



    .section3 .our-product img{
        max-height: 50vh;
    }
    .section3 .our-product .text{
        top: 15%;
    }
       
    .section3 .product-section{
        gap: 1rem;
    }
    .section3 .product-section .product-type:hover .text-product::after{
        content: none;
    }

    .section4 .engineer-section .detail{
        padding: 1.5rem 0.5rem;
        height: 18rem;
    }

    .section5{
        padding: 3rem 5%;
    }
    .section5 .main-process{
        grid-template-columns: repeat(2, 1fr);
    }

        /* .footer{
            display: grid;
            grid-template-columns: 1fr;
        }
        
        .footer-head img{
            width: 50%;
            margin-bottom: 1rem;
        }
        
        .footer-map{
            height: 20rem;
            margin: 0 5%;
        } */
        .footer-head{
            width: 35%;
        }
        .footer-body{
            width: 65%;
        }
        .footer-body .navigation{
            margin-right: 4rem;
        }


    .head-page .page-text{
        left: 5%;
    }
    .head-page.products-page .page-text{
        right: 5%;
    }
    .head-page .page-text.bottom{
        left: 5%;
    }
    


    /* about us */
    .head-page{
        height: 30vh;
    }
        
    .vidtext{
        padding: 0 5% 3rem;
    }
    
    .vidtext .text .text-lg p{
        margin: 5rem 0 5rem 20%;
    }
    .vidtext .text .text-sm p{
        margin: 0 20% 1rem 0;
    }
    
    .our-history{
        padding: 0 5% 5rem;
    }
    .main-history .history-wrapper .history{
        margin-left: 0;
        margin-right: 5%;
    }
    
    .our-certifications .certifications{
        padding: 3rem 5%;
        z-index: 3;
    }
    .our-certifications .certifications .certificate-wrap .certificate img{
        height: 23rem;
    }
        
    .our-awards{
        padding: 0 0 5rem;
    }
    .our-awards .head-md, .our-awards .head-md-red{
        padding: 0 5%;
    }
    .awards-box{
        margin: 3rem 0;
    }
    
    
    .our-branches{
        padding: 0 5% 5rem;
    }
    .branch-cover{
        aspect-ratio: 1/1;
    }
    .branch-cover .branch-full .branch-text{
        width: 40%;
    }
    .branch-cover .branch-full .branch-text .branch-head{
        font-size: 1.5rem;
    }
    .branch-cover .branch-small{
        width: 50%;
    }


    /* product */
    .main-harness{
        padding: 5rem 5%;
    }
    .auxiliary-harness, .small-harness, .high-voltage-harness{
        padding: 0 5% 5rem;
    }
    .small-harness .products, .high-voltage-harness .products{
        grid-template-columns: repeat(3, 1fr);
    }

    /* technology */
    .rd-capabilities{
        padding: 5rem 5%;
    }
    .technicians{
        padding: 0 5% 5rem; 
    }
    .technicians-wrap .engineer{
        gap: 1rem;
    }
    .section5 .main-title .head-md, .section5 .main-title .head-md-red, .lab-centre .main-title .head-md, .lab-centre .main-title .head-md-red{
        font-size: 40px;
    }
    
    .lab-centre{
        padding: 0 5% 5rem;
    }
    
    
    /* our client */
    .partners-wrap{
        grid-template-columns: 1fr;
    }

    /* news */
    .news-info{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .other-content{
        display: grid;
        gap: 0.5rem;
        grid-template-columns: 1fr 3fr;
        margin-bottom: 1rem;
    }
    .news-wrap .news-body{
        grid-template-columns: 1fr;
    } 

    /* career */
    .job-edu, .job-people{
        display: none;
    }

    .career-tab .recruitment-position .recruit-head{
        grid-template-columns: 6fr 3fr 1fr;
    }
    .career-tab .recruitment-position .job-list .top-list{
        grid-template-columns: 6fr 3fr 1fr;
    }
    .career-tab .recruitment-position .job-list .bottom-list .detail-position{
        grid-template-columns: repeat(2, 1fr);
    }
    

    /* contact */
    .contact-us{
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
    }

    .contact-us .info-contact .detail-contact .text .head-info, .contact-us .info-contact .detail-contact .text .detail{
        font-size: 1.5rem;
    }

    /* career */
    

    /* contact */


}

/* mobile */
@media (max-width: 575px) {
    html{
        font-size: 80%;
    }
    
    .head-img{
        height: 15rem;
    }
    .head-img .text{
        font-size: 2rem;
    }
    .navbar{
        width: 100%;
    }

    .text-section h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .text-section p {
        margin-bottom: 0.5rem;
    }
    
    .text-section .btn {
        padding: 5px 10px;
    }


    .slide.img-right img{
        object-position: right;
    }
    .slide.img-left img{
        object-position: left;
    }

    .text-section {
        width: auto;
        right: 10%;
    }
    .slide.img-right .text-section {
        left: 8%;
        right: 8%;
        top: unset;
        bottom: 5%;
        transform: translateY(0);
        max-width: none;
    }
    .slide.img-right .text-section h1{
        font-size: 2rem;
    }

    .section2 .corporate-info{
        flex-wrap: wrap;
    }
    .section2 .corporate-info .media{
        height: 15rem;
        width: 45%;
    }
        
    .section2 .principle{
        flex-direction: column;
        gap: 3rem;
    }


    .section3 .our-product{
        position: relative;
        text-align: right;
    }
    .section3 .our-product img{
        max-height: 50vh;
    }
    .section3 .our-product .text{
        position: absolute;
        text-align: left;
        top: 5%;
        left: 0;
    }
    .section3 .our-product .text .main-gradient{
        font-size: 1rem;
    }
    
    
    .section3 .product-section{
        grid-template-columns: repeat(2, 1fr);
    }
    .section3 .product-section .product-type{
        height: 20rem;
    }

    .section4 .why-us-text p{
        font-size: 1.15rem;
        letter-spacing: normal;
    }
    .section4 .why-us-text .text-lg{
        flex-wrap: wrap;
        font-size: 1.25rem;
        letter-spacing: normal;
    }
    .section4 .why-us-text .number{ 
        font-size: 1.5rem;
    }
    .section4 .why-us-text .number.lg{
        font-size: 2rem;
    }
    .section4 .why-us-text svg{
        width: 1.25rem;
    }
    
    .section4 .why-us{
        grid-template-columns: repeat(2, 1fr);
    }

    .section4 .engineer-section{
        flex-wrap: wrap;
    }
    .section4 .engineer-section .detail{
        height: 15rem;
        width: 45%;
    }

    .section5 .main-process{
        grid-template-columns: 1fr;
    }

    .section6 .partners-section .partners-wrapper .logo-partner{
        width: calc(90%/2);
        height: 3rem;
        margin-right: 10%;
    }
    
    .footer{
        display: flex;
        flex-direction: column;
        align-items: center;   
        gap: 2rem;
        padding: 3rem 5%;
        background-image: url(../img/footer.jpeg);
        background-position: bottom;
        background-repeat:no-repeat;
        position: relative;
        border-top: 2px solid lightgray;
    }
    
    .footer-head{
        width: 100%;
        text-align: center;
    }
    .footer-head img{
        width: 80%;
    }
    .footer-body{
        width: 100%;
        justify-content: space-between;
        /* flex-direction: column; */
    }
    .footer-body .navigation{
        margin-right: 0;
        margin-bottom: 3rem;
    }
    .footer-body .navigation .navigation-head{
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    .footer-body .navigation .navigation-body{
        display: flex;
        flex-direction: column;
    }
    .footer-body .navigation .navigation-body a{
        color: var(--white);
        margin-bottom: 0.5rem;
        transition: 0.5s ease;
    }
    .footer-body .navigation .navigation-body a:hover{
        color: var(--black);
    }
    .footer-body .text{
        padding-right: 5%;
        text-align: left;
    }
    .footer-body .text p {
        margin-bottom: 1rem;
    }
    .footer-body .text a {
        display: inline-block;
        color: var(--bgp);
        background-image: linear-gradient(to right, var(--white), transparent);
        width: 100%;
        padding: 0.25rem 0.5rem;
        font-weight: bold;
    }

    /* about us */
    .head-page .page-text .text-head{
        font-size: 1.5rem;
    }
    .head-page .page-text .text-head span{
        font-size: 2.25rem;
    }
    
    .vidtext{
        padding: 0 5% 3rem;
    }
    
    .vidtext .text .text-lg p{
        margin: 3rem 0;
    }
    .vidtext .text .text-sm p{
        margin: 0 0 1rem;
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
    
    .our-history{
        padding: 2rem 5%;
    }
    .main-history::after{
        width: 20%;
    }
    .main-history .history-wrapper .history{
        width: 33%;
        margin-right: 2%;   
    }   
        
    .our-certifications{
        padding: 0 0 5rem;
        background-image: none;
    }
    .our-certifications .gradient{
        background-image: none;
    }
    .our-certifications .certifications{
        padding: 3rem 5%;
    }
    .our-certifications .certifications .certificate-wrap{
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .our-certifications .certifications .certificate-wrap .certificate img{
        height: 35rem;
    }
        
    .our-awards{
        padding: 0 0 5rem;
    }
    .our-awards .head-md, .our-awards .head-md-red{
        padding: 0 5%;
    }
    .awards-box{
        flex-wrap: wrap;
        padding-bottom: 1rem;
    }
    .awards-box::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 10%;
        background-image: linear-gradient(to top, var(--white), transparent);
        z-index: 5;
    }
    .awards-box .award-box{
        width: calc(100%/3);
        height: 20rem;
    }
    .awards-box .award-box:nth-child(1), .awards-box .award-box:nth-child(2){
        width: calc(100%/2);
    }
    .awards-box:hover .award-box:nth-child(1), .awards-box:hover .award-box:nth-child(2){
        width: calc(100%/2);
    }
    .awards-box:hover .award-box{
        width: calc(100%/3);
    }
    .awards-box .award-box:hover{
        width: calc(100%/3);
    }
    .awards-box .award-box .box-inner{
        font-size: 1.15rem;
        transition: 0.5s;
        z-index: 1;
    }
    .awards-box .award-box:hover .box-inner .box-text .text{
        margin: 0 1rem;
    }
    .awards-box .award-box .box-inner .box-text h3{
        font-size: 1.5rem;
    }
    .awards-box .award-box:hover .box-inner .box-text h3{
        font-size: 1.15rem;
    }
    
    .branch-cover{
        aspect-ratio: 1/1.5;
    }

    .branch-cover .branch-full .branch-text{
        left: 1%;
        bottom: 20%;
        right: 1%;
        padding: 1rem;
        width: auto;
    }
    .branch-cover .branch-small{
        width: auto;
        bottom: 2%;
        right: 1%;
        left: 1%;
    }
    .branch-cover .branch-small .img-sm{
        aspect-ratio: 1.75/1;
    }
    .branch-cover .branch-small .img-sm .text{
        font-size: 1rem;
        padding: 2%;
        font-weight: normal;
        text-align: center;
    }


    /* Product */
    .main-harness .products .product, .auxiliary-harness .products .product{
        height: 30vh;
    }
    .main-harness .products .product .product-title, .auxiliary-harness .products .product .product-title{
        font-size: 1rem;
    }
    .main-harness .products:hover .product{
        width: 15%;
    }
    .main-harness .products .product:hover{
        width: 55%;
    }
    .small-harness .products, .high-voltage-harness .products{
        grid-template-columns: repeat(2, 1fr);
    }
    .small-harness .products .product .product-title, .high-voltage-harness .products .product .product-title{
        font-size: 1rem;
    }

    /* technology */
    .rd-capabilities .head-text .head-md, .rd-capabilities .head-text .head-md-red{
        font-size: 30px;
    }
    .rd-capabilities .main-text p{
        font-size: 1rem;
    }
    .technicians-wrap .engineer{
        grid-template-columns: repeat(2,1fr);
    }
        
    .section5 .main-title .head-md, .section5 .main-title .head-md-red, .lab-centre .main-title .head-md, .lab-centre .main-title .head-md-red{
        font-size: 30px;
    }
    .lab-centre .lab-text p{
        font-size: 1rem;
    }

    /* our client */
    .partners-wrap .partners{
        grid-template-columns: 1fr;
    }

    /* career */
    .career-tab .recruitment-position .job-list .bottom-list .detail-position{
        grid-template-columns: 1fr;
    }
    .career-tab .recruitment-position .job-list .bottom-list .require{
        grid-template-columns: 1fr;
    }

    /* contact */
    .contact-us .info-contact .detail-contact .text .head-info, .contact-us .info-contact .detail-contact .text .detail{
        font-size: 1.25rem;
    }

    /* contact */
    
    
}