.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 590px;
}

.autoplayer-pro .content{
    width: 100%;
    max-width: 1400px;
    padding: 15px !important;
    position: absolute;
    bottom: 0;
    z-index: 2;
    transform: translateX(-50%);
    left: 50%;
}
.autoplayer-pro .content h1{
    font-family: 'Marine-BoldItalic', sans-serif;
    color: white;
    font-size: 26px;
}

@media(min-width: 601px) {
    .autoplayer-pro {
        height: calc(372px + (558 - 372) * (100vw - 601px) / (1025 - 601));
    }
}

@media (min-width: 641px) {
    .autoplayer-pro .content h1{
        font-size: calc(45px + (75 - 45) * ((100vw - 641px) / (1200 - 641)));
    }
}

@media (min-width: 1025px) {
    .autoplayer-pro {
        height: calc(584px + (755 - 584) * (100vw - 1025px) / (1380 - 1025));
    }

    .autoplayer-pro .content{
        bottom: 35px;
    }
}

@media (min-width: 1200px) {
    .autoplayer-pro .content h1{
        font-size: 75px;
    }
}

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

.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;
}
