#scrolling-container {
    width: 100%; /* or any fixed width */
    overflow: hidden;
    white-space: nowrap;
}

#scrolling-container img {
    height: 371px;
    width: 558px;
    display: inline-block;
}

.scrolling-buttons {
    /*position: absolute;*/
    top: 57%;
    width: 85px;
    height: 85px;
    background: rgba(0, 0, 0, 255); /* Semi-transparent black */
    opacity: 0.6;
    font-size: 30px;
    color: white;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* For tablets */
@media (max-width: 768px) {
    .scrolling-buttons {
        width: 70px;
        height: 70px;
    }
}

/* For smartphones */
@media (max-width: 480px) {
    .scrolling-buttons {
        width: 50px;
        height: 50px;
    }
}

.scrolling-buttons.carousel-control-next {
    right: -150px;
}

.scrolling-buttons.carousel-control-prev {
    left: -150px;
}

.scrolling-buttons-container {
    display: flex;
    align-items: center;
}


.scrolling-buttons-button {
    position: absolute;
    display: flex; /* Show when viewport width is more than 760px */
    justify-content: center;
    align-items: center;
}

.scrolling-buttons-button-left {
    left: 0;
}

.scrolling-buttons-button-right {
    right: 0;
}