/* 
    Created on : Mar 17, 2026
    Author     : Basuki Tafif
*/

/*ScrollBar*/
::-webkit-scrollbar {
    width: 5px
}
::-webkit-scrollbar-track {
    background: #f1f1f1
}
::-webkit-scrollbar-thumb {
    background: #888
}
::-webkit-scrollbar-thumb:hover {
    background: #555
}

html {
    scroll-behavior: smooth;
}
body{
    background:#f8f9fa;
    font-family:system-ui;
}
@media(max-width: 992px){
    .container{
        max-width: 100%;
        width: 100%!important;
    }
    .row{
        margin-right: -10px;
        margin-left: -10px;
    }
    .row>*{
        padding-right: 5px;
        padding-left: 5px;
    }
}

/* NAVBAR */
.navbarB{
    height:90px;
    box-shadow:0 3px 15px rgba(0,0,0,0.05);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 3px 0;
    display:flex;
    align-items:center;
}
.navbarB .navbar-brand{
    font-weight:700;
    font-size:20px;
    display:flex;
    align-items:center;
    gap:10px;
}
.navbarB .navbar-brand img{
    width: 70px
}
.navbarB .nav-link{
    color: #FFF;
    text-transform:uppercase;
    font-weight:700;
    font-size:13px;
    letter-spacing:1px;
    margin-left:20px;
}
.navbarB.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}
.navbarB.active .nav-link {
    color: #555;
}
.navbarB .navbar-collapse{
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navbarB a.nav-link:hover, .navbarB a.nav-link:focus{
    color: #7F6A00;
}
/*Burger*/
.navbarB .navbar-toggler{
    border: none;
    padding: 0;
    padding-top: 15px
}
.navbarB .navbar-toggler:focus{
    outline: none!important;
    box-shadow: none!important
}
.navbarB .burger{
    width: 25px;
    height: 40px;
    display: block;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer
}
.navbarB .burger span{
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #FFF;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}
.navbarB.active .burger span{
    background: #333;
}
.navbarB .burger span:nth-child(1){
    top: 0px
}
.navbarB .burger span:nth-child(2),.burger span:nth-child(3){
    top: 10px
}
.navbarB .burger span:nth-child(4){
    top: 20px
}
.navbarB .burger.open span:nth-child(1){
    top: 10px;
    width: 0%;
    left: 50%
}
.navbarB .burger.open span:nth-child(2){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}
.navbarB .burger.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.navbarB .burger.open span:nth-child(4){
    top: 10px;
    width: 0%;
    left: 50%
}

@media(max-width: 992px){
    .navbarB{
        height:66px;
        padding: 2px 0;
    }
    .navbarB .navbar-brand{
        padding: 0;
    }
    .navbarB .navbar-brand img{
        width: 65px
    }
    .navbarB .navbar-brand span{
        padding-left: 0px
    }
    .navbarB .navbar-collapse{
        position:absolute;
        top:66px;
        left:0;
        width:100%;
        background: rgba(0,0,0,0.8);
    }
    .navbarB .nav-link {
        color: #FFF;
    }
    .navbarB.active .navbar-collapse{
        background:#fff;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }
    .navbarB.active .nav-link {
        color: #555;
    }
    .navbarB ul li:last-child {
        margin-bottom: 20px;
    }
}

/* CAROUSEL */
.carouselB{
    /*margin-top:90px;*/
}
.carouselB .carousel-inner{
    overflow:hidden;
}
.carouselB .carousel-item{
    height:75vh;
    min-height:520px;
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    position:relative;
    will-change: transform;
    backface-visibility: hidden;
}
.carouselB .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
    background:rgba(0,0,0,0.6);
    pointer-events:none;
}
.carouselContainer {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 50px;
    left: 50px;
    right: 50px;
}
.carouselCaption{
    margin-left: 25%;
    margin-right: 25%
}
.carouselCaption h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 46px;
    font-weight: 700;
}
.carouselCaption p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: lighter
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}
/*Control*/
.carouselB .carousel-control-prev,
.carouselB .carousel-control-next{
    width:55px;
    opacity:0.9;
}
.carouselB .carousel-control-prev-icon,
.carouselB .carousel-control-next-icon{
    background-size:22px;
    filter:invert(1);
}
.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end{
    transform: translateX(0);
}
/*Indicators*/
.carouselB .carousel-indicators{
    bottom:25px;
}
.carouselB .carousel-indicators [data-bs-target]{
    width:10px;
    height:10px;
    border-radius:50%;
    background-color: #FFF;
    opacity:0.6;
    margin:0 6px;
}
.carouselB .carousel-indicators .active{
    opacity:1;
    background-color:#ffffff;
}

