

/* Videos */
.video-wrapper {
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.video-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}
.video-wrap.fullscreen {
    height: 100vh;
    min-height: 800px;
}
.video-wrap.fullscreen > iframe,
.video-wrap.fullscreen > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    min-width: 100%;
    height: 100%;
}
.video-wrap.fullscreen > .container {
    height: 100%;
}


