.carousel-container {
    display: flex;
    align-items: center;
    gap: 25px;
}
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
}

.carousel-track {
    display: flex;
    transition: transform 3s ease;
}

.carousel-slide {
    min-width: 50%;
    box-sizing: border-box;
    padding: 20px;
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.carousel-button {
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    background-color: transparent;
}
.carousel-button > img {
    height: 72px;
}
.highlights-carousel .d-flex {
    align-items: center;
    gap: 20px;
}
.highlights-carousel div {
    position: relative;
}
@media screen and (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
        padding: 10px;
    }
    .highlights-div-carousel {
        width: 100%;
    }
    .highlights-carousel .d-flex {
        gap: 5px;
    }
}