.about-content-wrap {
	display: flex;
	align-items: center;
}
.about-video {
	position: relative;
	display: flex;
	/*overflow: hidden;*/
	margin: 0 auto;
	z-index: 1;
	border-radius: 24px;
	margin-bottom: 32px;
}
.about-video-element {
	height: 100%;
	width: 100%;
	border-radius: 24px;
	object-fit: cover;
}
.about-video-poster {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
	z-index: 1;
	transition: 0.4s ease;
}
.about-video-btn {
	width: 58px;
	height: 58px;
	color: var(--color3);
	background: var(--color2);
	position: absolute;
	right: 50%;
	top: 100%;
	margin: auto;
	z-index: 1;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	border-radius: 100%;
	cursor: pointer;
	transition: 0.4s ease;
	transform: translate(50%, -90%);
}
.video-btn.about-video-btn::before {
	content: '';
	background: var(--color2);
	width: 58px;
	height: 58px;
	border-radius: 100%;
	position: absolute;
	inset: 0;
	z-index: -1;
}
.circle-text-svg {
	position: absolute;
	width: 50px;
	height: 50px;
	fill: transparent;
	font-size: 14px;
	letter-spacing: 3px;
	word-spacing: 8px;
	direction: ltr;
}
.circle-text-svg text {
	fill: var(--color3);
}
.circle-text-svg {
	animation: rotateText 8s linear infinite;
}
.about-video-btn i {
	color: #fff;
	width: 33px;
	height: 33px;
	background: var(--color3);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
}
@keyframes rotateText {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.video-btn-bg {
	position: absolute;
	bottom: 5px;
	background: var(--bg_body);
	width: 119px;
	justify-content: center;
	padding: 7px 17px 2px;
	border-radius: 20px 20px 0 0;
	height: 29px;
	z-index: -2;
}
.video-btn-bg::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -39px;
	height: 40px;
	width: 40px;
	border-bottom-right-radius: 50%;
	box-shadow: 0 21px 0 0 var(--bg_body);
	z-index: 1;
}
.video-btn-bg::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: -39px;
	height: 40px;
	width: 40px;
	border-bottom-left-radius: 50%;
	box-shadow: 0 21px 0 0 var(--bg_body);
	z-index: 1;
}
.intro-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--color1);
	border-radius: 10px;
	padding: 26px 10px;
	color: var(--color2);
	font-size: 16px;
	font-family: var(--med_font);
	flex-direction: column;
	gap: 24px;
}
.intro-btns {
	display: flex;
	align-items: center;
	gap: 12px;
}
.section-pageIntro .features-grid {
	margin-top: 30px;
}
.section-pageIntro {
	background: #fff;
	padding-bottom: 48px;
	padding-top: 132px;
	margin-bottom: 60px;
}
.section-pageIntro .video-btn-bg {
	background: #fff;
}
.section-pageIntro .video-btn-bg::before {
	box-shadow: 0 21px 0 0 #fff;
}
.section-pageIntro .video-btn-bg::after {
	box-shadow: 0 21px 0 0 #fff;
}
.entitle {
	color: var(--color1);
	font-size: 18px;
}
@media screen and (min-width: 768px){
	.intro-cta {
		flex-direction: row;
		padding: 12px 20px 12px 12px;
	}
	.about-video-btn {
		width: 90px;
		height: 90px;
		font-size: 17px;
	}
	.video-btn.about-video-btn::before {
		width: 90px;
		height: 90px;
	}
	.circle-text-svg {
		width: 85px;
		height: 85px;
		font-size: 20px;
		letter-spacing: 3px;
		word-spacing: 8px;
	}
	.about-video-btn i {
		width: 52px;
		height: 52px;
		font-size: 36px;
	}
	.video-btn-bg {
		bottom: 9px;
		width: 154px;
		padding: 7px 17px 2px;
		height: 38px;
	}

	.about-video {
		margin-bottom: 50px;
	}
	.vip-content {
		margin-bottom: 50px;
	}
}