.videoGrid {}
    .videoGrid .videos {}
        .videoGrid .videos .video-item {
            display: block;
        }
            .videoGrid .videos .video-item .image-container {
                position: relative;
                text-align: center;
                margin-bottom: 10px;
            }
                .videoGrid .videos .video-item .image-container img {
                    width: 100%;
                    height: 100%;
                }

                .videoGrid .videos .video-item .image-container::after {
                    display: inline-block;
                    width: 40px;
                    height: 40px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    margin: -20px 0 0 -20px;
                    content: '';
                    background-image: url('/includes/public/assets/play-button.png');
                    background-repeat: no-repeat;
                    background-position: 0 0;
                    z-index: 5;
                    opacity: 0.85;
                }
                    .videoGrid .videos .video-item:hover .image-container::after {
                        opacity: 1;
                    }

        .videoGrid .videos .video-item .content {}
            .videoGrid .videos .video-item .content h3 {
                margin: 0;
                color: #2dabe1;
                font-size: 15px;
                font-family:'Aktiv Grotesk W01 Medium';
                line-height: 24px;
            }

            .videoGrid .videos .video-item .content .description {
                margin: 0;
                font-family: "HelveticaNeueW01-45Ligh";
                font-size: 13px;
                line-height: 18px;
                color: #616161;
            }
