/* ==========================================================
   HOME PAGE - PORTAL LAYANAN
   SLB BINA SEJAHTERA
==========================================================*/

/* =========================
   WRAPPER
=========================*/

.home-top{
   margin-top:-85px;
    margin-bottom:80px;
    position:relative;
    z-index:20;
}

/* =========================
   CARD UTAMA
=========================*/

.home-card{
    background:linear-gradient(180deg,#ffffff,#fcfdfe);
    border-radius:28px;
    padding:40px;
    border:1px solid #eef3f8;
    box-shadow:
        0 20px 45px rgba(11,79,138,.05),
        0 5px 15px rgba(0,0,0,.03);
}

/* =========================
   HEADER
=========================*/

.shortcut-header{
    margin-bottom:15px;
}

.shortcut-header:before{
    content:"";
    display:block;
    width:40px;
    height:4px;
    background:#0B4F8A;
    border-radius:30px;
    margin-bottom:14px;
}

.shortcut-header h2{
    font-size:34px;
    font-weight:800;
    color:#0B4F8A;
    margin-bottom:8px;
}

.shortcut-header p{
    color:#64748B;
    font-size:15px;
    line-height:28px;
    margin:0;
}

/* =========================
   GARIS
=========================*/

.portal-divider{
    height:1px;
    background:linear-gradient(
        90deg,
        #edf2f7,
        rgba(255,255,255,0)
    );
    margin:25px 0;
}

/* =========================
   SEARCH
=========================*/

.search-box{
    margin-bottom:45px;
}

.search-box .input-group{
    display:flex;
}

.search-box .form-control{

    height:58px;

    border:1.5px solid #E2E8F0;

    border-right:none;

    border-radius:10px 0 0 10px;

    background:#fff;

    font-size:15px;

    color:#475569;

    box-shadow:none;

    padding-left:18px;

    transition:.35s;
}

.search-box .form-control:focus{

    border-color:#0B4F8A;

    background:#fff;

    box-shadow:0 0 0 4px rgba(11,79,138,.08);

}

.search-box input::placeholder{

    color:#94A3B8;

}

.search-box .btn{

    width:58px;

    height:58px;

    border:none;

    border-radius:0 10px 10px 0;

    background:#0B4F8A;

    color:#fff;

    transition:.35s;

}

.search-box .btn:hover{

    background:#083B67;

}

/* =========================
   GRID
=========================*/

.slb-shortcut-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

/* =========================
   CARD MENU
=========================*/

    .slb-shortcut-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FBFE 100%
        );

    border:1px solid #EEF2F7;

    border-radius:22px;

    min-height:160px;

    padding:25px 15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.35s ease;

    box-shadow:0 8px 24px rgba(15,23,42,.045);

}

.slb-shortcut-card:before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#0B4F8A;

    transform:scaleX(0);

    transition:.35s;

}

.slb-shortcut-card:hover:before{

    transform:scaleX(1);

}

.slb-shortcut-card:hover{

    transform:translateY(-8px);

    border-color:#0B4F8A;

    box-shadow:
        0 18px 40px rgba(11,79,138,.12);

}

/* =========================
   ICON
=========================*/

.shortcut-icon{

    width:68px;

    height:68px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F3F8FD;

    border-radius:16px;

    margin-bottom:16px;

    transition:.35s;

}

.shortcut-icon img{

    width:42px;

    height:42px;

    object-fit:contain;

    transition:.35s;

}

.slb-shortcut-card:hover .shortcut-icon{

    background:#EAF4FF;

    transform:translateY(-4px);

}

.slb-shortcut-card:hover img{

    transform:scale(1.12);

}

/* =========================
   TEXT
=========================*/

.slb-shortcut-card span{

    font-size:15px;

    font-weight:600;

    color:#475569;

    transition:.35s;

}

.slb-shortcut-card:hover span{

    color:#0B4F8A;

}

/* =========================
   RESPONSIVE
=========================*/

@media(max-width:991px){

    .slb-shortcut-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .home-top{

        margin-top:-50px;
        margin-bottom:80px;

    }

    .home-card{

        padding:25px;

        border-radius:28px;

    }

    .shortcut-header h2{

        font-size:28px;

    }

    .shortcut-header p{

        font-size:14px;

        line-height:24px;

    }

    .search-box .form-control,

    .search-box .btn{

        height:58px;

    }

    .slb-shortcut-grid{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .slb-shortcut-card{

        min-height:145px;

        padding:22px 15px;

    }

    .shortcut-icon{

        width:55px;

        height:55px;

        border-radius:14px;

    }

    .shortcut-icon img{

        width:34px;

        height:34px;

    }

    .slb-shortcut-card span{

        font-size:13px;

    }

}
/* ======================================================
   MOBILE SLIDER
====================================================== */

@media (max-width:768px){

    .slider1-area{

        margin-top:74px;

    }

    .slider-content{

        position:relative;

    }

    .slider-content .title-container{

        position:absolute;

        top:50%;

        left:20px;

        transform:translateY(-50%);

        width:80%;

        display:block !important;

        text-align:left;

    }

    .slider-content .title1{

        font-size:30px !important;

        line-height:1.2;

        margin-bottom:15px;

    }

    .slider-content p{

        font-size:14px !important;

        line-height:24px;

        margin-bottom:20px;

    }

    .slider-btn-area a{

        padding:10px 22px;

        font-size:13px;

    }

}
/* ==========================================================
   HERO SLIDER
========================================================== */

/* Desktop */
.slider1-area{

    position:relative;

}

.slider-direction{

    z-index:20;

}

.slider-content{

    width:100%;

    height:100%;

}

.title-container{

    max-width:650px;

    padding-left:8%;

}

.title-container .title1{

    font-size:58px;

    line-height:1.1;

    font-weight:800;

    color:#fff;

    margin-bottom:20px;

    text-shadow:0 4px 20px rgba(0,0,0,.35);

}

.title-container p{

    font-size:18px;

    line-height:30px;

    color:#fff;

    margin-bottom:30px;

    text-shadow:0 2px 10px rgba(0,0,0,.3);

}

.slider-btn-area .default-big-btn{

    border-radius:10px;

    padding:14px 32px;

}
/* ==========================================================
   MOBILE HERO
========================================================== */

@media (max-width:768px){

.slider1-area{

    margin-top:72px;

}

.title-container{

    width:90%;

    padding:0 25px;

}

.title-container .title1{

    font-size:30px;

    line-height:1.2;

}

.title-container p{

    font-size:14px;

    line-height:24px;

    margin:18px 0;

}

.slider-btn-area .default-big-btn{

    padding:10px 22px;

    font-size:13px;

}

}