.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 80vh;
    margin-bottom: 40px;
}

.autoplayer-pro::before,
.autoplayer-pro::after {
    content: "";
    position: absolute;
    background: #fff;
    bottom: 0px;
    height: 10vw;
    width: 60%;
    z-index: 3;
}

.autoplayer-pro::after {
    right: 50%;
    transform: translateY(100%) rotate(9.3deg);
    transform-origin: top right;
}
.autoplayer-pro::before {
    left: 50%;
    transform: translateY(100%) rotate(-9.3deg);
    transform-origin: top left;
}

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

.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%;
    height: 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: 10px;
}

.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: #021d44;
}

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

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

.autoplayer-pro .text-content {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 185px;
    width: 495px;
    height: 165px;
    background-image: url('../png/header-green-box-2.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.autoplayer-pro .overlay {
	position: absolute;
	bottom: -2px;
	width: 100%;
	height: 165px;
	z-index: 2;
}

.autoplayer-pro .text-content .title {
	color: #ffffff;
	font-weight: bold;
	font-family: 'Rock Salt', cursive;
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}

.autoplayer-pro .text-content .read-more {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin: 0;
	line-height: 22px;
}

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

@media (min-width: 64em) {
	.autoplayer-pro {
		margin-bottom: 60px;
	}
	.autoplayer-pro::after {
		right: 50%;
		transform: translateY(100%) rotate(9.3deg);
	}
	.autoplayer-pro::before {
		left: 50%;
		transform: translateY(100%) rotate(-9.3deg);
	}
}