.video-bg {
    position: absolute  ;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 7;
    background: url(/../image/background.jpg) no-repeat #94a233;
    background-size: cover;
}

.video-bg > video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: 8;
}
 
@supports (object-fit: cover) {
     #video-bg > video {
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         object-fit: cover
     }
 }

@media screen and (max-device-width: 762px) {
    #video-bg > video {
        display: none
        }
 }

.title-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position : absolute;
    z-index : 9;
    top : 0;
    left : 0;
    content: '';
}

.filter {
    background-color: #272018;
    width: 100%;
    height: 100%;
    opacity: 0.6; /* Значение прозрачности */
    filter: alpha(Opacity=70); /* Прозрачность в IE */
    overflow: hidden;
    position : absolute;
    z-index : 9;
    top : 0;
    left : 0;
   }

.video-block {
    position: relative;
}