.autoplayer-pro {
	--controls-bg-hover-color: var(--gray-100);
	--controls-text-hover-color: var(--primary-color-700);
	--text-content-bg-color: var(--primary-color-100);
	--text-color: var(--gray-100);
	--border-color: var(--gray-100);
	position: relative;
	overflow: hidden;
	height: 631px;
	display: flex;
}

@media (min-width: 641px) {
	.autoplayer-pro {
		height: 498px;
	}
}

@media (min-width: 1025px) {
	.autoplayer-pro {
		height: 701px;
	}
}

.autoplayer-pro .poster {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	filter: blur(20px);
}

.autoplayer-pro .fallback.loaded .poster {
	filter: none;
}

.autoplayer-pro:before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 10px;
	background-image: url(/includes/public/assets/shared/hero-assets/texture-bottom-sm.svg);
	background-size: cover;
	background-position: top;
	pointer-events: none;
	z-index: 3;
}

.autoplayer-pro:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0) 25%);
	pointer-events: none;
	z-index: 2;
}

.autoplayer-pro .video {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 300ms cubic-bezier(0,0,0.3,1);
}

.autoplayer-pro.video-loaded .video {
	opacity: 1;
}

.autoplayer-pro .video-controls {
	margin-bottom: var(--space-4);
}

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
	color: var(--charcoal);
	border: none;
	border-radius: 50%;
	background-color: var(--yellow);
	border: 2px solid var(--yellow);
	cursor: pointer;
}

.autoplayer-pro .video-control:focus {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--controls-bg-color);
	outline: none;
}

.autoplayer-pro .video-control .fa-play {
	margin-left: var(--space-px);
}

.autoplayer-pro .text-content {
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 0;
	padding: var(--space-8) var(--space-12);
	width: calc(100% - 4rem);
	max-width: var(--width-comfortable);
}

.autoplayer-pro .text-content .title {
	display: none;
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 700;
	margin-bottom: var(--space-2);
	line-height: var(--leading-tight);
	color: var(--text-color);
}

.autoplayer-pro .description {
	font-family: var(--font-display);
	font-size: var(--text-base);
	color: var(--text-color);
	margin-bottom: var(--space-2);
}

.autoplayer-pro .text-content .read-more {
	font-family: var(--font-display);
	color: var(--text-color);
	text-decoration: none;
	font-weight: 700;
}

.autoplayer-pro .text-content .read-more:hover,
.autoplayer-pro .text-content .read-more:focus {
	text-decoration: underline;
	outline: none;
}

.autoplayer-pro .logo-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.autoplayer-pro .logo-wrapper .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 145px;
}

@media (min-width: 40em) {
	.autoplayer-pro:before {
		background-image: url(/includes/public/assets/shared/hero-assets/texture-bottom.svg);
		height: 30px;
	}
}

@media (min-width: 64em) {
	.autoplayer-pro .logo-wrapper .logo {
		top: 55%;
		width: 580px;
		height: 430px;
	}
}