.carousel-container { height: 100%; width: 100%; @media(max-width: 768px) { display: flex; justify-content: center; } } .carousel { overflow: hidden; height: 100%; width: 100%; @media(max-width: 768px) { width: 90%; display: flex; align-items: center; } } .carousel-slide { display: none; } .carousel-slide.active-slide { display: flex; } .carousel img { width: 100%; max-height: 100vh; object-fit: cover; @media(max-width: 768px) { object-fit: contain; border-radius: 16px; } }