.carousel-video {
    position: relative;
    z-index: 8000;
    width: 100%;
    overflow: hidden;
}

.carousel-video:not(.slick-initialized)>.carousel-video__item:not(:first-child) {
    position: absolute;
    opacity: 0;
}

.carousel-video .slick-arrow {
    position: absolute;
    background: transparent center center no-repeat;
    border: none;
    bottom: 0;
    width: 15%;
    opacity: 1;
    font-size: 0;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgb(0 0 0 / 60%);
    top: 0;
    z-index: 100;
}

.carousel-video .slick-arrow.slick-prev {
    left: 0;
    background-image: url(../images/arrow2.png);
}

.carousel-video .slick-arrow.slick-next {
    right: 0;
    background-image: url(../images/arrow3.png);
}

.carousel-video__item {
    position: relative;
    height: calc(100vh - 71px);
}

.carousel-video__item::before {
    content: "";
    display: block;
    padding-top: 41.6667%;
}

.carousel-video__item>img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.carousel-video__item>.caption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 50;
}

.carousel-video__item>.caption h2 {
    margin-top: 0;
    font-size: 12px;
    color: #fff;
    text-shadow: 0 0 5px rgb(0 0 0 / 50%);
}

.carousel-video__item--video::before {
    display: none;
}

.carousel-video__item--video .video-js {
    width: 100%;
    height: 100%;
}

.carousel-video__item--video .video-js .vjs-poster {
    background-size: cover;
}

.carousel-video__item--video .video-js .vjs-tech {
    object-fit: cover;
}

@media (min-width: 992px) {
    .carousel-video__item>.caption h2 {
        font-size: 2.714em;
    }
}