.video-image-box {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}
    .video-image-box .video-player .video-wrapper .video-slide {
        display: block;
        position: relative;
        margin-bottom: 28px;
    }
    .video .video-slide:hover {
        cursor: pointer;
    }
    .video-image-box .video-play-button {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        opacity: .8;
        content: '';
        cursor: pointer;
        background-image: url(/includes/client_public/assets/img/play-btn.svg);
        background-repeat: no-repeat;
        background-position: center;
        transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transition: all ease .5s;
    }
        .video-image-box .video-slide:hover .video-play-button,
        .video-image-box .video-play-button:hover {
            opacity: 1;
        }

    .video-image-box img {
        width: 100%;
    }
    .video-image-box .image-wrapper h2 {
        width: 100%;
        position: absolute;
        bottom: 0;
        font-family: 'Proxima N W01 X Cd Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        padding: 5px;
        font-size: 35px;
        line-height: 35px;
        margin: 0 0 0.3em;
        text-align: center;
        color: #fff;
    }
    .video-image-box .image-wrapper small {
        position: absolute;
        top: 5px;
        right: 10px;
        font-family: 'Proxima N W01 X Cd Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: bold;
        font-size: 16px;
        color: #fff;
    }

@media only screen and (min-width: 40.063em) {
    .video-image-box .image-wrapper h2 {
        font-size: 48px;
        line-height: 49px;
    }
}