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


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



/* Header */
.header{
    position: fixed; 
    width: 100%;
    top: 0; 
    z-index: 90;
}
.header-atas{
    width: 100%;
    height: 70px;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D1D1D1;
    background-color: #FFF;
}
.header-atas .toggle-btn{
    display: none;
}
.header-atas .img img{
    width: 80%;
}
#side-menu{
    display: flex;
    align-items: center;
    margin-left: 190px;
}
#side-menu li{
    padding-left: 35px;
    position: relative;
}
#side-menu li a{
    color: #333333;
    font-weight: 400;
    font-size: 17px;
    transition: .3s;
}
#side-menu > li .aktif,
#side-menu > li > a:hover{
    color: #399DE6;
}
#side-menu li ul{
    position: absolute;
    left: 20px;
    width: 300px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    top: 40px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
#side-menu li:hover > ul{
    opacity: 1;
    visibility: visible;
}
#side-menu li ul li{
    padding: 8px;
    border-radius: 5px;
    transition: .3s;
}
#side-menu li ul li a{
    width: 100%;
}
#side-menu li ul li:hover{
    background-color: #f1f1f1;
}
.header-atas .login{
    padding: 10px 30px;
    right: 0;
    font-size: 16px;
    color: #FFF;
    font-weight: 400;
    background-color: #399DE6;
    border-radius: 5px;
}
.header-atas .login:hover{
    background-color: #0c8be6;
}
.header-bawah{
    width: 100%;
    background-color: #F4F4F4;
}
.header-bawah ul{
    display: flex;
    align-items: center;
}
.header-bawah ul li {
    padding: 12px 40px;
    transition: .3s;
}
.header-bawah ul li:hover{
    background-color: #D1D1D1;
}
.header-bawah ul li a{
    color: #333333;
    font-weight: 500;
    font-size: 16px;
}
/* Header */


/* BERANDA */

/* section slideshow */
.slide-video{
    position: relative;
    padding-top: 115px;
    scroll-snap-align: start;
}
.slide-video .container{
    min-height: calc(100vh - 115px);
    width: 100%;
    position: relative;
    display: none;
}
.slide-video .container .content{
    position: absolute;
    height: 100%;
    width: 50%;
    background: rgba(57, 157, 230, 0.8);
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 65px;
    animation:slideVideo .4s linear .6s backwards ;
}
@keyframes slideVideo{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
}
@keyframes slideVideoisi{
    0%{
        opacity: 0;
        transform: scale(2);
    }
}
.slide-video .container .content p{
    color: #FFF;
    text-align: justify;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    cursor: pointer;
    animation:slideVideoisi .3s linear .5s backwards ;
}
.slide-video .container .content a{
    display: flex;
    justify-content: center;
    max-width: 120px;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 20px;
    transition: .2s linear;
    animation:slideVideoisi .3s linear .5s backwards ;
}
.slide-video .container .content a:hover{
    background: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}
.slide-video .container video{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slide-video #next,
.slide-video #prev{
    top: 60%;
    height: 35px;
    width: 35px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 35px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    opacity: .5;
}
.slide-video #next:hover,
.slide-video #prev:hover{
    opacity: .8;
}
.slide-video #next:active,
.slide-video #prev:active{
    transform: translateY(-50%) scale(0.85);
}

.slide-video #next{
    right: 10px;
}
.slide-video #prev{
    left: 10px;
}
.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}
.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}
.active, .dot:hover{
	border-color: #333333;
}
/* section slideshow */


/* section solution */

.solution{
    min-height: 100vh;
    padding-top: 115px;
    width: 100%;
    position: relative;
    scroll-snap-align: start;
    transition: .3s;
}
.solution .isi{
    padding: 25px 3%;
}
.client h1,
.solution h1{
    text-align: center;
    text-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 1);
    color: #399DE6;
    font-size: 36px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 4px
}
.client p,
.solution p{
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 2.6px;
    padding-top: 10px;
}
.slider {
    display: flex;
    padding: 0 35px;
    align-items: center;
    justify-content: center;
    position: absolute;
    min-height: 360px;
    width: 100%;
}
.wrapper {
    max-width: 1000px;
    width: 100%;
    position: relative;
}
.wrapper i {
    top: 50%;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    opacity: .5;
}
.wrapper i:hover{
    opacity: .8;
}
.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) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    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 .card {
    scroll-snap-align: start;
    height: 335px;
    list-style: none;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(51, 51, 51, 0.20);
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
    padding: 15px;
}
.carousel .card .isi{
    border-radius: 8px;
    padding: 15px;
    border: 2px solid rgba(51, 51, 51, 0.20); 
    width: 100%;
    height: 100%;
}
.carousel .card .isi h3{
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 0 10px 0; 
}
.carousel .card .isi p{
    color: rgba(51, 51, 51, 0.50);
    text-align: justify;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: .5px; 
}
/* section solution */

/* section client */
.client{
    min-height: 100vh;
    padding-top: 135px;
    width: 100%;
    transition: .3s;
}
.client .carouselclient{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 35px;
    padding: 0 3%;
    padding-top: 20px;
    padding-bottom: 110px; 
}
.client .carouselclient .cardclient{
    position: relative;
    margin-top: 50px;
}

