.section-testimoni {
    padding: 50px 0;
}

.carousel-container {
    position: relative;
    height: 22.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 12px;
}

.carousel-item-container {
    position: absolute;
    padding: 1rem;
    width: 100%;
    height: 100%;
    transition-duration: 200ms;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: all 0.3 ease;
    background-color: white;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    height: 219.75px;
    width: 390px;
}

#carouselExampleIndicators {
    height: auto;
    width: 100%;
}

@media (max-width: 420px) {

    .carousel-button {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 420px) {

    .left-carousel-wrapper {
        margin-left: 3rem;
    }
    .right-carousel-wrapper {
        margin-right: 3rem;
    }
    .carousel-container {
        height: 29.5rem;
    }
    /* height: 27rem;
    width: 48rem;  */
    .carousel-container .carousel-wrapper {
        height: 20.81rem;
        width: 37rem;
    }

    .carousel-container .carousel-button-wrapper {
        top: 11rem;
        width: 48rem;
    }
    .carousel-button {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 768px) {
    .carousel-button {
        width: 3rem;
        height: 3rem;
    }
}

@media (min-width: 1200px) {
    .carousel-container .carousel-wrapper {
        height: 27rem;
        width: 48rem;
    }
    .carousel-container .carousel-button-wrapper {
        width: 60rem;
    }
}

.carousel-button-wrapper {
    position: absolute;
    top: 85%;
    display: flex;
    width: 30%;
    color: white;
    justify-content: space-between;
    z-index: 45;
}

.carousel-button {
    border: none;
    background-color: rgb(196, 196, 196);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-iframe {
    width: 100%;
    height: 100%;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modifikasi tombol indikator carousel */
.carousel-indicators [data-bs-target] {
    border: none; /* Menghapus border */
    background-color: rgb(
        190,
        190,
        190
    ); /* Warna latar belakang tombol indikator */
    border-radius: 50%; /* Membuat tombol indikator bulat */
    width: 8px; /* Lebar tombol indikator */
    height: 8px; /* Tinggi tombol indikator */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Menambahkan bayangan hitam */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
    background-color: #7d7d7d;
    transform: scale(1.3);
}

