/*======================================*/
/*===== Custom css ditulis di sini =====*/
/*======================================*/


*{
    padding: 0;
    margin: 0;
    /* border: 1px solid red; */
}

:root{
    /* font size */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-normal: 16px; 
    --text-lg: 18px; 
    --text-xl: 20px; 
    --text-2xl: 24px; 
    --text-3xl: 30px; 
    --text-4xl: 36px; 
    --text-5xl: 48px; 
    --text-6xl: 60px; 
    --text-7xl: 72px; 
    --text-8xl: 96px; 
    --text-9xl:128px;

    --hitam: #191919;

    --abu-muda: #F6F6F6;
    --abu-tua: #828282;

    --orange: #FFA201;
    --yellow: #FFCB1B;
    --navy: #00258D;
    --blue: #004BFF;
}
body{
    overflow-x: hidden;
    margin: 0;
    margin-top: 50px;
    font-family: "Open Sans", sans-serif;
}
a{
    text-decoration: none !important;
}
img{
    width: 100%;
}
*, h1, h2, h3, h4, h5, h6, p{
    padding: 0;
    margin: 0;
    /* border: 1px solid red; */
}

/*====================================================*/
/*==================== COMPONENTS ====================*/
/*====================================================*/

.gambar-rounded{
    overflow: hidden;
}
.gambar-rounded img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navy{
    color: var(--navy) !important;
}
.orange{
    color: var(--orange) !important;
}

.button-abu{
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--hitam);
    
    padding: 8px 32px;

    background-color: var(--abu-muda);

    border: none;
    border-radius: 9999px;

    transition: .25s;
}
.button-abu:hover,
.button-abu.active{
    background-color: var(--abu-tua);
    color: #FFFFFF;
}


/*===============*/
/*===== NAV =====*/
/*===============*/
nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;

    width: 100%;
    /* height: 50px; */

    background-color: #0C3D99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

nav .nav-logo{
    width: 12%;
    height: 100%;
    padding: 8px 0;
    /* justify-content: center; */
}
nav .nav-logo img{
    width: 100%;
}

nav .nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;

    height: 100%;
    width: 100%;

    padding: 0 48px;
}
.nav-button{
    display: none;
}

.nav-links{
    position: relative;

    list-style:none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    width: 60%;

    transition: .25s ease-out;
}
.nav-links .button-close{
    display: none;

    position: absolute;
    top: 20px;
    right: 32px;

    width: 48px;
}

.nav-links a {
    justify-content: center;
    padding: 8px 8px;
}


.nav-links a img{
    width: 100%;
    transition: transform 0.3s ease;
}

.nav-links a img:hover{
    transform: scale(1.05);
}

.backdrop{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    background-color: #191919;
    opacity: 0;
    pointer-events: none;
}



/*==================*/
/*===== FOOTER =====*/
/*==================*/
footer{
    width: 100%;

    padding: 64px 40px;
    margin-top: 172px;

    background-color: var(--navy);

}



footer .footer-container{
    display: flex;
    justify-content: space-between;
}
footer .footer-container .kiri{
    width: 45%;
}
footer .footer-container .kiri .logo{
    width: 50%;
}

footer .footer-container .kiri .perusahaan-text{
    padding: 20px;
    line-height: 1.6;
    width: 100%;
}

footer .footer-container .kiri .perusahaan-text p{
    font-size: var(--text-lg);
    font-weight: 700;
    color: #FFF;
}

.text-desc{
    color: #FFA90A;
    font-weight: 500;
}



footer .footer-container .kiri .socmed{
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 12px;
}
footer .footer-container .kanan{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 70%;
}
footer .footer-container .kanan > div{
    width: 33%;
}
footer .footer-container .kanan h5{
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--orange);
}
footer .footer-container .kanan .link{
    display: flex;
    flex-direction: column;
    gap: 4px;

    margin-top: 16px;
}
footer .footer-container .kanan .link a{
    font-size: var(--text-lg);
    color: #FFFFFF;
}




/*==============================================*/
/*==================== HOME ====================*/
/*==============================================*/

/*=====================*/
/*===== HOME HERO =====*/
/*=====================*/

.home-hero{
    /* height: 40vw; */
}

.home-hero img{
    padding-top: 80px;
}

.home-hero .swiper-home-hero{
    height: 90%;
}
.home-hero .swiper-home-hero .swiper-slide .slide-content{
    padding: 32px;
    
    height: 100%;
}
.home-hero .swiper-home-hero .swiper-slide .slide-content .grow{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 200px;
    left: 500px;
}

