.hero-video-block {
    text-align: center;
}

.hero-video-block .hero-video-holder {
    position: relative;
    overflow: hidden;
    height: var(--height);
}

.hero-video-block .mute-button {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 1.3rem;
}

.hero-video-block .container {
    position: relative;
}

.hero-video-block .content-text {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    text-shadow: 0 0 6px rgba(16, 16, 16, 0.9);
}

.hero-video-block .align-content-left-bottom .content-text {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    max-width: 50%;
    transform: none;
    text-align: left;
    text-shadow: 0 0 6px rgba(16, 16, 16, 0.9);
    padding: 3rem 1rem;
}

.hero-video-block .main-hero-filter {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    background-repeat: repeat;
}

.hero-video-block .hero-video {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-block .main-hero-image {
    height: var(--height);
    background-size: cover!important;
    background-position: center center!important;
}

.hero-video-block .hero-video-below {
    position: relative;
}

.hero-video-block .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.hero-video-block .hero-video-button-holder {
    margin-top: 25px;
    animation-name: videoTitleFadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-duration:3s;
    text-shadow: none;
}

@media screen and (min-width:1920px) {

    .hero-video-block .align-content-left-bottom .content-text {
        max-width: 45%;
    }

}

@media screen and (max-width:1199px) {

    .hero-video-block .align-content-left-bottom .content-text {
        max-width: 60%;
    }

}

@media screen and (max-width:991px) {

    .hero-video-block .content-text {
        top: 50%;
        width: 100%;
        padding: 0 30px
    }

    .hero-video-block .align-content-left-bottom .content-text {
        max-width: 75%;
    }

}

@media screen and (max-width:639px) {

    .hero-video-block .align-content-left-bottom .content-text {
        max-width: 100%;
    }

}

@media screen and (max-width:425px) {

    .hero-video-block .hero-video-button-holder {
        margin-top: 35px;
    }

    .hero-video-block .hero-video-holder {
        height: var(--mobile-height);
    }

    .hero-video-block .main-hero-image {
        height: var(--mobile-height);
    }

}