.video_wrapper {
    /* Dummy image*/
    /* background-image: url("dummy.jpg");
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; */
    height: 310px;
    width: 30%;
}

.video_wrapper .video_trigger {
    height: 100%;
    position: absolute;
    border-radius: 5px;
    top: 0;
    left: 0;
    background-color: #ccc;
    color: #fff;
    z-index: 9;
    /* Centre content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.video_wrapper .video_layer {
    position: relative;
    display: none;
    height: inherit;
    width: 100%;
    margin: auto;
}

.video_wrapper .video_layer iframe {
    border: 0px none transparent;
    height: inherit;
    width: inherit;
    padding: 0;
}

.video_wrapper .video-btn {
    cursor: pointer;
    display: inline-block;
    transition: color 0.5s, background-color 0.5s, border 0.5s;
    padding: 8px 16px;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
}

.video_wrapper .video-btn:hover {
    background-color: #fff;
    color: #000;
}


@media screen and (max-width: 767px) {
    .video_wrapper {
        width: 100% !important;
        float: inherit;
        height: inherit !important;
        min-height: 275px;
    }
}