/*===== SLIDE 1 =====*/
.home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .konten{
    width: 45%;
}
.home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .konten h1{
    font-size: var(--text-7xl);
    font-weight: 700;
}
.home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .gambar{
    width: 55%;
    border-radius: 16px;
    aspect-ratio: 7/4;
}
.home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .gambar img{
    border-radius: 16px;
}

/*===== SLIDE 2 =====*/
.home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

    height: 100%;
}
.home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .konten{
    max-width: 75%;
}
.home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .konten h1{
    text-align: center;
    font-size: var(--text-7xl);
    font-weight: 700;
}
.home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .gambar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    height: 50%;
    flex: 1;
}
.home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .gambar .item{
    height: 100%;
    aspect-ratio: 7/4;

    border-radius: 16px;
}
.home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .gambar .item img{
    /* aspect-ratio: 1/1; */
}

/*===== SLIDE 3 =====*/
.home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content .konten{
    width: 50%;
}
.home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content .gambar{
    width: 50%;
    height: 100%;

    border-radius: 16px;
}

/*===== NAVIGATION =====*/
.swiper-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.swiper-navigation button{
    background-color: transparent;
    border: none;

    font-family: var(--helixa);
    font-size: var(--text-normal);
    color: var(--abu-muda);
}
.swiper-navigation button:disabled{
    opacity: .5;
}


/* =========================== */
/* ===== HOME EXPERIENCE ===== */
/* =========================== */

.experience {
    padding: 20px 5px;
}

.experience-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
}

.experience-image {
    max-width: 50%;
    height: auto;
}

.experience-text {
    flex: 6;
}

.experience-text h2 {
    font-size: var(--text-6xl);
    font-weight: bold;
    color: #0C3D99; /* Blue color */
    margin-bottom: 20px;
}

.experience-text p {
    font-size: var(--text-3xl);
    line-height: 1.6;
    color: #000000;
}

.highlight-blue {
    color: #0C3D99; /* Blue highlight */
}

.highlight-orange {
    color: #FFA90A; /* Orange highlight */
    font-weight: 600;
}

/* ======================== */
/* ===== LAYANAN KAMI ===== */
/* ======================== */

.layanan-kami{
    padding: 20px 20px;
    margin-top: auto;
}

.judul{
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 75%;
}

.judul img{
    object-fit: contain;
}

.layanan-grid{
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5%;
}

.layanan-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.layanan-item:hover {
    transform: translateY(-5px);
}

.layanan-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* ===================================== */
/* ===== LEBIH DARI SEKEDAR SOLUSI ===== */
/* ===================================== */
.lebih-dari-sekedar{
    display: flex;
    justify-content: center;
}

.image{
    margin-bottom: 100px;
    margin-top: 50px;
    width: 80%;
}

/* ========================= */
/* ===== PRODUK KAMI  ====== */
/* ========================= */

.produk-kami{
    margin: 40px, 20px;
}

.flex-container{
    display: flex;
    justify-content: space-between;
    padding-left: 28px;
    padding-right: 28px;
}

.flex-container .cont-kiri{
    flex: 1;
    width: 45%;
}

.flex-container .cont-kanan{
    flex: 1;
    width: 40%;
}

/* ====================================================== */
/* ==================== TENTANG KAMI ==================== */
/* ====================================================== */

/* ===== TENTANG HERO ===== */
.tentang-hero{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 75vh;
}

.tentang-hero .image img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.tentang-knowledge{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 75vh;
}

.tentang-knowledge .image img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.tentang-growth{
    display: flex;
    width: fit-content;
    justify-content: space-between;
    align-items: center;
    gap: auto;
    padding: 0px 50px;
}

.tentang-growth .image {
    width: 50%;
    flex: 1
}

.tentang-growth .text {
    flex: 1;
}

.tentang-growth .text p{
    margin: 5px 0; 
    font-size: var(--text-2xl);
}

.tentang-growth .text .text-blue{
    color: #00258D;
    font-weight: bold;
    font-size: var(--text-2xl);
}

.tentang-growth .text .text-bold{
    font-weight: bold;
    font-size: var(--text-2xl);
}

.tentang-growth .text .text-italic{
    font-weight: 600;
    font-style: italic;
    font-size: var(--text-2xl);
}

.tentang-event{
    justify-content: center;
    align-items: center;
    display: flex;
    height: auto;
}