@media(max-width: 992px){
    .carouselB{
        /*margin-top:75px;*/
    }
    .carouselB .carousel-item{
        height:85vh;
        min-height:600px;
    }
    .carousel-item::before {
        background-color: rgba(0, 0, 0, 0.5);
    }
    .carouselCaption{
        margin-left: 0;
        margin-right: 0;
    }
    .carouselCaption h1 {
        font-size: 22px
    }
    .carouselCaption p {
        margin-bottom: 20px;
        font-size: 15px;
        font-weight: normal
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        font-size: 16px;
    }
}

/* PROGRAM UTAMA */
.mainProgram{
    margin-top:-70px;
    position:relative;
    z-index:2;
}
.mProgramItem{
    background: #FFF;
    border-radius:14px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.mProgramItem i{
    font-size: 40px
}
@media(max-width: 992px){
    .mainProgram{
        margin-top:-50px;
    }
    .mProgramItem{
        margin: 0 20px;
        border-radius:10px;
        padding:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
    }
    .mProgramItem i{
        font-size: 30px
    }
    .mProgramItem h5{
        font-size: 16px
    }
    .mProgramItem p{
        font-size: 14px
    }
}

/* SECTION */
.sectionHome{
    padding:90px 0;
}
.sectionHomeTitle{
    margin-bottom: 40px;
}
.sectionHomeTitle h2{
}
@media(max-width: 992px){
    .sectionHome{
        padding:50px 0;
    }
    .sectionHomeTitle{
        margin-bottom: 20px;
    }
    .sectionHomeTitle h2{
        font-size: 20px;
    }
    .sectionHomeTitle p{
        font-size: 13px;
        margin-bottom: 0
    }
}

/* SERVICE */
.mainService{
    padding:90px 0;
}
.mServiceItem{
    background: #FFF;
    border-radius:14px;
    padding:30px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
    transition:0.2s;
    display: block;
    margin-bottom: 20px;
}
.mServiceItem:hover{
    transform:translateY(-6px);
}
.mSIicon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:rgba(22,163,74,0.10);
    color:#15803d;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    font-size:24px;
}
.mServiceItem i{
    font-size: 34px;
}
.mServiceItem h6{
    font-weight: bold;
    margin-top: 15px;
}
.mServiceItem button{
    background: #FFF; border: none;
}
.mServiceItem a, .mServiceItem button{
    margin-top:5px;
    display:inline-flex;
    align-items:center;
    font-weight:600;
    color:#198754;
    text-decoration:none;
    transition:transform .25s ease;
}
.mServiceItem a i, .mServiceItem button i{
    font-size: 20px;
    margin-top:5px;
    margin-left: 10px;
    font-weight: bold;
    display: inline-block;
    transition:transform .25s ease;
}
.mServiceItem a:hover > i, .mServiceItem button:hover i{
    transform:translateX(10px);
}
@media(max-width: 992px){
    .mainService{
        padding:50px 0;
    }
    .mServiceItem{
        border-radius:10px;
        padding:20px 0 20px 10px;
        box-shadow:0 4px 20px rgba(0,0,0,0.1);
        margin-bottom: 10px;
    }
    .mServiceItem i{
        font-size: 30px;
    }
    .mServiceItem h6{
        font-size: 13px;
        font-weight: bold;
        margin: 10px 0;
    }
    .mServiceItem p{
        font-size: 13px;
    }
    .mServiceItem a, .mServiceItem button{
        font-size: 13px;
        font-weight: bold;
        margin-top: 0;
    }
    .mServiceItem a i, .mServiceItem button i{
        font-size: 14px;
        margin-bottom: 0
    }
}

