.video-carousel-1 {
    position: relative;
}

.video-carousel-1 .cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 290px;
    border-radius: 20px;
}

.video-carousel-1 .swiper-slide {
    transform: scale(.8);
    transition: ease all .8s;
}

.video-carousel-1 .swiper-slide[class*="active"] {
    transform: scale(1);
}

.video-carousel-1 .swiper-slide .des {
    position: absolute;
    bottom: 0;
    right: 0;
}

.video-carousel-1 .swiper-slide .des {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 12px;
    z-index: 50;
}

.video-carousel-1 .swiper-slide .des .des-content {
    position: relative;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 10px;
}

.video-carousel-1 .des-content .title {
    font-size: 15px;
    font-weight: bold;
}

.video-carousel-1 .des-content .subtitle {
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 300;
}

.video-carousel-1 .swiper-buttons > div {
    opacity: 0;
    position: absolute;
    top: 45%;
    right: -23px;
    pointer-events: none;
    transform: scale(.5);
    transition: ease .4s;
    z-index: 20;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: rgba(255, 18, 18, .55);
    font-size: 22px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
}

.video-carousel-1 .swiper-buttons .video-carousel-button-prev {
    left: -23px;
    right: auto;
}

.video-carousel-1 .swiper-slide[class*="active"] .swiper-buttons > div {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.video-carousel .des .arrow-icon {
    position: absolute;
    top: 8px;
    left: 7px;
    z-index: 10;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    box-shadow: 8px 0 7px rgba(0, 0, 0, .13);
    font-size: 15px;
    padding: 8px;
    text-align: center;
    color: #000;
    background-color: #fff;
}

.video-carousel-1 .des-content .subtitle {
    max-height: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: max-height 1s;
    -moz-transition: max-height 1s;
    -ms-transition: max-height 1s;
    -o-transition: max-height 1s;
    transition: max-height 1s;
}

.video-carousel-1 .swiper-slide[class*="active"] .des-content .subtitle {
    max-height: 22px;
}

.video-carousel-1 .play-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

.video-carousel-1 .play-button .play {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, .88);
    color: #959595;
    text-align: center;
    padding-top: 15px;
    border-radius: 50px;
    font-size: 22px;
    cursor: pointer;
}

.videoModal.modal video {
    width: 100%;
}

@media screen and (max-width: 767px){
    .video-carousel-1 .swiper-buttons .video-carousel-button-prev {
        left: 10px;
        top: 10px;
    }
    .video-carousel-1 .swiper-buttons .video-carousel-button-next {
        right: 10px;
        top: 10px;
    }
}