.video-wrapper {
	width: 100%;
	height: 300px;
	max-height: 25vh; 
	position: relative;
}
video {
 width: 100%;
 height: 100%;
 object-fit: cover;
 filter: brightness(50%);
}
.video-logo {
 background: transparent;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 display: flex;
 -webkit-box-align: center;
	  -ms-flex-align: center;
			align-items: center;
 -webkit-box-pack: center;
	  -ms-flex-pack: center;
			justify-content: center;
 
}
.video-logo img {
	width: 80%;
	height: auto;
	max-height: 60%;
	max-width: 800px;
	object-fit: contain;
	filter: drop-shadow(5px 5px 5px #222);
}