/* ABOUT */
.clipAbot{
    padding:90px 0;
}
.clipAbot img{
    border-radius:12px;
}
.cAboutLink{
    display:inline-flex;
    align-items:center;
    margin-top:5px;
    font-weight:600;
    color:#198754;
    text-decoration:none;
    transition:all .25s ease;
}
.cAboutLink:hover{
    color:#146c43;
}
.cAboutLink:hover i{
    transform:translateX(10px);
}
.cAboutLink:active{
    transform:translateY(1px);
    opacity:0.8;
}
.cAboutLink i{
    font-size: 18px;
    transition:transform .25s ease;
    margin-top: 5px;
    margin-left: 10px
}
@media(max-width: 992px){
    .clipAbot{
        padding:50px 0;
    }
    .clipAbot img{
        border-radius:10px;
        margin-bottom: 25px;
    }
    .clipAbot h2{
        font-size: 18px;
    }
    .clipAbot p{
        font-size: 14px;
    }
    .cAboutLink{
        font-size: 14px;
        font-weight: bold
    }
    .cAboutLink i{
        font-size: 16px;
    }
}

/* ACHIEVEMENT */
.homeAchieve{
    padding:90px 0;
}
.hAchieveGrid{
    margin-top:40px;
}
.hAchieveItem{
    background:#fff;
    border-radius:14px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,0.05);
    transition:all .25s ease;
    display: block;
    margin-bottom: 25px;
}
.hAchieveItem:hover{
    transform:translateY(-5px);
}
.haiTitle{
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
    color:#333;
}
.haiNumber{
    font-family:'Rajdhani', sans-serif;
    font-size:38px;
    font-weight:700;
    color:#198754;
    line-height:1.1;
}
.haiNumber small{
    font-size: 20px;
}
.haiInfo{
    font-size:13px;
    color:#777;
    margin-top:4px;
}
@media(max-width: 992px){
    .homeAchieve{
        padding:50px 0;
    }
    .hAchieveGrid{
        margin-top:5px;
    }
    .hAchieveItem{
        border-radius:10px;
        padding:20px 10px;
        box-shadow:0 4px 20px rgba(0,0,0,0.1);
        margin-bottom: 10px;
    }
    .haiTitle{
        font-size:14px;
        font-weight:600;
        margin-bottom:12px;
        color:#333;
    }
    .haiNumber{
        font-size:34px;
        font-weight:700;
    }
    .haiInfo{
        font-size:12px;
    }
}


/* FOOTER */
footer{
    background:#1f1f1f;
    color:#d1d1d1;
    font-size:15px;
}
.footer-top{
    padding:50px 0;
}
.footer-title{
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:10px;
}
.footer-tagline{
    max-width:420px;
    color:#bdbdbd;
}
.footer-social{
    display:flex;
    gap:14px;
    justify-content:flex-end;
    align-items:center;
}
.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:#2c2c2c;
    color:#fff;
    transition:all .25s ease;
}
.footer-social a i{
    font-size: 20px;
}
.footer-social a:hover{
    background:#198754;
    transform:translateY(-3px);
}
.footer-bottom{
    border-top:1px solid #333;
    padding:18px 0;
    text-align:center;
    font-size:14px;
    color:#9a9a9a;
}
.footer-bottom a{
    text-decoration: none;
    color: #CCC;
    font-size: 13px;
    font-weight: bold
}
@media (max-width:992px){
    .footer-title{
        font-size:16px;
    }
    .footer-tagline{
        font-size: 13px;
    }
    .footer-social{
        justify-content:flex-start;
        margin-top:15px;
    }
    .footer-top{
        padding:40px 0;
    }
    .footer-bottom{
        font-size:13px;
    }
    .footer-bottom a{
        font-size: 12px;
    }
}

/*PAGETITLE*/
.pageTitle{
    background-size: cover;
    background-attachment: fixed!important
}
.pageTitleLayer{
    background: rgba(0,0,0, 0.8);
    padding: 120px 0 50px
}
.pageTitleLayer h1{
    color: #FFF;
    font-weight: bold;
    margin-bottom: 10px
}
.pageTitleLayer p{
    color: #FFF;
    font-size: 18px;
    font-weight: 100;
    margin: 0
}
.rkBreadcrumb{
    text-align: right;
    margin-top: 25px
}
.rkBreadcrumb a{
    font-size: 14px;
    color: #FFF;
    text-decoration: none
}
.rkBcSeparator .feather{
    width: 16px;
    height: 16px;
    color: #FFF!important
}
.pageBody{
    padding: 70px 0
}
@media(max-width: 992px){
    .pageTitleLayer h1{
        font-size: 26px
    }
    .pageTitleLayer p{
        color: #FFF;
        font-size: 14px
    }
    .pageBody{
        padding: 30px 0
    }
}

