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

.autoplayer-pro::after {
    content: "";
    background: linear-gradient( to top, rgb(43, 95, 163) 0%, rgba(43,95,163,0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    z-index: 3;
    pointer-events: none;
}

@media (min-width: 641px) {
    .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 .text-content {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    margin: 0 2rem;
    padding: 0 92px;
    width: calc(100% - 4rem);
    display: none;
    align-items: flex-end;
    justify-content: space-between;
}

.autoplayer-pro .text-content .title {
    font-weight: 700;
    font-family: 'museo-sans', serif;
    color: #fff;
    font-size: 45px;
    margin-bottom: 2rem;
    padding-right: 15px;
}

.autoplayer-pro .text-content .logo-cont {
    max-width: 296px;
    background-color: #068e7c;
    padding: 20px 45px 20px 25px;
}

.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(min-width: 1025px) {
    .autoplayer-pro .text-content {
        display: flex;
    }
}
