.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
}


/* Style untuk tombol swiper */

.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    /* Menentukan lebar tombol */
    height: 40px !important;
    /* Menentukan tinggi tombol */
    background-color: black;
    /* Background hitam */
    border-radius: 50%;
    /* Membuat bentuk lingkaran */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /* Warna icon tombol */
    /* Ukuran ikon */
    transition: background-color 0.3s ease;
    /* Efek transisi saat hover */
}


/* Menambahkan efek saat hover */

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #444;
    /* Warna background hitam sedikit lebih terang saat hover */
}

@media(max-width:500px) {
    .swiper-slide img {
        width: 100%;
        height: 100px;
        object-fit: cover !important;
    }
}