.video-player-section {
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-container {
	width: 100%;

	margin: 0 auto;
}
.video-poster-block {
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background-size: cover;
	background-position: center;

	overflow: hidden;
	cursor: pointer;
}
.video-poster-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s ease;
}

.play-button-large {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;

	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
}
.play-button-large::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 38px solid rgba(90, 202, 250, 1);
}
.video-poster-block:hover .play-button-large {
	transform: translate(-50%, -50%) scale(1.1);
}
.video-poster-block:hover::before {
	background-color: rgba(0, 0, 0, 0.5);
}

.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.is-active {
	opacity: 1;
	visibility: visible;
}
.video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.video-modal-content {
	position: relative;
	z-index: 10;
	width: 90%;
	max-width: 1100px;
}
.video-modal-iframe-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.video-modal-iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
	padding: 0 5px;
}
.video-modal-close:hover {
	color: #5acafa;
}

@media (max-width: 768px) {
	.play-button-large {
		width: 80px;
		height: 80px;
	}
	.play-button-large::after {
		border-top-width: 15px;
		border-bottom-width: 15px;
		border-left-width: 25px;
	}
}