.client .carouselclient .cardclient h4{
    color: #333;
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 2.6px; 
}
.client .carouselclient .cardclient p{
    color: rgba(51, 51, 51, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.8px;  
}
.popup-btn,.popup-btn1,.popup-btn2,.popup-btn3,.popup-btn4,.popup-btn5{
    display: flex;
    justify-content: center;
    max-width: 100%;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    background: #399DE6;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    transition: .2s linear;
    animation: animate .4s linear 4.s backwards;  
}
.popup-btn:hover, .popup-btn1:hover, .popup-btn2:hover, .popup-btn3:hover, .popup-btn4:hover, .popup-btn5:hover{
    background: #0c8be6;;
    letter-spacing: .5px;
}
.logoclient, .logoclient1, .logoclient2, .logoclient3, .logoclient4{
    position: absolute;
    z-index: 100;
    bottom: 40px;
    left: 0;
    width: 100%;
    background: #FFF;
    padding: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(51, 51, 51, 0.20);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    
}
.logoclient4{
    bottom: 60px;
}
.logoclient.show, .logoclient1.show, .logoclient2.show, .logoclient3.show, .logoclient4.show{
    opacity: 1;
    visibility: visible;
}




/* section client */

/* BERANDA */


/* ABOUT */
.slide-img{
    position: relative;
    padding-top: 115px;
}
.slide-img .container{
    min-height: calc(100vh - 115px);
    width: 100%;
    position: relative;
}
.slide-img .container .content{
    position: absolute;
    height: 100%;
    width: 50%;
    background: rgba(57, 157, 230, 0.9);
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 65px;
}
.slide-img .container .content h2{
    color: #FFF;
    text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 1px;
}
.slide-img .container .content p{
    color: #FFF;
    text-align: justify;
    text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 2px; 
}
.slide-img .container .content a{
    display: flex;
    justify-content: center;
    max-width: 120px;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 20px;
    transition: .2s linear;
    animation: animate .4s linear 4.s backwards;
}
.slide-img .container .content a:hover{
    background: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}
.slide-img .container img{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: fadeIn .4s linear;
}

/* STORY */
.story{
    padding: 0 3%;
    text-align: center;
}
.story h2{
    padding-top: 125px;
    padding-bottom: 30px;
    color: #399DE6;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 2px; 
}
.story p{
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1px;   
}
/* STORY */
/* VISIMISI */
.visimisi{
    padding: 90px 3%;
}
.visimisi .card{
    display: grid;
    grid-template-columns: auto auto;
    gap: 50px;
    padding: 45px 0;
}
.visimisi .card h2{
    color: #399DE6;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 2px;
    padding-bottom: 20px;
}
.visimisi .card p{
    color: #333;
    text-align: justify; 
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 1px;   
}
/* VISIMISI */
/* ABOUT */
/* PRODUCT */
.product{
    padding: 70px 3%;
}
.product .card{
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 80px;
    padding: 40px 0;
}
.product .card img{
    width: 100%;
}
.product .card h2{
    color: #399DE6;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1px;
    padding: 20px 0;
}
.product .card p{
    color: #333;
    text-align: justify; 
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 1px;   
}
.product .card a{
    display: flex;
    justify-content: center;
    max-width: 160px;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    background-color: #399DE6;
    border-radius: 5px;
    margin-top: 15px;
    transition: .2s linear;
    animation: animate .4s linear 4.s backwards;
}
.product .card a:hover{
    background-color: #5ab6f8;
    letter-spacing: 1px;
}
/* SERVER */
.isi-product{
    padding: 110px 3% 0 3%;
    width: 100%;
}
.isi-product .gambar{
    text-align: center;
    width: 100%;
    padding-bottom: 50px;
}
.isi-product .server h2{
    padding-bottom: 35px;
    color: #399DE6;
    font-size: 32px;
    font-weight: 700;
    line-height: 10px;
    letter-spacing: 2px; 
}
.isi-product .server p{
    color: #333;
    text-align: justify; 
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 2px; 
    padding-bottom: 70px; 
}
.ourproduct{
    width: 100%;
    padding: 0 3%;
    text-align: center;
}
.ourproduct h2{
    padding-bottom: 40px;
    padding-top: 50px;
    color: #399DE6;
    font-size: 36px;
    font-weight: 700;
    line-height: 10px;
    letter-spacing: 2px;
}
.ourproduct img{
    padding-bottom: 70px;
}
/* SERVER */



/* 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 #399DE6;
    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: #399DE6;
    color: white;
    cursor: pointer;
    font-size: 18px;
}
.slide-career .box-career .input-career .browser label:hover{
    background-color: #0c8be6;
}
.slide-career .box-career button{
    font-size: 18px;
    padding: 12px 24px;
    color: white;
    background-color: #399DE6;
    border: none;
    border-radius: 10px;
    border: 1px solid #399DE6;
    cursor: pointer;
}
.slide-career .box-career button:hover{
    background-color: #0c8be6;
}
/* CAREER */

/* JOIN US */
.slide-join{
    padding: 100px 3% 80px 3%;
}
.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;
    color: #FFF;
    background-color: #399DE6;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}
.slide-join .box-contact .contact-left button:hover{
    background-color: #5ab6f8;
}
.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 */

/* NEWS */
.post-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 2rem !important;
}

