.swiper {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

@media screen and (max-width: 900px) {
    .swiper {
        aspect-ratio: 1200/540;
        height: auto;
    }
}

.swiper-wrapper {}

.swiper-slide {
    width: 800px;
    height: 100%;
    flex-shrink: 0;
    opacity: 0.4;
    background-color: #565;
    text-align: center;
    color: #FFF;
    border-radius: 10px;
    overflow: hidden;

}

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

@media screen and (max-width: 900px) {
    .swiper-slide {
        width: 100%;
        height: auto;
    }

    .swiper-slide img {
        object-fit: contain;
        height: auto;
    }
}

.swiper-slide-prev,
.swiper-slide-next {
    /* opacity: 0.5; */
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 1.6rem;
    padding: 25px 20px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #FFF;
    opacity: 1;
}

.swiper-description {
    background: #aaa;
    absolute: bottom;
    left: 0;
    width: 100%;
    padding: 10px;
    color: #FFF;
    z-index: 1000;
}