#video-footer{
    padding: 2em;
    background: #000;
    color: #fff;
    text-align: center;
    margin-top: 1em;
}

#lightbox{
    position: fixed;
    z-index: 1000;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}

#lightbox.active{
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox video{
    max-width: 80%;
    border: 2px solid white;
}

.grid img{
    border-radius: 10px;
}
.grid img:hover{
    transform: scale(1.05);
}

/* Media Query */

@media(min-width: 950px){
    .grid{
        display: grid;
        grid-template-columns: 1fr repeat(2, minmax(auto, 40em)) 1fr;
    }

    #section-a .content-text,
    #section-b .content-text{
        columns: 2;
        column-gap: 2em;
    }

    #section-a .content-text p
    #section-b .content-text p{
        padding-top: 0;
    }

    #showcase a{
        font-size: 2em;
    }

    .content-wrap,
    #section-a ul,
    #section-b ul,
    #section-c ul{
        grid-column: 2/4;
    }

    .box, #main-footer div{
        grid-column: span 4;
    }

    #section-a ul,
    #section-b ul,
    #section-c ul{
        display: flex;
        justify-content: space-around;
    }

    #section-a li,
    #section-b li,
    #section-c li{
        width: 31%;
    }

    #showcase ul{
        display: flex;
        justify-content: space-around;
        line-height: 4;
        padding-top: 50px;
        padding-left: 30px;
    }

    #showcase h1{
        font-size: 4em;
        padding-top: 30px;
    }

    .video_grid{
        display: grid;
        grid-template-columns: repeat( auto-fit , 300px);
        align-content: center;
        justify-content: center;
        grid-gap: 15px;
        height: auto;
        margin: 0;
        padding: 0;
    }
    .video_grid img{
        cursor: pointer;
        transition: 1s;
        width: 300px;
        height: 200px;
        border-radius: 10px;
    }
    .video_grid img:hover{
        transform: scale(1.05);
    }
    figure{
        margin: auto;
        padding-top: 10px;
    }
    figure figcaption{
        color: rgb(0, 0, 0);
        margin: 0;
        padding: 0;
    }
    #lightbox{
        position: fixed;
        z-index: 1000;
        top:0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
    }
    
    #lightbox.active{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #lightbox video{
        max-width: 80%;
        border: 2px solid white;
    }

    #video-footer div{
        grid-column: span 4;
    }
}