 .youtube-player {
        position: relative;
        padding-bottom: 55.6%;
        /* Use 75% for 4:3 videos */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000;
        margin: 5px;
    }
    
    .youtube-player iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        background: transparent;
    }
    
    .youtube-player img {
        bottom: 0;
        display: block;
        left: 0;
        margin: auto;
        max-width: 100%;
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
        border: none;
        height: auto;
        cursor: pointer;
        -webkit-transition: .4s all;
        -moz-transition: .4s all;
        transition: .4s all;
    }
    
    .youtube-player img:hover {
        -webkit-filter: brightness(75%);
    }
    
    .youtube-player .play {
        height: 72px;
        width: 72px;
        left: 50%;
        top: 50%;
        margin-left: -36px;
        margin-top: -36px;
        position: absolute;
        background: url("//i.imgur.com/TxzC70f.png") no-repeat;
        cursor: pointer;
    }


/* ALTERAÇÕES - 22/05/2018 */

.video-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container > div {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

@media (max-width: 520px) {
    .video-container > div {
        width: 0;
        height: 100%;
        padding-right: 225.25%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}

@media (max-width: 768px) {
    .owl-home .video-container {
        display: none;
    }
}

.owl-home iframe {
    pointer-events: none;
}