.swiper {
    width: 80%;
    max-height: 400px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25)
}

@media(max-width:1024px) {
    .swiper {
        width: 75%;
        height: 400px
    }
}

@media(max-width:767px) {
    .swiper {
        width: 100%;
        height: 340px
    }

    .swiper-pagination-bullet {
        border-radius: 50%;
        width: 2%
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
    color: #fff
}

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, .35);
    border-radius: 50%;
    backdrop-filter: blur(3px)
}

.btn-next,
.btn-prev {
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 0, 0, .35) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(3px) !important
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 25px !important;
    color: #fff
}

.swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    background: rgba(255, 255, 255, .5);
    border-radius: 10px;
    opacity: 1
}

.swiper-pagination-bullet-active {
    background: #fff !important
}