.video_click {
    cursor: pointer;
    position: relative;
    margin: 3rem 0 1rem
}

.video_click .thumbnail {
    display: block;
    padding: 0;
    border: none
}

.video_click .thumbnail img {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px
}

.video_click .thumbnail_overlay_direito {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.video_click .thumbnail_overlay_direito:hover {
    background: rgba(0, 42, 63, 0.3);
    transition: all .3s ease-out;
    border-radius: 15px
}

.video_click .thumbnail_overlay_direito .play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%,-50%)
}

.video_click .thumbnail_overlay_direito img {
    width: 8rem
}

@media(max-width: 768px) {
    .video_click .thumbnail_overlay_direito img {
        width:5rem
    }
}

.m-modal-video {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal {
    text-align: center;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: white;
}