/* =========================================================
    JENIS LAYANAN SURAT
========================================================= */

#layanan{
    background:#f8f9fa;
}

/* Heading */
.section-subtitle{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#e8f1ff;
    color:#0d6efd;
    font-weight:600;
    font-size:14px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#1f2937;
    margin-top:18px;
    margin-bottom:15px;
}

.section-text{
    max-width:650px;
    margin:auto;
    color:#6c757d;
    font-size:17px;
    line-height:1.8;
}

/* Swiper */
.layananSwiper{
    position:relative;
    padding:15px 8px 70px;
}

.layananSwiper .swiper-slide{
    height:auto;
    display:flex;
}

/* Card */
.layanan-card{
    width:100%;
    border:none;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:.35s;
    background:#fff;
}

.layanan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.layanan-card .card-body{
    padding:35px 28px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    text-align:center;
    height:100%;
}

/* Icon */
.layanan-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#0d6efd;
    transition:.35s;
}

.layanan-card:hover .layanan-icon{
    background:#0d6efd;
    color:#fff;
    transform:scale(1.08);
}

/* Judul */
.layanan-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#212529;
}

/* Deskripsi */
.layanan-card p{
    color:#6c757d;
    font-size:15px;
    line-height:1.8;
    min-height:80px;
    margin-bottom:25px;
}

/* Tombol */
.layanan-card .btn{
    border-radius:12px;
    font-weight:600;
    padding:10px 20px;
    transition:.3s;
}

.layanan-card:hover .btn{
    transform:scale(1.03);
}

/* Panah */
.layanan-prev,
.layanan-next{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    color:#0d6efd;
    transition:.3s;
}

.layanan-prev::after,
.layanan-next::after{
    font-size:18px;
    font-weight:bold;
}

.layanan-prev:hover,
.layanan-next:hover{
    background:#0d6efd;
    color:#fff;
}

/* Bullet */
.layanan-pagination{
    bottom:0 !important;
}

.layanan-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#b9c4d6;
    opacity:1;
    transition:.3s;
}

.layanan-pagination .swiper-pagination-bullet-active{
    width:34px;
    border-radius:30px;
    background:#0d6efd;
}

/* =========================================================
    RESPONSIVE
========================================================= */
/* Laptop */
@media(max-width:1200px){

.section-title{
    font-size:36px;
}

.section-text{
    font-size:16px;
}

}

/* Tablet */
@media(max-width:992px){

.section-title{
    font-size:34px;
}

.section-text{
    max-width:560px;
}

.layanan-card .card-body{
    padding:30px 22px;
}

.layanan-card h5{
    font-size:20px;
}

}

/* HP */
@media(max-width:768px){

.section-title{
    font-size:30px;
}

.section-subtitle{
    font-size:13px;
}

.section-text{
    font-size:15px;
    max-width:330px;
}

.layananSwiper{
    padding-bottom:55px;
}

.layanan-card .card-body{
    padding:28px 22px;
}

.layanan-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.layanan-card h5{
    font-size:19px;
}

.layanan-card p{
    font-size:14px;
    min-height:70px;
}

.layanan-prev,
.layanan-next{
    width:42px;
    height:42px;
}

.layanan-prev::after,
.layanan-next::after{
    font-size:15px;
}

}

/* HP kecil */
@media(max-width:480px){

.section-title{
    font-size:27px;
}

.section-text{
    font-size:14px;
}

.layanan-card .card-body{
    padding:24px 18px;
}

.layanan-icon{
    width:64px;
    height:64px;
    font-size:25px;
}

.layanan-card h5{
    font-size:18px;
}

.layanan-card p{
    font-size:13px;
    min-height:auto;
}

.layanan-prev,
.layanan-next{
    display:none;
}

}