#home-videos {
    margin-bottom: 20px;
}
.home-videos-car-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.home-videos-car-video {
    padding-top: 100%;
    background-position: center center;
    background-size: cover;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.home-videos-car-over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
}
.home-videos-car-title {
    font-size: 18px;
    font-weight: 400;
}
.home-videos-car-icon {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.home-videos-carousel.owl-theme .owl-controls {
    margin: 0;
}
.home-videos-carousel.owl-theme .owl-controls .owl-buttons div {
    width: 60px;
    background-color: transparent;
    border-radius: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.home-videos-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: 10px;
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 80%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
}
.home-videos-carousel.owl-theme .owl-controls .owl-buttons div.owl-next {
    right: 10px;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 20%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 20%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}
.home-videos-carousel.owl-theme .owl-controls .owl-buttons div img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
/*Responsive*/
@media only screen and (min-width: 1025px) {
    .home-videos-car-wrap:hover .home-videos-car-video {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    .home-videos-car-wrap:hover .home-videos-car-icon {
        -webkit-filter: none;
        filter: none;
    }
    .home-videos-carousel.owl-theme .owl-controls.clickable .owl-buttons div:hover img {
        -webkit-filter: none;
        filter: none;
    }
}
@media only screen and (max-width: 1300px) {
    .home-videos-car-title {
        font-size: 16px;
    }
}
@media only screen and (max-width: 769px) {
    .home-videos-car-title {
        font-size: 14px;
    }
}
@media only screen and (max-width: 500px) {
    .home-videos-car-title {
        display: none;
    }
    .home-videos-car-icon {
        width: 40px;
        height: 40px;
    }
    .home-videos-carousel.owl-theme .owl-controls .owl-buttons div {
        width: 40px;
    }
}