.video-section {
    position: relative;
    height: calc(100vh - var(--header-height));
}

.video-section .content-container {
    max-width: 450px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section .content-container * {
    text-align: center;
    color: #F5F0E4;
}

.video-section .content-container p {
    line-height: 1.4;
}

.video-section .content-container .description {
    margin: 15px 0 var(--gap);
    text-transform: none;
    font-family: 'Whyte-Light';
}

.video-section .view-videos {
    position: absolute;
    bottom: var(--gap);
    left: 50%;
    transform: translate(-50%, -100%);
    color: #F5F0E4;
}

.video-section a::after {
    display: none;
}

.video-section .view-videos::after {
    display: block;
    width: 100%;
}

.video-section .view-videos::after {
    background-color: #F5F0E4;
}

.video-section .image-wrapper {
    padding: var(--gap);
    transition: all 500ms ease;
    z-index: -1;
    position: relative;
}

.video-section:hover .image-wrapper {
    padding: 0;
}

.video-section .image-wrapper .gradient-overlay {
    position: absolute;
    width: 100%;
    max-width: calc(100% - (2 * var(--gap)));
    height: 100%;
    max-height: calc(100% - (2 * var(--gap)));
    z-index: 2;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, black , grey);
    opacity: 0.5;
    margin: var(--gap);
    transition: all 500ms ease;
}

.video-section:hover .image-wrapper .gradient-overlay {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
}

.video-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 767px) {
    .video-section .image-wrapper,
    .video-section:hover .image-wrapper {
        padding: 0;
    }

    .video-section {
        height: 100%;
        max-height: 650px;
    }

    .video-section .content-container h1 {
        font-size: 32px;
    }

    .video-section .image-wrapper .gradient-overlay {
        margin: 0;
        max-width: 100%;
        max-height: 100%;
    }
}