.autoplayer-pro {
	position: relative;
	overflow: hidden;
	height: 99vh;
	max-height: 400px;
	clip-path: polygon(0 0, 100% 0%, 100% 90%, 66% 100%, 0 86%);
	z-index: 1;
}

.autoplayer-pro {
	margin-bottom: 0;
}

.autoplayer-pro.margin-small {
	margin-bottom: -50px;
}

.autoplayer-pro.margin-large {
	margin-bottom: -100px;
}

.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%);
	animation: unblur 2.5s ease 0s;
	-webkit-animation: unblur 2.5s ease 0s;
	-moz-animation: unblur 2.5s ease 0s;
	filter: blur(3px);
}

@keyframes unblur {
	0% {
		-webkit-filter: blur(30px);
		-moz-filter: blur(30px);
		-o-filter: blur(30px);
		-ms-filter: blur(30px);
	}
	100% {
		-webkit-filter: blur(3px);
		-moz-filter: blur(3px);
		-o-filter: blur(3px);
		-ms-filter: blur(3px);
	}
}

.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%;
	max-width: 200%;
	max-height: 200%;
	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: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 13%;
	z-index: 2;
	left: 15px;
	width: 70px;
}

.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: var(--Cabernet);
	cursor: pointer;
}

.autoplayer-pro .video-control:hover {
	background-color:#4b4c2c;
}

.autoplayer-pro .video-control:focus {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--Cabernet);
	outline: none;
}

.autoplayer-pro .video-control .fa-play {
	margin-left: 2px;
}

.autoplayer-pro .text-content {
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 0;
	margin: 2rem;
	padding: 2rem;
	width: calc(100% - 4rem);
	max-width: 640px;
	background-color: #e9f3fd;
}

.autoplayer-pro .text-content .title {
	font-weight: 700;
}

.autoplayer-pro .text-content .read-more {
	color: #203f99;
	text-decoration: none;
}

.autoplayer-pro .text-content .read-more:hover,
.autoplayer-pro .text-content .read-more:focus {
	text-decoration: underline;
	outline: none;
}

@media screen and (min-width: 40.063em) {
	.autoplayer-pro {
		height: 50vh;
		min-height: 400px;
		max-height: 600px;
		clip-path: polygon(0 0, 100% 0%, 100% 88%, 66% 100%, 0 85%);
	}

	.autoplayer-pro.video-loaded .video-controls {
		bottom: 15%;
		left: 20px;
	}
}

@media screen and (min-width: 64.063em) {
	.autoplayer-pro {
		height: 99vh;
		min-height: 600px;
		max-height: 1000px;
		clip-path: polygon(0 0, 100% 0%, 100% 86%, 66% 100%, 0 82%);
	}

	.autoplayer-pro.smaller {
		height: 70vh;
		max-height: 850px;
	}

	.autoplayer-pro.video-loaded .video-controls {
		bottom: 18%;
		left: 30px;
	}
}