.swiper {
    width: 100%;
    height: 250px;
}

.swiper-slide {
    display: flex;
    width: 35%;
    border-radius: 10px 10px 0px 0px;
    background: #2d2d2d;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-toggle-up {
    position: absolute;
    z-index: 9;
    bottom: 10px;
    width: 29px;
    height: 29px;
    right: 10px;
    background-color: #ffff;
    color: black;
    border-radius: 3px;
    padding: 1px 0px 0px 5px;
    font-size: 19px;
}

.card-toggle-down {
    position: absolute;
    z-index: 9;
    bottom: 265px;
    width: 29px;
    height: 29px;
    right: 10px;
    background-color: #ffff;
    color: black;
    border-radius: 3px;
    padding: 1px 0px 0px 5px;
    font-size:19px;
}


@media (max-width: 767px) {

    .swiper {
        height: 250px;
    }

    .swiper-slide {
        width: 75%;
    }

    .card-toggle-up {
        bottom: 30px;
    }

    .card-toggle-down {
        bottom: 265px;
    }
}