.home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#home-slider-wrap {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.home-slider .slide {
    min-width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-slider .slide.active {
    display: flex;
}
.home-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
}
.home-slider .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

.home-slider .prev, .home-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.home-slider .prev {
    left: 10px;
}

.home-slider .next {
    right: 10px;
}

@media (max-width: 768px) {
    .home-slider .caption {
        font-size: 16px;
    }
    .home-slider .prev, .home-slider .next {
        font-size: 18px;
    }
}