.video-block {
	h2 {
		font-size: 32px;
		text-align: center;
		margin-bottom: 32px;
		text-wrap: balance;
	}
	
	.video_box {
		position: relative;
		padding-top: 54.7%;
		overflow: hidden;
		border-radius: 24px;
		
		video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			display: block;
			object-fit: cover;
		}
	}
	
	@media (max-width: 1199px) {
		.container {
			padding: 0;
		}
		
		h2 {
			font-size: 18px;
			margin-bottom: 16px;
		}
		
		.video_box {
			border-radius: 0;
		}
	}
}