@charset "UTF-8";

 .bg-video-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.bg-video-wrap video {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center center;
}

.bg-video-wrap:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-background-size: 2px 2px;
    -moz-background-size: 2px 2px;
    background-size: 2px 2px;
    background-color: rgba(51, 51, 51, 0.2);
    background-image: -webkit-gradient(linear, 0 0, 100% 0, color-stop(0.5, rgba(51, 51, 51, 0.5)), color-stop(0.5, transparent), to(transparent));
    background-image: -moz-linear-gradient(left, rgba(51, 51, 51, 0.5) 50%, transparent 50%, transparent);
    background-image: -o-linear-gradient(left, rgba(51, 51, 51, 0.5) 50%, transparent 50%, transparent);
    background-image: -ms-linear-gradient(left, rgba(51, 51, 51, 0.5) 50%, transparent 50%, transparent);
    background-image: linear-gradient(left, rgba(51, 51, 51, 0.5) 50%, transparent 50%, transparent);
}