/*ABOUT*/
.about{
    padding: 90px 0;
}
.about img{
    margin-bottom: 25px
}
.about-item{
    margin-bottom: 40px;
}
.aboutTitle{
    text-align: center
}
.about-item h3{
    font-size: 24px;
    font-weight: bold
}
.about-item h4{
    font-size: 18px
}
.about-item ol, .about-item ul{
    padding-left: 15px
}
.about-item p{
    font-size: 16px;
    margin-bottom: 15px
}
.pengurus{
    text-align: center;
    margin-bottom: 30px
}
.pengurus img{
    width: 200px;
    margin-bottom: 10px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #CCC
}
.pengurus h3{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px
}
span.separator{
    width: 50px;
    height: 3px;
    background: #666666;
    display: block;
    margin: 0 auto 20px
}
.pengurus h4{
    margin-bottom: 0;
    font-size: 17px;
    font-weight: bold
}
.pengurus p{
    margin-bottom: 35px
}

@media(max-width: 992px){
    .about{
        padding: 50px 0;
    }
    .about-item{
        margin-bottom: 30px;
    }
    .about-item h3{
        font-size: 18px
    }
    .about-item h4{
        font-size: 16px
    }
    .about-item p{
        font-size: 13px;
    }
    .about-item p, .about-item li{
        font-size: 13px
    }
    .pengurus img{
        padding: 5px
    }
    .pengurus h4{
        font-size: 15px
    }
    .pengurus p{
        margin-bottom: 35px;
        font-size: 13px
    }
}


/*PROGRAM*/
.program{
    padding:80px 0 90px;
    background:#f7f7f7;
}

.program-intro{
    max-width:860px;
    margin:0 auto 40px;
    text-align:center;
}
.program-intro p{
    font-size:18px;
    line-height:1.8;
    color:#5b6472;
    margin-bottom:0;
}

/* QUICK TAB */
.program-tab{
    margin-bottom:60px;
}

.program-tab-card{
    display:block;
    background:#ffffff;
    border-radius:18px;
    padding:22px 20px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(15,23,42,0.05);
    transition:all .25s ease;
    height:100%;
    border:1px solid rgba(15,23,42,0.04);
}

.program-tab-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(15,23,42,0.08);
}

.program-tab-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:rgba(22,163,74,0.10);
    color:#15803d;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    font-size:24px;
}

.program-tab-card h5{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:8px;
}

.program-tab-card p{
    font-size:15px;
    line-height:1.7;
    color:#667085;
    margin-bottom:0;
}

/* DETAIL BLOCK */
.program-block{
    background:#ffffff;
    border-radius:24px;
    padding:36px 36px 46px;
    margin-bottom:30px;
    box-shadow:0 12px 35px rgba(15,23,42,0.05);
    border:1px solid rgba(15,23,42,0.04);
}
.program-image img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
}
.program-content h3{
    font-size:34px;
    font-weight:700;
    line-height:1;
    color:#111827;
    margin-bottom:14px;
}
.program-content p{
    font-size:16px;
    line-height:1.5;
    color:#5b6472;
}
.program-list{
    list-style:none;
    padding:0;
    margin:0 0 24px;
}
.program-list li{
    font-size:16px;
    position:relative;
    padding-left:24px;
    color:#4b5563;
    line-height:1.5;
}
.program-list li:before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#16a34a;
}

.program-price{
}
.program-price span{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    padding: 2px 10px;
    border-radius: 5px;
    letter-spacing:.4px;
    text-transform:uppercase;
    color:#6b7280;
    margin-bottom:0;
    background:rgba(22,163,74,0.10);
}
.program-price strong{
    display: block;
    font-size:22px;
    font-weight:bold;
    color:#111827;
    margin-bottom: 30px;
}
.program-action{
    display:inline-flex;
    gap:10px;
    font-size:16px;
    font-weight:700;
    transition:all .25s ease;
    padding-bottom: 8px;
}
.program-action .bi{
    font-size:20px;
    transition:transform .25s ease;
    line-height:1;
}
.program-action:hover .bi{
    transform:translateX(4px);
}

/* CLOSING BOX */
.program-closing{
    margin-top:20px;
    background:linear-gradient(135deg,#166534,#15803d);
    border-radius:24px;
    padding:42px 34px;
    text-align:center;
    color:#ffffff;
}
.program-closing h4{
    font-size:30px;
    font-weight:700;
    margin-bottom:12px;
}
.program-closing p{
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,0.88);
    max-width:740px;
    margin:0 auto 20px;
}
.program-closing a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#ffffff;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
}
.program-closing a .bi{
    font-size:20px;
    line-height:1;
}