.tentang-event .image img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/*=====================================================*/
/*==================== HOW WE WORK ====================*/
/*=====================================================*/
.how-we-work-wrapper{
    padding: 32px 32px;
}
.how-we-work-wrapper .work-row{
    display: flex;
    justify-content: space-around;
    gap: 32px;

    margin: 48px 0;
}
.how-we-work-wrapper .work-row .col-kiri,
.how-we-work-wrapper .work-row .col-kanan{
    width: 50%;
}
.how-we-work-wrapper h3{
    font-size: var(--text-2xl);
    font-weight: 700;
}
.how-we-work-wrapper h4{
    font-size: var(--text-xl);
    font-weight: 600;
}

/*===================================================*/
/*==================== VISI MISI ====================*/
/*===================================================*/

.visi-misi-wrapper{
    padding: 32px;
}
.visi-misi-wrapper .visi,
.visi-misi-wrapper .misi{
    display: flex;
    justify-content: center;
    gap: 32px;

    margin: 32px 0;
}
.visi-misi-wrapper .gambar{
    width: 40%;

    border-radius: 16px;
}
.visi-misi-wrapper .konten{
    width: 60%; 
}
.visi-misi-wrapper h3{
    font-size: var(--text-3xl);
    font-weight: 700;
}
.visi-misi-wrapper p{
    margin-bottom: 16px;
}


/*==================================================*/
/*==================== OUR TEAM ====================*/
/*==================================================*/
.our-team-wrapper{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    align-items: center;
    padding: 60px 72px;
    width: 90%;
    margin: 90px auto;
}
.our-team-wrapper .item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.our-team-wrapper .item h3{
    margin: 4px 0;
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--yellow);
}
.our-team-wrapper .item h4{
    font-size: var(--text-lg);
}


/*==================================================*/
/*==================== ABOUT US ====================*/
/*==================================================*/
.about-us-wrapper{
    padding: 60px 32px;
}
.about-us-wrapper .swiper-wrapper{
    padding: 16px 0;
    align-items: flex-start !important;
}
.about-us-wrapper .swiper-slide{
    transform: scale(.7);
    /* transform-origin: top; */
    opacity: .5;

    transition: .25s;
}
.about-us-wrapper .swiper-slide.swiper-slide-active{
    transform: scale(1);
    /* margin-right: 120px; */
    opacity: 1;
}
.about-us-wrapper .swiper-slide .gambar-rounded{
    border-radius: 16px;
}
.about-us-wrapper .swiper-slide .gambar-rounded img{
    border-radius: 32px;
    object-fit: contain;
}
.about-us-wrapper .swiper-slide .konten,
.about-us-wrapper .about-us-konten{
    max-width: 75%;
    font-size: var(--text-xl);
    color: var(--hitam);
}
.about-us-wrapper .swiper-slide .konten p,
.about-us-wrapper .about-us-konten p{
    margin-bottom: 8px;
}

/* ======================= */
/* ===== COMING SOON ===== */
/* ======================= */

body {
    
}

.coming-soon{
    display: flex;
    justify-content: center;
    align-self: center;
    margin: 100px;
}

