.autoplayer-pro {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: calc(100vh - 213px);
	background-color: #ccc;
}

.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 .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 {
	display: none;
	margin-bottom: 1rem;
}

.autoplayer-pro.video-loaded .video-controls {
	display: block;
}

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	color: #fff;
	border: none;
	border-radius: 50%;
	background-color: #203f99;
	cursor: pointer;
}

.autoplayer-pro .video-control:hover {
	background-color: #3e5dbb;
}

.autoplayer-pro .video-control:focus {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #203f99;
	outline: none;
}

.autoplayer-pro .video-control .fa-play {
	margin-left: 2px;
}

.autoplayer-pro .text-content {
	padding: 20px;
	position: absolute;
	left: 0;
	bottom: 10%;
	z-index: 2;
}

.autoplayer-pro .text-content .title {
	color: white;
	text-transform: uppercase;
}
.autoplayer-pro .text-content .description {
	color: white;
}

.autoplayer-pro .buttons .button {
	margin-bottom: 0;
	margin-right: 1em;
	text-transform: uppercase;
	color: white;
	background-color: transparent;
	border-color: white;
}

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

.autoplayer-pro .scroll-down {
	display: none;
}

.autoplayer-pro h6 {
	text-transform: uppercase;
	color: white;
}

@media only screen and (min-width: 64.063em) {
	.autoplayer-pro {
		height: calc(100vh - 168px);
	}
	.autoplayer-pro .text-content {
		bottom: 20%;
	}
	.autoplayer-pro .scroll-down {
		display: block;
		position: absolute;
		bottom: 34px;
		width: 100%;
		text-align: center;
		text-transform: uppercase;
		color: white;
		z-index: 2;
		pointer-events: none;
	}
}

@media only screen and (min-width: 1200px) {
	.autoplayer-pro .text-content {
		width: 73em;
		left: 0;
		right: 0;
		bottom: 30%;
		margin: 0 auto;
	}
	.autoplayer-pro .text-content .title {
		max-width: 900px;
	}
}
