.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 80vh;
    width: 100vw;
}

@media (min-width: 641px) {
    .autoplayer-pro {
        height: 800px;
    }
}

.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: none;
}

.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;
}

.autoplayer-pro .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    max-width: 1500px;
    margin: auto;
    padding: 0 170px;
    position: relative;
    height: 100%;
    z-index: 3;
}

.autoplayer-pro .text-content .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-family: 'benton-sans-extra-compressed', sans-serif;
    text-align: center;
    font-size: 8em;
    line-height: .9;
    text-transform: uppercase;
    opacity: .8;
    color: #fff;
    font-weight: 500;
}

.autoplayer-pro .text-content .description ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 120px;
    color: #fff;
    font-size: .9em;
    text-align: center;
    position: absolute;
    z-index: 4;
    left: 250px;
    top: 60px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    line-height: 1.15;
}
.autoplayer-pro .text-content .description ul li {
    margin: 5px 0;
}

.autoplayer-pro .text-content .read-more {
    color: #203f99;
    text-decoration: none;
}

.autoplayer-pro .text-content .read-more:hover,
.autoplayer-pro .text-content .read-more:focus {
    text-decoration: underline;
    outline: none;
}

@media (max-width: 1110px) {
    .autoplayer-pro {
        height: 500px;
    }
    .autoplayer-pro .text-content .title {
        font-size: 4em;
    }
    .autoplayer-pro .text-content .description ul {
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 0 30px 15px 30px;
    }
    .autoplayer-pro .text-content .description ul li {
        margin: 0 5px 7px 5px;
    }
}
