.article-video {
    padding: 100px 0 100px 0;
    position: relative;
}

.article-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../assets/resort4.jpg");
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(50%);
}

.video-text-description {
    text-align: center;
    color: var(--font-video-desc);
}

.video-text-description > span {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.video-text-description > h2 {
    margin-top: 12px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 56px;
    font-size: 30px;
}

.video-text-description > a {
    width: 40px;
}

@media only screen and (min-width:768px) {
    .article-video {
        height: 736px;
        padding: 250px 0 250px 0;
    }

    .video-text-description > h2 {
        font-size: 46px;
    }
}