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

.autoplayer-pro::after {
    content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(to top, rgba(0,39,80,0.90196) 0%, rgba(0,39,80,0.27) 70%, rgba(0,39,80,0) 100%);
    pointer-events: none;
    z-index: 2;
}

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

@media (min-width: 1024px) {
    .autoplayer-pro {
        height: 80vh;
        max-height: 785px;
    }
}

.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;
    margin-left: 5px;
}

.autoplayer-pro .video-control {
	display: inline-flex;
	align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
	width: 40px;
	height: 40px;
    color: #fff;
    border: none;
    background-color: #123a64;
    cursor: pointer;
}

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

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

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

.autoplayer-pro .text-content {
	position: absolute;
	left: 0;
	bottom: 0;
    z-index: 10;
    max-width: 575px;
}

.autoplayer-pro .text-content .content-inner {
    position: relative;
    padding: 5px 30px;
	margin-bottom: 15px;
}

.autoplayer-pro .text-content .content-inner::after {
    content: "";
	position: absolute;
	left: 15px;
	top: 0;
	width: 2px;
	height: 100%;
	background-color: white;
}

.autoplayer-pro .text-content .title {
    font-family: kepler-std,serif;
	display: block;
	color: #fff;
	font-weight: bold;
	line-height: 20px;
	font-size: 18px;
	pointer-events: all;
    font-style: italic;
    margin-bottom: 5px;
}

.autoplayer-pro .text-content .description {
    display: block;
	color: #fff;
	line-height: 18px;
	font-size: 13px;
}

.autoplayer-pro .text-content .read-more {
    color: #fee49f;
	pointer-events: all;
	font-size: 13px;
	line-height: 20px;
	text-transform: uppercase;
	font-family: balboa,sans-serif;
	letter-spacing: 1.5px;
}

@media (min-width: 64em) {
    .autoplayer-pro {
        margin-bottom: 60px;
    }
    
    .autoplayer-pro .text-content {
        left: 0;
		right: 0;
		margin-left: 160px;
		margin-right: auto;
        padding-bottom: 15px;
    }

    .autoplayer-pro .text-content .title {
        font-size: 32px;
		line-height: 44px;
		margin-bottom: 0;
    }

    .autoplayer-pro .text-content .description {
        font-size: 16px;
		line-height: 24px;
		margin-bottom: 8px;
    }

    .autoplayer-pro .text-content .read-more {
        font-size: 14px;
		line-height: 20px;
		letter-spacing: 1.5px;
    }

    .autoplayer-pro .text-content .content-inner {
        padding-top: 5px;
    }

    .autoplayer-pro .text-content .content-inner::after {
        left: 5px;
    }

    .autoplayer-pro .video-control {
        width: 45px;
        height: 45px;
    }

    .autoplayer-pro.video-loaded .video-controls {
        position: absolute;
        left: 0;
        bottom: 20px;
        transform: translateX(-120%);
    }
}