.autoplayer-pro {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    height: calc(180px + (1080 - 180) * ((100vw - 320px) / (1920 - 320)));
}

.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;
    right: 15px;
    bottom: 24px;
    position: absolute;
    z-index: 2;
    justify-content: space-between;
    width: 66px;
}

.autoplayer-pro.video-loaded .video-controls {
    display: flex;
}

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

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

.autoplayer-pro .video-control:focus {
    outline: 1px dashed #3fc4e0;
}

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

.autoplayer-pro .text-content {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    padding: 110px 2rem 24px;
    width: calc(100% - 4rem);
    max-width: 85%;
    background: radial-gradient(ellipse at bottom left, rgba(0,0,0, 0.7) 0%, rgba(0,0,0, 0.6) 25%, transparent 65%);
}

.autoplayer-pro .text-content .title {
    font-family: "gin", sans-serif;
    font-size: 33px;
    margin-bottom: 7px;
    color: #FFF;
}

.autoplayer-pro .text-content .read-more {
    color: #FFF;
    text-decoration: none;
}

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

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

@media (min-width: 64em) {

    .autoplayer-pro .text-content {
        padding: 110px 2rem 34px;
        background: radial-gradient(ellipse at bottom left, rgba(0,0,0, 0.6) 0%, rgba(0,0,0, 0.5) 20%, transparent 65%);
    }

    .autoplayer-pro .text-content .title {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .autoplayer-pro .text-content .read-more {
        font-size: 16.06px;
    }
    .autoplayer-pro .video-controls {
        right: 60px;
        bottom: 41px;
        width: 114px;
    }
    .autoplayer-pro .video-control {
        width: 50px;
        height: 50px;
    }

    .autoplayer-pro .video-control.volume {
        font-size: 29px;
    }

    .autoplayer-pro .video-control.playback {
        font-size: 24px;
    }
}

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