body {
    font-family: Poppins, sans-serif;
}

/** Carousel starts here **/
:root {
    --items-per-page: 9;
}

.carousels {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-containers {
    white-space: nowrap;
}

.carousel-items {
    display: inline-block;
    min-width: calc(100% / var(--items-per-page)); /* Display 3 items at a time */
    box-sizing: border-box;
    padding: 0px;
    text-align: center;
}

.carousel-items>img{
    border-radius: 8px;
    box-shadow: 0 0 5px grey;
}