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

.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: #f15d22;
    cursor: pointer;
}

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

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

.autoplayer-pro .video-control .fa-play {
    margin-left: 2px;
}
.autoplayer-pro:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 3;
}

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

.autoplayer-pro .text-content .title,
.autoplayer-pro .text-content .title a {
    color: #fff;
	font-size: 50px;
	font-family: 'Titling-Gothic-fb-skyline', sans-serif;
	font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
}

.autoplayer-pro .text-content .title a:hover {
    text-decoration: none;
}

.autoplayer-pro .text-content .title span {
    color: #f15d22;
} 

@media (min-width: 64em ) {
    .autoplayer-pro {
        height: 76.4vh;
    }

    .autoplayer-pro .text-content {
        padding: 60px 50px;
        width: 30%;
        min-width: 435px;
    }

    .autoplayer-pro .text-content .title,
    .autoplayer-pro .text-content .title a {
        font-size: 100px;
        letter-spacing: 2px;
    }
}