.flex-content.banner-video-background {
	position: relative;
}

.flex-content.banner-video-background .video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.flex-content.banner-video-background .video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flex-content.banner-video-background .bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.flex-content.banner-video-background .container {
	position: relative;
}

.flex-content.banner-video-background .play-col {
	position: relative;
}

.flex-content.banner-video-background .play.hide {
	display:none;
}

.flex-content.banner-video-background .play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 122px;
	aspect-ratio: 1;
	cursor: pointer;
}

.flex-content.banner-video-background .play .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: rgba(255,255,255, 1);
	animation: animate-pulse 2s linear infinite;
}

.flex-content.banner-video-background .play .play-btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 55% center;
	background-size: 75px;
	background-image: url("https://www.rectanglehealth.com/wp-content/uploads/2025/10/play-solid-full.svg");
}
 
.flex-content.banner-video-background .eyebrow,
.flex-content.banner-video-background .main-title,
.flex-content.banner-video-background .sub_text {
	color: #fff;
}

.flex-content.banner-video-background .eyebrow {
	margin: 0 0 24px;
}

.flex-content.banner-video-background .main-title {
	font-size: 56px;
	font-weight: 600;
	line-height: 110%;
	margin: 0 0 24px;
}

.flex-content.banner-video-background .sub_text {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 36px;
}

.flex-content.banner-video-background .text > *:last-child,
.flex-content.banner-video-background .sub_text > *:last-child {
	margin-bottom: 0;
}

.flex-content.banner-video-background .text.bg {
	background-color: #fff;
	border-radius: 24px;
	padding: 32px;
}

.flex-content.banner-video-background .text.bg .eyebrow,
.flex-content.banner-video-background .text.bg .main-title,
.flex-content.banner-video-background .text.bg .sub_text {
	color: var(--navy-blue);
}

@media only screen and (max-width: 991px) {
	.flex-content.banner-video-background {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.flex-content.banner-video-background .main-title {
		font-size: 36px;
	}

	.flex-content.banner-video-background .play {
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		margin: 30px 0 0;
		width: 62px;
	}
	
	.flex-content.banner-video-background .play .play-btn:after {
background-size:50%;
	}

}