.vorVideoLayer {
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.1);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
}
.vorVideoLayerService {
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.3);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
}
.vorVideoLayerKontakt {
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.7);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -1;
}
.cd-bg-video-wrapper {
    /* hide video on mobile device */
    /*display: none;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}
.cd-bg-video-wrapper video {
    /* you won't see this element in the html, but it will be injected using js */
    display: block;
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.videoContainer {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.videoContainer img {
    width: 90%;
}
