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

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

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

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

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

.autoplayer-pro .text-content {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    padding: 30px;
    width: 100%;
    max-width: 640px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.autoplayer-pro .text-content img {
    max-width: 290px;
    margin-bottom: 20px ;
}

.autoplayer-pro .text-content .title {
    color: #fff;
    font-weight: 100;
    line-height: 1.2em;
    font-size: 20px;
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.autoplayer-pro .text-content p {
    color: #fff;
    line-height: 1.5em;
    font-size: 10px;
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 600;
}

.autoplayer-pro .text-content .read-more {
    font-weight: 600;
    color: #fff;
    display: block;
    font-size: 16px;
    font-family: futura-pt, sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 15px 30px;
    background-color: #008c98;
}

.autoplayer-pro .text-content .read-more i {
    margin-left: 10px;
}

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

.slideshow-container .autoplayer-pro {
    height: 67vh;
}

.slideshow-container .autoplayer-pro .text-content {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    align-items: center;
}

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

    .autoplayer-pro .text-content img {
        max-width: 566px;
    }

    .autoplayer-pro .text-content .title {
        font-size: 35px;
    }
    
    .autoplayer-pro .text-content p {
        font-size: 15px;
        font-family: century-gothic, sans-serif;
        text-transform: none;
        font-weight: 100;
    }
    
    .autoplayer-pro .text-content .read-more {
        font-size: 18px;
    }

    .autoplayer-pro .text-content .read-more i {
		font-size: 16px;
		padding-left: 6px;
	}

    .slideshow-container .autoplayer-pro {
        height: 70vh;
    }

    .slideshow-container .autoplayer-pro:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 240px;
        background: linear-gradient(0deg, rgba(5, 73, 123, 0) 0%, #05497b 100%);
        opacity: 0.4;
        content: '';
        z-index: 2;
        pointer-events: none;
    }
}


