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

.autoplayer-pro:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26,46,55,1), transparent);
    pointer-events: none;
    z-index: 2;
}

.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: 2;
    left: 50%;
    top: calc(50% - 70px);
    padding: 30px;
    transform: translate(-50%,-50%);
    text-align: center;
}

.autoplayer-pro .text-content .title {
    display: inline-block;
    color: #fff;
    font-family: pragmatica-slabserif, sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: 1em;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    bottom: -5px;
    text-shadow: 1px 1px 6px #5e5e5e
}

.autoplayer-pro .text-content .subtitle {
    display: inline-block;
    color: #fff;
    font-family: acumin-pro, sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 1em;
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px #5e5e5e
}

.autoplayer-pro .arrows {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    text-align: center;
}

@media (min-width: 40em) {
    .autoplayer-pro {
        height: calc(100vh - 20px);
        min-height: 758px;
    }
}

@media (min-width: 64em) {
    .autoplayer-pro .text-content {
        top: calc(50% - 10px);
    }

    .autoplayer-pro .text-content .title {
        font-size: 35px;
        bottom: 0;
    }
    
    .autoplayer-pro .text-content .subtitle {
        line-height: .93em;
        font-size: 116px;
    }
    
    .autoplayer-pro .arrows {
        bottom: 20px;
    }
}