.flex-layout.video-layout {
	padding-block: 60px;
	position: relative;
}

.flex-layout.video-layout .video_wrapper {
	position: relative;
	border-radius: 5px; overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.30);
}

.flex-layout.video-layout .video_wrapper::before {
	content: ''; position: absolute; inset: 0; z-index: 2;
	background: linear-gradient(180deg, transparent 0%, rgba(33, 33, 33, 0.3) 100%);
	transition: .3s ease-in-out opacity;
	pointer-events: none;
}

.flex-layout.video-layout .video_wrapper iframe {
	width: 100% !important;
	height: 100% !important;
	display: block;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 16/9;
	background-color: white;
}

.flex-layout.video-layout .video_wrapper video {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 16/9;
}

.flex-layout.video-layout .video_wrapper .logo {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	width: 40%;
	max-width: 430px;
	transform: translate(-50%, -50%) scale(1);
	border: none;
	background-color: transparent;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.flex-layout.video-layout .video_wrapper #play_button {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(1);
	border: none;
	background-color: transparent;
	border-radius: 50%;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.flex-layout.video-layout .video_wrapper #play_button svg {
	width: 48px; height: auto;
	aspect-ratio: 1;
}

.flex-layout.video-layout .video_wrapper #play_button.clicked {
	opacity: 0;
}

.flex-layout.video-layout .video_wrapper:hover #play_button.clicked {
	opacity: 1;
}


/* @media screen and (max-width: 1310px) {

	.flex-layout.video-layout .pk-row {
		border-radius: 0px;
	}

} */

@media screen and (max-width: 992px) {
	
	.flex-layout.video-layout {
		padding-block: 60px;
	}
	
	.flex-layout.video-layout .video_wrapper #play_button svg {
		width: 40px;
	}
	
}

@media screen and (max-width: 767px) {
	
	.flex-layout.video-layout {
		padding-block: 40px;
	}
	
	.flex-layout.video-layout .video_wrapper #play_button {
		display: none;
	}
	
	.flex-layout.video-layout .video_wrapper #play_button svg {
		width: 32px;
	}
	
	.flex-layout.video-layout .video_wrapper iframe, .flex-layout.video-layout .video_wrapper video {
		aspect-ratio: 9/16;
	}

}