.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.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;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    padding: 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;
    background-color: var(--Savannah);
    cursor: pointer;
    font-size: 12px;
}

.autoplayer-pro .video-control.volume {
    margin-left: 5px;
}

.autoplayer-pro .video-control:hover {
	background-color: var(--Savannah);
}

.autoplayer-pro .video-control:focus {
    box-shadow: none;
    outline: none;
}

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

.autoplayer-pro .text-content {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.autoplayer-pro .text-content .title-one {
    font-family: 'Mr Dafoe';
    font-weight: 400;
    font-style: normal;
    font-size: 38px;
    color: #fff;
    line-height: 1em;
    text-shadow: 0px 5px 16px rgba(0, 0, 0, 0.8);
}

.autoplayer-pro .text-content .title-two {
    font-family: 'Metric', 'sans serif';
    font-size: 52px;
    line-height: 1em;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0px 5px 16px rgba(0, 0, 0, 0.8);
}

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

    .autoplayer-pro .video-controls {
        padding: 20px 50px;
    }

    .autoplayer-pro .video-control {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .autoplayer-pro .text-content .title-one {
        font-size: 65px;
        line-height: 1em;
    }
    
    .autoplayer-pro .text-content .title-two {
        font-size: 90px;
        line-height: 1em;
    }
}