.videoContainer 
{
    position:absolute;
    height:100%;
    width:100%;
    overflow: hidden;
	background: #000;
    /*
    background-image: url(images/video.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60%;
    */
}
.videoContainer video { 
	width: 100%;
	height: 100vh; 
	min-height: 100%;
}
@media screen and (aspect-ratio: 4/3) { 
	/* 1024x768 styles here */
	.videoContainer video { 
		transform: scaleY(1.333);
	}
}
@media screen and (aspect-ratio: 5/4) {
	/* 1280x1024 styles here */
	.videoContainer video { 
		transform: scaleY(1.42);
	}
}
/*
.plyr__controls, .plyr__captions, .plyr__control {
	display: none !important;
}
*/