div.video_gallery {
    margin-top: 20px;
    text-align: center;
}

div.video-wrapper {
    max-height: 395px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

div.video-wrapper img {
    width: 100%;
    transition: 0.5s ease !important;
}

div.single_video {
    cursor: pointer;
}

div.single_video a {
    outline: none;
}

div.single_video:hover {
    box-shadow: 0 0 20px white;
}

div.single_video:hover div.video_title {
    background-color: #c7c7c7;
}

div.single_video:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
}

div.single_video {
    position: relative;
    width: 65%;
    border: 5px solid rgba(226, 226, 226, 0.5);
    box-shadow: 0 0 5px #c5be91;
    display: inline-block;
    margin: 10px;
    background-color: rgba(226, 226, 226, 0.8);
}

div.video_title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    margin-top: 3px;    
    background-color: #f6f6f6;    
    cursor: pointer;
}

div.video_title div {
    display: none !important;
}
div.video_title .wp-block-embed {
    margin: 0;
}
div.video_title .wp-block-embed figcaption {
    padding: 5px 0 5px 0;
    border-top: 2px solid #949494;
    margin: 0;
}

img.play_image {
    position: absolute;
    top: 110px;
    left: center;
    margin-left: -92.5px;
    opacity: 0.6;
    transition: 0.7s ease !important;
}

div.single_video:hover img.play_image {
    opacity: 0;
}

@media all and (max-width: 1024px) {
    div.single_video {
        width: 85%;
    }
}

@media all and (max-width: 790px) {
    div.single_video {
        width: 100%;
        margin: 10px auto;
    }
    div.video-wrapper {
        height: auto;
    }
    div.video-wrapper img {
        width: 100%;
    }
    img.play_image {
        width: 40%;
        top: 10%;
        left: 30%;
        margin-left: 0;
    }
}

@media all and (max-width: 725px) {
    div.video_title {
        font-size: 20px;
    }
}

@media all and (max-width: 670px) {
    div.video_title {
        font-size: 18px;
    }
}