/*Video Results*/
.video-res-item {
    margin-bottom: 75px;
}
.video-res-image {
    position: relative;
    overflow: hidden;
}
.video-res-image-container {
    padding-top: 75%;
    background-size: cover;
    background-position: center center;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.video-res-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.video-res-over img {
    width: 65px;
    height: 65px;
}
.video-res-title {
    color: black;
    font-weight: 600;
    margin-top: 15px;
}
/*Responsive*/
@media only screen and (min-width: 1025px) {
    /*Video Results*/
    .video-res-wrap:hover .video-res-image-container {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
}
@media only screen and (max-width: 1024px) {
    .video-res-item {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 769px) {
    #videos-results {
        margin: 25px 0;
    }
    #videos-results .page-title {
        margin-bottom: 20px;
    }
    .videos-results > .columns {
        margin-left: -15px;
        margin-right: -15px;
    }
    .video-res-item {
        margin-bottom: 35px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .video-res-over img {
        width: 45px;
        height: 45px;
    }
}
@media only screen and (min-width: 501px) and (max-width: 769px) {
    .video-res-item {
        width: 50%;
        float: left;
        clear: none;
    }
}
@media only screen and (max-width: 500px) {
    .video-res-item:last-child {
        margin-bottom: 0;
    }
}