.post-filter button{
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #333333;
    padding: 4px 10px;
    border-radius: 4px;
}

.post-filter button:hover{
    background: #5ab6f8;
}

.post-filter .activef{
    background: #0c8be6;
    color: #FFF;
}

 
.slide-news{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 40px;
}
.slide-news .box-news{
    width: 100%;
    height: 300px;
    position: relative;
}
.slide-news .box-news img{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.slide-news .box-news .isi-news{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(84, 169, 230, 0.85);
    opacity: 0;
    transition: .7s ease;
    border-radius: 0 0 10px 10px;
}
.slide-news .box-news .isi-news p{
    color: #FFF;
    font-size: 15px; 
    padding-bottom: 15px;
    line-height: 24px;
}
.slide-news .box-news .isi-news a{
    color: #FFF;
    font-size: 15px;
}
.slide-news .box-news:hover .isi-news{
    opacity: 1;
}
.box-news.hide{
    display: none;
}
.news-isi{
    padding: 170px 5% 0px 5%;
}
.news-isi h3{
    color: #333;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.news-isi h5{
    color: #333;
    text-align: center; 
    font-size: 18px;
    letter-spacing: 1px; 
    margin-bottom: 35px;
    font-weight: 200;
}
.news-isi p{
    color: #333;
    text-align: justify; 
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px; 
    margin-bottom: 35px;
}
.news-isi 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;
}
.news-isi 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;
}
/* NEWS */
/* Pindahan */
.content-news{
    padding: 150px 3% 0px 3%;
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 55px;
}
.isi-content{
    width: 100%;
    height: 420px;
    position: relative;
}
.isi-content img{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.content-news h3{
    color: #0c8be6;
    font-size: 28px;
    font-weight: 600; 
    padding-bottom: 20px; 
}
.content-news p{
    color: #333333;
    text-align: justify;
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;  
}
.photo-news{
    padding: 60px 3%;
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 40px;
}
.photo-news .box-photo{
    width: 100%;
    height: 320px;
    position: relative;
}
.photo-news .box-photo img{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* section alamat */
.alamatkantor{
    padding: 3% 3%;
    background: #399DE6;
    position: relative;
    scroll-snap-align: start;
}
.alamatkantor .atas{
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: #FFF;
}
.alamatkantor .isi-atas img{
    width: 65%;
}
.alamatkantor .atas p{
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 1px; 
}
.isialamat p{
    text-align: right;
}
.alamatkantor .bawah{
    display: none;
}


/* NEWS */
.newss{
    padding: 50px 3% 80px 3%;
}
.news-card{
    display: grid;
    grid-template-columns: 47% 47%;
    gap: 80px;
    padding: 70px 0;
}
.news-card img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}
.news-card h2{
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1px;
    padding: 10px 0;
}
.news-card p{
    color: #333;
    text-align: justify; 
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 1px;   
}
.news-card a{
    display: flex;
    justify-content: center;
    max-width: 160px;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    background-color: #399DE6;
    border-radius: 5px;
    margin-top: 20px;
    transition: .2s linear;
    animation: animate .4s linear 4.s backwards;
}
.news-card a:hover{
    background-color: #5ab6f8;
    letter-spacing: 1px;
}
#filter-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

#filter-buttons button{
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    color: #333333;
    padding: 6px 15px;
    border-radius: 4px;
    margin: 0 10px;
    border: none;
}

#filter-buttons button:hover{
    background: #5ab6f8;
    color: #fff;
}

#filter-buttons .active{
    background: #0c8be6;
    color: #FFF;
}

 
#filterable-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 20px;
}
#filterable-cards .cards{
    display: none;
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease forwards;
    transition: transform 0.3s ease;
}
#filterable-cards .cards:hover {
    transform: translateY(-4px);
}

#filterable-cards .cards img{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
#filterable-cards .cards .isi-news{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(84, 169, 230, 0.85);
    opacity: 0;
    transition: .7s ease;
    border-radius: 0 0 10px 10px;
}
#filterable-cards .cards .isi-news p{
    color: #FFF;
    font-size: 15px; 
    padding-bottom: 15px;
    line-height: 24px;
}
#filterable-cards .cards .isi-news a{
    color: #FFF;
    font-size: 15px;
}
#filterable-cards .cards:hover .isi-news{
    opacity: 1;
}
#filterable-cards .cards.hide{
    display: none;
}
.load-more-wrapper {
    display: flex;
    justify-content: center; /* posisi tengah secara horizontal */
    margin-top: 40px;
}

#loadMore {
    padding: 15px 20px;
    border: none;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
#loadMore:hover {
    background: #0056b3;
}
#loadMore.hidden {
    display: none;
}
@keyframes fadeIn {
    from {opacity: 0;transform: translateY(10px);}
    to {opacity: 1;transform: translateY(0);}
}






