.fullscreen-video-wrap{
	position: relative;
	top: 0;
	left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
	height: 100vh;
     display: block;
	overflow: hidden;
}
.custom-logo{
    height: 50px;
    width: auto;
}.custom-image{
    height: 50px;
    width: auto;
}
.textdiv{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}
.textdiv h1,p{
    color: #fff ;
    margin-top: 20px;
    font-weight: bold;
}
.container-video{
    position: relative;
}
.bloc-clas{
    display: block;
}
.fullscreen-video-wrap video{
    width: 100%;
     display: block;
}

#videoBG {
    z-index: -1;

/*not work if the screen ratio is below 16/9*/
    width:100%;     
    height: auto;
}
@media (max-width: 767px) {
    #videoBG {
        margin-top: 200px;
    }
    
    .textdiv h1{
        color: #000 ;
    margin-top: 20px;
    font-weight: bold;
    font-size: 30px;
        text-align: center;
    }
    
    
}
@media (min-aspect-ratio: 16/9) {
    #videoBG {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #videoBG { 
        width:auto;
        height: 100%;
    }
}