.video .title-flex {
	width: 996px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.video {
	padding: 69px 0 43px;
	border-bottom: 1px solid black;
}
.video .custom-video-wrapper {
	width: 996px;
	margin: 18px auto;
	position: relative;
	background: #000;
}
.video .custom-video-wrapper video {
	width: 100%;
	height: auto;
	display: block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.video .custom-video-wrapper video::-webkit-media-controls-panel {
	display: flex !important;
	opacity: 1 !important;
}
.video .custom-video-wrapper .video-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	transition: opacity 0.3s ease;
}
.video .custom-video-wrapper .video-cover.hidden {
	opacity: 0;
	pointer-events: none;
}
.video .custom-video-wrapper .video-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.video .custom-video-wrapper button {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: none;
	background: none;
	cursor: pointer;
	height: 81px;
	width: 105px;
	z-index: 10;
}
.video .custom-video-wrapper button:hover {
	opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1080px) {
	.video .title-flex {
		width: 95%;
	}
	.video .custom-video-wrapper {
		width: 95%;
	}
}

@media (max-width: 767px) {
.video .custom-video-wrapper button {
	height: 80px;
	width: 74px;
}
}