@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');

*{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}


/* Beranda */
.header{
    width: 100%;
    z-index: 1;
    top: 0;
    position: fixed;
    background-color: white;
}
.header.stiky{
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);  
}
.header-atas{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}
.headeratas-isi{
    display: flex;
    align-items: center;
}
.headeratas-isi p{
    padding-right: 10px;
    font-size: 20px;
    font-weight: 600;
}
.header img{
    width: 220px;
}
.toggle-bar{
    font-size: 24px;
    cursor: pointer;
    color: #333333;
}
.toggle-bar.show{
    opacity: 0;
}
.nav{
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0, 0.9);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.nav.show{
    opacity: 1;
    visibility: visible;
}
.nav-close{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    color: white;
}
.nav-close .close{
    font-size: 26px;
    cursor: pointer;
}  
.nav-group{
    width: 100%; 
    text-align: center;
    position: relative;
}
.nav-isi{
    display: block;
}
.nav-isi.show{
    opacity: 0;
    visibility: hidden; 
}
.nav-isi li{
    font-size: 40px;
    font-weight: 600;
    margin-top: 40px;
}
.nav-isi li a{
    color: white;
}
.nav-isi li span{
    color: white;
    cursor: pointer;
}
.nav-close:hover,
.nav-isi li a:hover,
.nav-isi li span:hover,
.nav-productisi li a:hover{
    color: #005FAF;
}


.nav-productisi{
    position: absolute;
    top: -40px;
    text-align: center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.nav-productisi.show{
    opacity: 1;
    visibility: visible;
}
.nav-productisi li{
    margin-top: 40px;
    font-size: 40px;
    font-weight: 600;
}
.nav-productisi li a{
    color: white;
}
.img-beranda{
    width: 100%;
    padding: 0 5%;
    margin-top: 85px;
}
.img-beranda .img-group{
    position: relative;
    width: 100%;
    height: 70vh;
}
.img-beranda .img-group img{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.img-isi{
    position: absolute;
    width: 50%;
    top: 11%;
    left: 5%;
}
.img-isi h1{
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 52px;
    font-weight: 600;
    line-height: 75px; 
    letter-spacing: 2.6px; 
}
.img-isi p{
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 20px;
    font-weight: 600;
    line-height: 40px; /* 250% */
    letter-spacing: 1px; 
}
.img-isi a{
    display: flex;
    justify-content: center;
    max-width: 170px;
    padding: 10px 22px;
    font-size: 17px;
    font-weight: 500;
    color: #FFF;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 20px;
    transition: .2s linear;
    animation:slideVideoisi .3s linear .5s backwards ;
}
.img-isi a:hover{
    background: rgba(255, 255, 255, 0.2);
    letter-spacing: .5px;
}


.logos{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 83%;
    margin-left: 20px;
    overflow: hidden;
    position: relative;
}
.logos .logos-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 70s linear infinite;
}
@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}
.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  content: "";
  z-index: 2;
}
.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
  
.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}



.logo-client{
    padding: 0 5%;
    margin-top: 5px;
    width: 100%;
    display: flex;
    align-items: center;
}
.logo-client h2{
    color: #333333;
    font-size: 32px;
    font-weight: 600;
    line-height: 20px;
}

