.video-cta-area {
	height: 73.4rem;
	background-color: #000;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.video-cta-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(1.25);
}
.video-cta-content-area {
	width: 100%;
	position: relative;
	z-index: 1;
}
.video-cta-content {
	width: 67.2rem;
	max-width: 100%;
}
.video-cta-title {
	font-size: 4rem;
	line-height: 5.6rem;
	color: #fff;
}
.video-cta-text {
	margin-top: 4rem;
	color: #F5F5F5;
}
.video-cta-btns {
	margin-top: 4rem;
	display: flex;
	align-items: center;
	column-gap: 1.2rem;
}
.vcta-btn1 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 700;
	color: #000;
	height: 5.8rem;
	border-radius: 4.8rem;
	background-color: #51BAB2;
	padding: 0 4.4rem;
	column-gap: 1rem;
}
.vcta-icon {
	width: 3.2rem;
	height: 3.2rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vcta-play {
	width: 1.5rem;
	display: flex;
	align-items: center;
	margin-left: .3rem;
}
.vcta-loader {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	transition: all 1.5s;
	transform: rotateZ(0deg);
}
.vcta-btn1:hover .vcta-loader {
	transform: rotateZ(250deg);
}
.video-cta-area::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.39537821964723385) 100%);
}
@media only screen and (max-width: 1050px) {
	.video-cta-area {
		height: auto;
	}
	.video-cta-content-area {
		padding: 58px 0;
	}
	.video-cta-title {
		font-size: 28px;
		line-height: 1.3;
	}
	.video-cta-text {
		margin-top: 15px;
	}
	.video-cta-btns {
		margin-top: 19px;
	}
	.video-cta-video {
		position: absolute;
		top: 0;
		left: 0;
	}
	.video-cta-video video {
		position: static;
		max-width: 1100px;
		width: 1100px;
	}
}
@media only screen and (max-width: 360px) {
	.btn.vcta-btn2 {
		display: none;
	}
}