* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background-color: #f0f0f0;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 650px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 100px;
    max-width:100px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    margin: 0 5px;
    opacity: 0.6;
}
.thumbnail img {
    width: 100px;
    max-width:100px;
    height: 50px;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .slide {
        height: 300px;
    }

    .thumbnail {
        width: 80px;
        height: 40px;
    }
}