.coming-soon-container {
    /* display: ; */
    justify-content: center;
    margin: 100px;
    text-align: center;
    padding: 20px;
    background: rgba(30, 58, 138, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.coming-soon-container h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #facc15;
}

.coming-soon-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.countdown {
    font-size: 1.5em;
    font-weight: bold;
    color: #facc15;
}



/*================================================*/
/*==================== MOBILE ====================*/
/*================================================*/
@media only screen and (max-width: 768px) {
    body{
        margin-top: 70px;
    }

    
    .button-abu{
        font-size: var(--text-xl);
        
        padding: 4px 16px;
    }

    .button-image{
        width: auto;
    }


    /*==================*/
    /*===== NAVBAR =====*/
    /*==================*/
    nav .nav-container{
        padding: 0 16px;
    }
    nav .nav-logo{
        width: 25%;
    }
    nav .nav-button{
        width: 10%;
        display: block;
    }
    nav .nav-button .button-menu{
        cursor: pointer;
    }
    .nav-links{
        position: fixed;
        z-index: 1002;
        top: 0;
        right: 0;

        width: 0%;
        height: 100vh;
        overflow: hidden;
        background-color: #0C3D99;

        flex-direction: column;
        justify-content: center;
    }
    .nav-links .button-close{
        display: block;
    }
    .nav-links a{
        width: 75%;
        gap: 24px;
    }


    /*==================*/
    /*===== FOOTER =====*/
    /*==================*/
    footer{
        padding: 16px;
    }
    footer .footer-container{
        flex-direction: column;
    }
    footer .footer-container .kiri{
        width: 100%;
    }
    footer .footer-container .kiri .logo{
        width: 50%;
    }
    footer .footer-container .kanan{
        width: 100%;

        margin-top: 32px;
    }
    footer .footer-container .kanan h5{
        font-size: var(--text-xl);
    }
    footer .footer-container .kanan .link{
        margin-top: 8px;
    }
    footer .footer-container .kanan .link a{
        font-size: var(--text-normal);
        color: #FFFFFF;
    }    

    /*==============================================*/
    /*==================== HOME ====================*/
    /*==============================================*/

    /*=====================*/
    /*===== HOME HERO =====*/
    /*=====================*/
    .home-hero{
        height: 55vh;
    }
    .home-hero .swiper-home-hero .swiper-slide .slide-content{
        padding: 16px;
    }

    /*===== SLIDE 1 =====*/
    .home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content{
        flex-direction: column;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .konten{
        width: 100%;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .konten h1{
        font-size: var(--text-4xl);
        text-align: center;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-1 .slide-content .gambar{
        width: 100%;
    }

    /*===== SLIDE 2 =====*/
    .home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .konten{
        max-width: 100%;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .konten h1{
        font-size: var(--text-4xl);
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .gambar{
        width: 100%;
        height: auto;
        gap: 16px;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-2 .slide-content .gambar .item{
        height: auto;
    }

    /*===== SLIDE 3 =====*/
    .home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content{
        flex-direction: column;
        gap: 16px;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content .konten{
        width: 100%;
        height: 50%;
        text-align: center;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content .konten img{
        height: 100%;
        width: auto;
        margin: 0 auto;
    }
    .home-hero .swiper-home-hero .swiper-slide.slide-3 .slide-content .gambar{
        width: 100%;
        height: 50%;
    }

    /*========================*/
    /*===== HOME SERVICE =====*/
    /*========================*/
    .home-service{
        margin-top: 48px;
        padding: 0 16px;
    }
    .service-provide{
        margin: 16px 16px;
        padding: 16px;
    
        border-radius: 16px;
    }
    .home-service h2{
        font-size: var(--text-3xl);
    }
    .home-service h3{
        font-size: var(--text-xl);
    }
    .service-provide .swiper-slide.swiper-slide-active .item{
        background-color: var(--orange);
        transform: scale(1.2);
    }
    .service-provide .item{
        border-radius: 12px;
    }
    .service-provide .provide-content h4{
        font-size: var(--text-2xl);
    }
    .service-provide .provide-content p{
        font-size: var(--text-base);
    }

    
    /*=======================*/
    /*===== HOME TALENT =====*/
    /*=======================*/
    .home-talent h2{
        font-size: var(--text-3xl);
    }
    .home-talent .talent-wrapper{
        margin: 40px 16px 16px;
    }

    
    /* ============================== */
    /*======== SUPERIORITY ==========*/
    /* ============================== */

    .superiority-wrapper{
        flex-direction: column;
        padding: 10px 16px;
        margin: 48px 0;
    }
    .superiority-wrapper .item h3{
        font-size: var(--text-2xl);
    }
    


    

    /*==========================*/
    /*===== HOME CONTENTES =====*/
    /*==========================*/
    .home-contents{
        padding: 16px;
    }
    .home-contents .button-menus{
        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 8px 16px;
        border-radius: 8px;
        background-color: var(--abu-muda);
    }
    .home-contents .button-menus p{
        font-size: var(--text-xl);
        color: var(--hitam);
        font-weight: 600;
    }
    .home-contents .button-menus img{
        width: 32px;
    }

    .home-contents .menus{
        overflow: hidden;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 10;
        
        transform: scaleY(0);
        transform-origin: top center;

        
        background-color: var(--abu-muda);
        padding: 0 16px;
        border-radius: 0 0 16px 16px;

        flex-direction: column;
        align-items: stretch;

        transition: all .25s ease-out;
    }
    .home-contents .menus.active{
        transform: scaleY(1);
        padding: 16px;
    }
    .home-contents .content-wrapper{
        padding: 0px;
    }

    /*===== ABOUT GENT =====*/
    .home-contents #content-about .about-wrapper{
        flex-direction: column;

        gap: 48px;
    }

    .home-contents #content-about .about-wrapper .item{
        width: 100%;
        gap: 16px;
    }
    .home-contents #content-work .work-wrapper .konten{
        flex-direction: column;
    }
    .home-contents #content-work .work-wrapper .konten .kiri,
    .home-contents #content-work .work-wrapper .konten .kanan{
        width: 100%;
    }
    .home-contents #content-work .work-wrapper .konten p{
        font-size: var(--text-lg);
    }

    /*===== TOOLS =====*/
    .home-contents #content-tools .tools-wrapper .konten{
        flex-direction: column;
    }
    .home-contents #content-tools .tools-wrapper .konten .kiri,
    .home-contents #content-tools .tools-wrapper .konten .kanan{
        width: 100%;
    }
    .home-contents #content-tools .tools-wrapper .konten p{
        font-size: var(--text-lg);
    }
    .home-contents #content-tools .tools-wrapper .tools{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        /* gap: 16px; */
    }

    /*===== PROVIDE SERVICE =====*/
    .home-contents #content-service .service-wrapper .item{
        flex-direction: column;
        margin: 60px 0;
    }
    .home-contents #content-service .service-wrapper .item .gambar{
        width: 100%;
    }
    .home-contents #content-service .service-wrapper .item .konten{
        width: 100%;
    }
    .home-contents #content-service .service-wrapper .item .konten h3{
        font-size: var(--text-xl);
    }
    .home-contents #content-service .service-wrapper .item .konten{
        font-size: var(--text-normal);
    }

    /*===== CONTACT =====*/
    
    .home-contents #content-contact .contact-wrapper{
        padding: 20px;
    }
    .home-contents #content-contact .contact-wrapper .box{
        flex-direction: column;
        display: flex;
    }
    .home-contents #content-contact .contact-wrapper .box .gambar{
        width: 50%;
    }
    .home-contents #content-contact .contact-wrapper .box .konten{
        width: 100%;
        display: flex;
        /* justify-content: center; */
        /* align-self: center; */
    }
    .home-contents #content-contact .contact-wrapper .box .konten .item{
        margin: 16px;
    }
    .home-contents #content-contact .contact-wrapper .box .konten .item img{
        width: 40px;
    }
    .home-contents #content-contact .contact-wrapper .box .konten .item p{
        font-size: var(--text-normal);
        word-break: break-all;
    }
    .home-contents #content-contact .contact-wrapper .box .konten .item a{
        font-size: var(--text-normal);
        word-break: break-all;
    }

    
    /*=====================================================*/
    /*==================== HOW WE WORK ====================*/
    /*=====================================================*/
    .how-we-work-wrapper{
        padding: 16px 32px;
    }
    .how-we-work-wrapper .work-row{
        flex-direction: column;
        gap: 16px;
    
        margin: 16px 0;
    }
    .how-we-work-wrapper .work-row .col-kiri,
    .how-we-work-wrapper .work-row .col-kanan{
        width: 100%;
    }

    /*===================================================*/
    /*==================== VISI MISI ====================*/
    /*===================================================*/
    .visi-misi-wrapper{
        padding: 16px;
    }
    .visi-misi-wrapper .visi{
        flex-direction: column;
    }
    .visi-misi-wrapper .misi{
        flex-direction: column-reverse;
    }
    .visi-misi-wrapper .gambar{
        width: 100%;
    }
    .visi-misi-wrapper .konten{
        width: 100%; 
    }



    /*==================================================*/
    /*==================== OUR TEAM ====================*/
    /*==================================================*/
    .our-team-wrapper{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        padding: 32px 24px;
        width: 85%;
    }

    /*==================================================*/
    /*==================== SUPERIORITY ====================*/
    /*==================================================*/
    .superiority-wrapper{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        flex-direction: column;
    }


    /*==================================================*/
    /*==================== ABOUT US ====================*/
    /*==================================================*/
    .about-us-wrapper{
        padding: 32px 16px;
    }
    .about-us-wrapper .swiper-slide{
        transform: scale(.8);
    }

    .about-us-wrapper .swiper-slide .konten,
    .about-us-wrapper .about-us-konten{
        max-width: 100%;
        font-size: var(--text-lg);
    }

    /* ======================= */
    /* ===== COMING SOON ===== */
    /* ======================= */

    .coming-soon-container h1 {
        font-size: 2em;
    }

    .coming-soon-container p {
        font-size: 1em;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .countdown {
        font-size: 1.2em;
    }

    
}