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

.flex-content.banner-video-popup .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-attachment: fixed;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.flex-content.banner-video-popup .bg.shift {
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: calc(150%) auto;
}

.flex-content.banner-video-popup .floating {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 1600px;
	pointer-events: none;
}

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

.flex-content.banner-video-popup .text .main-title {
	font-size: 56px;
	font-weight: 600;
	line-height: 110%;
	margin: 0 0 24px !important;
	margin: 0;
	color: var(--navy-blue);
}

.flex-content.banner-video-popup .text:not(.text-center) .main-title {
	max-width: 598px;
}

.flex-content.banner-video-popup .text .main-title sup, .flex-content.banner-video-popup .text .main-title sub {
	font-size: .65em;
}

.flex-content.banner-video-popup .text .subtitle {
	font-family: "Poppins", sans-serif;
	font-size: .8em;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	margin: 30px 0px 6px 0px;
}

.flex-content.banner-video-popup .text:not(.text-center) .subtitle {
	max-width: 433px;
}

.flex-content.banner-video-popup .text .buttons {
	display: flex;
	margin: 0 -12px;
}

.flex-content.banner-video-popup .text.text-center .buttons {
	justify-content: center;
}

.flex-content.banner-video-popup .text .buttons .btn {
	margin: 24px 12px 0;
}

.flex-content.banner-video-popup .main-img {
	position: relative;
}

.flex-content.banner-video-popup .main-img.video {
	cursor: pointer;
}

.flex-content.banner-video-popup .main-img.video .play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 18%;
	aspect-ratio: 1;
	z-index: 10;
}

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

.flex-content.banner-video-popup .main-img.video .play .play-btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 23% auto;
	background-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' height=\'1em\' viewBox=\'0 0 384 512\'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill=\'%23fff\' d=\'M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z\'/%3E%3C/svg%3E");
}

@keyframes animate-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 109, 74, .7), 0 0 0 0 rgba(255, 109, 74, .7);
	}
	
	40% {
		box-shadow: 0 0 0 10px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 109, 74, .7);
	}
	
	80% {
		box-shadow: 0 0 0 10px rgba(255, 109, 74, 0), 0 0 0 10px rgba(255, 109, 74, 0);
	}
	
	100% {
		box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 10px rgba(255, 109, 74, 0);
	}
}

@media only screen and (max-width: 1399px) {
	.flex-content.banner-video-popup .text .main-title {}
}

@media only screen and (max-width: 1199px) {
	.flex-content.banner-video-popup .floating {
		height: 50%;
		width: auto;
		right: 0;
		transform: none;
	}
	
	.flex-content.banner-video-popup .floating img {
		width: auto;
		height: auto;
		object-fit: contain;
		object-position: bottom right;
	}
}

@media only screen and (max-width: 991px) {
	.flex-content.banner-video-popup {
		padding: 40px 0 110px !important;
	}
	
	.flex-content.banner-video-popup .floating {
		height: 300px;
		top: 60%;
	}
}

@media (max-width: 767px) {
	.flex-content.banner-video-popup .text .main-title {}
	
	.flex-content.banner-video-popup .text .buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.flex-content.banner-video-popup .main-img {
		margin-top: 40px;
	}
	
	.flex-content.banner-video-popup .bg {
		background-position: top center;
		background-size: 500%;
	}
}
