.swiper-wrapper {
    padding-bottom: 50px;
    position: relative;
}

@media (max-width:1084px) {
    .swiper-wrapper {
        padding-bottom: 240px;
    }
}

@media (max-width:1008px) {
    .swiper-wrapper {
        padding-bottom: 250px;
    }
}

@media (max-width:486px) {
    .swiper-wrapper {
        padding-bottom: 270px;
    }
}

@media (max-width:352px) {
    .swiper-wrapper {
        padding-bottom: 280px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

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

.swiper-button-next,
.swiper-button-prev {
    z-index: 19;
    color: #000000;
    top: calc(100% - 20px);
    /* transform: translate(-30px); */
}

.swiper-button-prev {
    left: 50%;
    transform: translate(-65px);
}

.swiper-button-next {
    right: 50%;
    transform: translate(65px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    position: relative;
    font-size: 14px;
}

.swiper-pagination-bullet {
    background-color: white;
    border: 1px solid black;
    width: 8px;
    height: 8px;
    opacity: 1;
    margin: 0 12px !important;
}

.swiper-pagination-bullet-active {
    background-color: black;
}

.play,
.stop {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(100% - 30px);
    left: 50%;
    transform: translate(-90px);
    z-index: 20;
    color: rgb(0, 0, 0);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    line-height: 1;
}

.play {
    display: none;
}