.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

@media (min-width: 641px) {
    .autoplayer-pro {
        height: 600px;
    }
}

@media (min-width: 1025px) {
    .autoplayer-pro {
        height: 100vh;
    }
}

.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;
}

.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: transparent;
    cursor: pointer;
}

.autoplayer-pro .video-control .fa-play {
    margin-left: 2px;
}

.autoplayer-pro .text-content {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    margin: 1.2rem;
    padding: 1.2rem;

    max-width: 640px;
    background-color: rgba(77, 15, 38, 0.7);
    background: linear-gradient(45deg, rgba(77, 15, 38, 0.9), rgba(208, 68, 134, 0.9));
}
.autoplayer-pro .text-content p{
    font-family: "montserrat", sans-serif;
    color: #FFF;
    font-weight: 400;
    font-size: 14px;

}
.autoplayer-pro .text-content .title {
    font-family: "montserrat", sans-serif;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1rem;
}

.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;
}