.service{
    display: grid;
    grid-template-columns: 55% 42%;
    justify-content: space-between;
    padding: 60px 5%;
}
.service-group{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 30px;
    justify-content: space-between;
}
.service-icon{
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(51, 51, 51, 0.50); 
}
.service-icon h2{
    color: #333333;
    font-weight: 700;
    line-height: 28px;
    margin-top: 15px;
}
.service-icon p{
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400; 
    line-height: 20px;
    text-align: justify; 
    margin-top: 15px;
}
.service-text h2{
    color: #005FAF;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px; 
}
.service-text h1{
    color: #333;
    font-size: 48px;
    font-weight: 600;
    line-height: 80px;
    margin: 15px 0; 
}
.service-text p{
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
    font-weight: 600;
    line-height: 40px; /* 200% */
    letter-spacing: 1px;
    text-align: justify; 
}
.service-text a,
.solution-text a{
    display: flex;
    justify-content: center;
    max-width: 170px;
    padding: 10px 22px;
    font-size: 17px;
    font-weight: 500;
    color: #FFF;
    background-color: #005FAF;
    opacity: 0.6;
    border-radius: 5px;
    margin-top: 30px;
}
.service-text a:hover,
.solution-text a:hover{
    opacity: 1;
}
.solution{
    padding: 30px 5%;
    background: linear-gradient(180deg, #F4F4F4 0%, rgba(244, 244, 244, 0.00) 100%);
    position: relative;
}
.solution-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.solution-text .text{
    width: 60%;
}
.solution-text h2{
    color: #005FAF;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}
.solution-text p{
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 10px;
}
.solution-isi{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 15px;
}
.wrapper {
    width: 100%;
    position: relative;
}
.wrapper i {
    top: 50%;
    height: 45px;
    width: 45px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}
.wrapper i:active{
    transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
    left: -22px;
}
.wrapper i:last-child{
    right: -22px;
}
  
  
.wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 35px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 50px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.carousel.no-transition {
    scroll-behavior: auto;
}
.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}
.carousel :where(.card, .img) {
    display: block;
}
.carousel .card {
    scroll-snap-align: start;
    height: 370px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid rgba(51, 51, 51, 0.50); 
}
.carousel .card .img {
    height: 180px;
    width: 100%;
    border-radius: 10px;
}
.card .img img {
    height: 180px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.card .card-isi{
    margin: 15px;
}
.card .card-isi h2{
    color: #005FAF;
    font-weight: 700;
    line-height: 28px;
}
.card .card-isi p{
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400; 
    line-height: 20px;
    text-align: justify; 
    margin-top: 15px;
}
/* Beranda */

/* About */

.img-white{
    width: 100%;
    padding: 0 5%;
    margin-top: 85px;
}
.img-white div{
    position: relative;
    width: 100%;
    height: 45vh;
}
.img-white div img{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.about{
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 30px;
    justify-content: space-between;
}
.about h2{
    color: #005FAF;
    font-size: 28px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 2px;
}
.about h2 span{
    color: #333;
}
.about p{
    color: rgba(51, 51, 51, 0.50);
    text-align: justify; 
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 1.2px; 
}
.visimisi{
    padding: 40px 5%;
    background: linear-gradient(180deg, #F4F4F4 0%, rgba(244, 244, 244, 0.00) 100%);
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 40px;
}
.visimisi .group{
    border-radius: 10px;
    border: 1px solid rgba(51, 51, 51, 0.50); 
}
.visimisi .group .img{
    position: relative;
    width: 100%;
    height: 300px;
}
.visimisi .group .img img{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.visimisi .group .isi{
    padding: 30px;
}
.visimisi .group .isi h3{
    color: #333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}
.visimisi .group .isi p{
    color: rgba(51, 51, 51, 0.50);
    text-align: justify; 
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 1.2px; 
    margin-top: 15px;
}
.choose{
    padding: 60px 5%;
    text-align: center;
}
.choose h2{
    color: #005FAF;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}
.choose-isi{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    justify-content: space-between;
    margin-top: 40px;
}
.choose-isi .group h4{
    color: #333;
    margin-top: 15px;
}

/* About */

/* Server */
.laptop,
.server{
    padding: 65px 5%;
    display: grid;
    grid-template-columns: 47% 47%;
    justify-content: space-between;
}
.server p,
.laptop p{
    color: #333;
    text-align: justify;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.server h1{
    color: #333;
    font-size: 28px;
    font-weight: 800;
    line-height: 30px;
    padding-bottom: 10px;
}
.server .img,
.laptop .img{
    position: relative;
    width: 100%;
    min-height: 400px;
}
.server .img img,
.laptop .img img{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Server */
    
/* Produk */
.produk{
    padding: 0 5%;
    text-align: center;
}
.produk h2{
    color: #005FAF;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.produk img{
    margin-bottom: 60px;
}
/* Produk */

/* NEWS */
.slide-news{
    padding: 60px 5% 40px 5%;
    display: grid;
    grid-template-columns: 31% 31% 31%;
    gap: 38px;
}

.slide-news .news-group{
    border-radius: 10px;
    border: 1px solid rgba(51, 51, 51, 0.50); 
}
.slide-news .news-group .img{
    position: relative;
    width: 100%;
    height: 300px;
}
.slide-news .news-group .img img{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.slide-news .news-group .isi{
    padding: 20px;
    height: 260px;
}
.slide-news .news-group .isi span{
    color: #333;
    font-size: 16px;
}
.slide-news .news-group .isi h3{
    color: #333;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 1px; 
    margin-top: 10px;
}
.slide-news .news-group .isi p{
    color: #333;
    text-align: justify; 
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px; 
    margin-top: 10px;
}





.buton{
    padding: 20px;
}
.buton button{
    background-color: #005FAF;
    width: 100%;
    border-radius: 10px;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.6;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.buton button:hover{
    opacity: 1
}
.isi-news{
    padding: 110px 5% 60px 5%;
}
.isi-news h3{
    color: #333;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.isi-news ul li{
    list-style: square;
    margin-left: 40px;
    color: #333;
    text-align: justify; 
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px; 
    margin-bottom: 35px;
}
.isi-news p{
    color: #333;
    text-align: justify; 
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px; 
    margin-bottom: 25px;
}
.isi-news h4{
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.img-news{
    width: 100%;
    margin-bottom: 35px;
}
.img-news div{
    position: relative;
    width: 100%;
    height: 55vh;
}
.img-news div img{
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

#pagination-controls {
    display: flex;
    justify-content: space-between; /* kiri dan kanan */
    align-items: center;
    padding: 0 5%; /* sejajar dengan grid news */
    margin-top: 20px;
    margin-bottom: 40px;
}

#pagination-controls button {
    background-color: #005FAF;
    border-radius: 10px;
    border: none;
    color: white;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer;
}

#pagination-controls button:hover {
    opacity: 1;
}

#pagination-controls button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}
/* NEWS */

/* CAREER */
.slide-career{
    padding: 60px 5%;
}
.slide-career .box-career .input-career{
    display: flex;
    justify-content: space-between;
}
.slide-career .box-career .input-career .browser,
.slide-career .box-career .input-career .group-input{
    flex-basis: 46%;
    margin-bottom: 40px;
}
.slide-career .box-career .input-career .group-input input{
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
}
.slide-career .box-career .input-career .group-input p{
    font-size: 18px;
}
.slide-career .box-career .input-career .browser input{
    width: 85%;
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
}
.slide-career .box-career .input-career .browser{
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}

.slide-career .box-career .input-career .browser p{
    border: 1px solid rgba(51, 51, 51, 0.50); 
    flex-basis: 75%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 14px;
    height: 100%;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
.slide-career .box-career .input-career .browser label{
    border: 1px solid #005FAF;
    flex-basis: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #005FAF;
    opacity: 0.6;
    color: white;
    cursor: pointer;
    font-size: 18px;
}
.slide-career .box-career .input-career .browser label:hover{
    opacity: 1;
}
.slide-career .box-career button{
    font-size: 18px;
    padding: 12px 24px;
    color: white;
    background-color: #005FAF;
    opacity: 0.6;
    border: none;
    border-radius: 10px;
    border: 1px solid #005FAF;
    cursor: pointer;
}
.slide-career .box-career button:hover{
    opacity: 1;
}
/* CAREER */


/* JOIN US */
.slide-join{
    padding: 60px 5%;
}
.slide-join .box-contact{
    display: flex;
    justify-content: space-between;
}
.slide-join .box-contact .contact-left{
    width: 65%;
}
.slide-join .box-contact .contact-left .input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.slide-join .box-contact .contact-left .input-row .group-input{
    flex-basis: 47%;
}
.slide-join .box-contact .contact-left label{
    font-size: 18px;
}
.slide-join .box-contact .contact-left .input-row .group-input input{
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
}
.slide-join .box-contact .contact-right{
    width: 30%;
}
.slide-join .box-contact .contact-left textarea{
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
}
.slide-join .box-contact .contact-left button{
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #005FAF;
    opacity: 0.6;
    color: white;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}
.slide-join .box-contact .contact-left button:hover{
    opacity: 1;
}
.slide-join .box-contact .contact-right .maps iframe{
    width: 100%;
    height: 250px;
}
.slide-join .box-contact .contact-right p{
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
}
/* JOIN US */


/* section alamat */
.alamatkantor{
    padding: 2% 5%;
    background: #005FAF;
    position: relative;
    scroll-snap-align: start;
}
.alamatkantor .atas{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
    color: #FFF;
}
.alamatkantor .atas img{
    width: 20%;
}
.alamatkantor .atas h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 2px; 
}
.alamatkantor .atas p{
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px; 
}
.alamatkantor .bawah{
    text-align: center;
    color: #FFF;
    font-size: 16px;
}

@media (max-width: 768px) {
    .headeratas-isi p{
        display: none;
    }
    .img-beranda .img-group{
        height: 55vh;
    }
    .slide-news{
        display: block;
        width: 100%;
    }
    
    .isi-news h3{
        font-size: 28px;
    }
    .img-news div{
        height: 25vh;
    }
  

    .logos:before,
    .logos:after {
      position: absolute;
      top: 0;
      width: 180px;
      height: 100%;
      content: "";
      z-index: 2;
    }
    .logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    }
      
    .logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    }
    
    
    
    .logo-client{
        padding: 0 5%;
        margin-top: 5px;
        width: 100%;
        display: flex;
        align-items: center;
    }
    .logo-client h2{
        color: #333333;
        font-size: 32px;
        font-weight: 600;
        line-height: 20px;
    }
    .logo-client img{
        width: 20%;
    }
}