.videoSwiper {
    width: 100%;
    overflow: hidden;
}

.videoSwiperWrapper {
    position: relative;
}

.videoSwiper .swiper-slide {}

.videoSwiper .videoCard {
    background-color: rgba(13, 13, 24, 0.7);

    width: 330px;
    height: 302px;

    display: flex;
    flex-direction: column;

    color: #fff;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    margin: 20px 10px;
}

.videoSwiper .videoCard:hover {
    cursor: pointer;
}

.videoSwiper .videoCard .imgContainer {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.videoSwiper .videoCard .imgContainer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 200ms;

}

.videoSwiper .videoCard:hover .imgContainer img {
    transform: scale(1.1);
}

.videoSwiper .videoCard .imgContainer .duration {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.8);

    font-size: 15px;
    font-weight: 700;
    z-index: 2;
}

.videoSwiper .videoCard .infoContainer {
    padding: 18px;
    padding-top: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.videoSwiper .videoCard .infoContainer .title {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;

    color: #fff;
}

.videoSwiper .videoCard .infoContainer .timeInfo {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.videoSwiper .videoCard .infoContainer .timeInfo i {
    font-size: 18px;
    margin-right: 8px;
    color: rgba(135, 134, 224, 0.6);
}





.videoSwiperWrapper .swiper-button-next {
    position: absolute;
    top: 50%;
    right: -50px;
    color: rgba(255, 255, 255, 0.795);
}

.videoSwiperWrapper .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: -50px;
    color: rgba(255, 255, 255, 0.795);
}

@media (max-width: 1100px) {
    .videoSwiperWrapper .swiper-button-next {
        display: none;
    }

    .videoSwiperWrapper .swiper-button-prev {
        display: none;
    }
}