/* ======================

    video StyleSheet
    video By Coverr : http://www.coverr.co/

===========================*/

.homepage-hero-module {
    border-right: none;
    border-left: none;
    position: relative;
    min-height: 800px;
}
.no-video .video-container video,
.touch .video-container video {
    display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
    display: block !important;
}
.video-container {
    position: relative;
    bottom: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.video-container .poster img {
    width: 100%;
    bottom: 0;
    position: absolute;
    margin-left: 0px !important;
    top: 0px;
}
.video-container .filter {
    z-index: 100;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    display: none;
}
.video-container video {
    position: absolute;
    z-index: 0;
    bottom: 0;
    top: 0;
    min-height: 880px;
    min-width: 100%;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    object-fit: cover;
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
}
.video-container video.fillWidth {
    width: 100%;
}
@media(max-width:780px) {
    .video-container .filter {
        display: none;
    }
    .video-container .poster img {
        display: block;
    }
}
