/*
.carousel-container {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 12.5%;  
    box-sizing: border-box;
}
.carousel-controls {
    text-align: center;
    margin-top: 10px;
}
.carousel-controls button {
    margin: 0 5px;
    padding: 10px 20px;
    cursor: pointer;
}

button#prev img {
    width: 35px;
    opacity: 0.7;
}

button#next img {
    width: 35px;
    opacity: 0.7;
}
@media screen and (max-width: 1097px) {
    .carousel-item {
        min-width: 20% !important;
    }
}
@media screen and (max-width: 900px) {
    .carousel-item {
        min-width: 32% !important;
    }
}
@media screen and (max-width: 550px) {
    .carousel-item {
        min-width: 32% !important;
    }
}  
*/