.slider {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust this value if you want a specific height */
    overflow: hidden;
    margin-top: -5%;
    margin-bottom: 5%;
}

.slide {
    width: 100%;
    height: 100%;
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image covers the container */
    display: block;
}

.slide.active {
    display: block;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation .prev,
.navigation .next {
    cursor: pointer;
    font-size: 2rem;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}