/* MOBILE */
@media(max-width: 992px){
    .program{
        padding:60px 0 70px;
    }
    .program-intro p{
        font-size:14px;
    }
    .program-block{
        padding:20px;
        border-radius:10px;
    }
    .program-tab{
        margin-bottom:60px;
    }
    .program-tab-card{
        display:block;
        border-radius:10px;
        padding:14px 8px 14px 8px;
    }
    .program-tab-card:hover{
        transform:translateY(-6px);
        box-shadow:0 16px 35px rgba(15,23,42,0.08);
    }
    .program-tab-icon{
        width:40px;
        height:40px;
        border-radius:10px;
        margin-bottom:14px;
    }
    .program-tab-card h5{
        font-size:13px;
        font-weight:bold;
    }
    .program-tab-card p{
        font-size:14px;
        line-height:1.4;
    }
    /* DETAIL BLOCK */
    .program-block{
        border-radius:10px;
        padding:20px 20px 30px;
        margin-bottom:30px;
    }
    .program-image img{
        border-radius:10px;
    }
    .program-content h3{
        font-size:20px;
        font-weight:bold;
        line-height:1;
        margin-bottom:10px;
    }
    .program-content p{
        font-size:14px;
    }
    .program-list{
        margin-bottom: 10px;
    }
    .program-list li{
        font-size:14px;
    }
    .program-list li:before{
        content:"";
        position:absolute;
        left:0;
        top:6px;
        width:8px;
        height:8px;
    }
    .program-price{
        margin-bottom: 20px;
    }
    .program-price span{
        font-size:11px;
    }
    .program-price strong{
        font-size:20px;
        font-weight:bold;
        margin-bottom: 30px;
    }
    .program-action{
        font-size:14px;
    }
    /* CLOSING BOX */
    .program-closing{
        margin-top:20px;
        border-radius:14px;
        padding:32px 20px;
    }
    .program-closing h4{
        font-size:20px;
        margin-bottom:10px;
    }
    .program-closing p{
        font-size:14px;
        line-height:1.5;
        width: 100%;
    }
    .program-closing a{
        display:inline-flex;
        align-items:center;
        gap:10px;
        color:#ffffff;
        text-decoration:none;
        font-weight:700;
        font-size:15px;
    }
    .program-closing a .bi{
        font-size:20px;
        line-height:1;
    }
}

/*ARTIKEL POST*/
.post{
    background: #FFF;
    padding: 50px 0
}
.post-item{
    margin-bottom: 50px;
}
.postImg{
    overflow: hidden;
}
.postImg img{
    border-radius: 10px;
    /*height: 100%;*/
}
.post-item.withBg{
    background: #DDD!important
}
.post-item .postInfo{
    margin-bottom: 5px
}
.post-item .postInfo span{
    font-size: 12px;
    color: #666
}
.post-item .postInfo a{
    font-size: 12px;
    color: #3333ff
}
.post-item h4{
    text-align: left;
    font-size: 18px;
    font-weight: bold
}
.post-item p{
    font-size: 14px;
    margin-bottom: 5px;
}
.post-item .btn{
    font-weight: bold;
    padding: 5px 15px;
    font-size: 12px!important;
    margin-bottom: 5px;
}

@media(max-width: 992px){
    .post{
        padding: 20px 0
    }
    .postImg{
        margin-bottom: 25px;
        overflow: hidden
    }
    .postImg img{
        /*height: 100%;*/
    }
    .post-item{
        margin-bottom: 50px;
    }
    .post-item h4{
        text-align: left;
        font-size: 16px
    }
    .post-item p{
        text-align: left;
        font-size: 14px
    }
}

/*GALERY*/
.gallery-section{
    padding: 80px 0 90px;
    background: #f5f5f5;
}

.gallery-head{
    max-width: 760px;
    margin: 0 auto 38px;
}

.gallery-head h2{
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.gallery-head p{
    font-size: 17px;
    line-height: 1.8;
    color: #5b6472;
    margin-bottom: 0;
}

.gallery-grid .gallery-item{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    background: #e5e7eb;
}

.gallery-grid .gallery-item img{
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, filter .35s ease;
}

.gallery-grid .gallery-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
}

.gallery-grid .gallery-item::after{
    content: "\F52A";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    color: #fff;
    font-size: 26px;
    opacity: 0;
    z-index: 2;
    transition: all .3s ease;
}

