.carousel-container {
width: 100%;
overflow: hidden;
font-family: "Exo", sans-serif;
}
.carousel {
display: flex;
transition: transform 0.3s ease;
width: 100%;
}
.carousel-item {
flex: 0 0 25%;
padding: 1px;
text-align: center;
text-decoration: none;
color: black;
}
.carousel-item:active, .carousel-item:hover {
color: black;
}
.carousel-item img {
width: 100%;
}
.carousel-item p {
margin-top: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
}
.carousel-bottom-bar {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.carousel-btn {
width: 40px;
background: transparent;
color: #ec6100;
border: none;
font-size: 40px;
cursor: pointer;
flex-shrink: 0;
transition-duration: 0.3s;
}
.carousel-btn:hover {
background: transparent;
}
.carousel-btn:disabled {
opacity: 0.5;
cursor: default;
}
.carousel-btn:disabled:hover {
color: #ec6100;
}
.carousel-btn:not(:disabled):hover {
color: black;
} 
.carousel-indicators {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
margin: 0 20px;
}
.carousel-indicator {
width: 12px;
height: 12px;
background: #8a8a8a;
cursor: pointer;
}
.carousel-indicator.active {
background: #ec6100;
}
@media(max-width:1024px) {
.carousel-item {
flex-basis: 33.33%;
}
}
@media(max-width:767px) {
.carousel-item {
flex-basis: 50%;
}
}
@media(max-width:640px) {
.carousel-item {
flex-basis: 100%;
}
}