.gallery-grid .gallery-item:hover::before{
    opacity: 1;
}

.gallery-grid .gallery-item:hover::after{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-grid .gallery-item:hover img{
    transform: scale(1.06);
    filter: saturate(1.05);
}

/* lightGallery custom */
.lg-backdrop{
    background-color: rgba(0,0,0,.92) !important;
}

.lg-toolbar{
    background: transparent !important;
}

.lg-counter{
    color: #fff !important;
    font-size: 18px !important;
    padding-left: 22px !important;
}

.lg-toolbar .lg-icon,
.lg-next,
.lg-prev{
    color: #fff !important;
}

.lg-prev,
.lg-next{
    background: rgba(255,255,255,.08) !important;
    border-radius: 999px;
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.lg-prev:hover,
.lg-next:hover{
    background: rgba(255,255,255,.16) !important;
}

.lg-toolbar .lg-close{
    font-size: 28px !important;
}

.lg-sub-html{
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0)) !important;
    padding: 30px 20px 22px !important;
}

.lg-sub-html h4{
    margin: 0 0 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.lg-sub-html p{
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 992px){
    .gallery-section{
        padding: 60px 0 70px;
    }

    .gallery-head h2{
        font-size: 30px;
    }

    .gallery-head p{
        font-size: 16px;
    }

    .gallery-grid .gallery-item img{
        height: 140px;
    }

    .lg-prev,
    .lg-next{
        width: 44px !important;
        height: 44px !important;
    }
}

/*KONTAK*/
.kontak{
    padding: 100px 0;
}
.kontak iframe{
    width: 100%!important;
    border: 1px solid #999
}
.kontak h5{
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px
}
.footerDivider{
    width: 50px;
    height: 3px;
    background: #666;
    margin-bottom: 15px
}
.sosmed a{
    margin-right: 20px
}
.sosmed a i{
    font-size: 30px;
    opacity: 1;
}
.sosmed a i:hover{
    opacity: 0.7;
}
.smTwitter{
    color: #55acee
}
.smFacebook{
    color: #3b5998
}
.smInstagram{
    color: #3f729b
}
.smYoutube{
    color: #ff0000;
}
.siteLink ul{
    padding-left: 17px
}
.siteLink ul li{
    font-size: 14px;
    list-style: square
}
.siteLink ul li a{
    color: #AAA;
    padding: 5px 0;
    display: inline-block
}
.siteLink ul li a:hover{
    color: #0066B9;
    text-decoration: underline
}
.address{
    margin-bottom: 35px
}
.address ul li a{
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 3px 0;
    display: inline-block;
}
.address ul li a i{
    font-size: 16px;
    margin-right: 10px
}
.address ul li a:hover{
    color: #0066B9;
    text-decoration: none
}

@media(max-width: 992px){
    .kontak h5{
        font-size: 16px
    }
    .sosmed a{
        margin-right: 10px
    }
    .sosmed a i{
        font-size: 20px
    }
    .siteLink a{
        font-size: 14px
    }
    .address p{
        font-size: 14px;
    }
}


/*FORM REGISTRASI*/
.registrasi{
    margin-bottom: 50px
}
.form-wrapper{
    max-width:800px;
    margin:auto;
    margin-top: 50px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}
.registFrom .form-label{
    font-weight:600;
    color:#333;
    font-size: 15px;
}
.registFrom .form-control,
.registFrom .form-select{
    border:1px solid #dcdcdc;
    transition:0.2s;
}
.registFrom .form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 0.15rem rgba(13,110,253,.15);
}
.registFrom .form-text{
    font-size:13px;
}
.registFrom .radio-box{
    padding:12px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    background:#fafafa;
}
#groupField{
    display:none;
}
.registFrom .btn{
    font-weight: bold;
    padding-bottom: 8px
}
.registFrom .btn .feather{
    width: 16px;
    height: 16px;
    margin-top: -5px;
    margin-right: 5px
}
@media(max-width: 992px){
    .form-wrapper{
        width: 100%;
        margin-top: 30px;
        padding:20px;
    }
    .registFrom .form-label{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .registFrom .form-control,
    .registFrom .form-select{
        border:1px solid #dcdcdc;
        transition:0.2s;
        padding: 5px 10px;
    }
    .registFrom .form-check-label{
        font-size: 14px;
    }
    .registFrom .form-text{
        font-size:12px;
    }
    .registFrom .invalid-feedback{
        font-size: 12px
    }
}