/*--------------------------------------------------------------
## Lista Diferenciais - cards
--------------------------------------------------------------*/
.card-video{
    display: inline-block;
    width: 100%;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}
.card-video .item-thumb{
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
    opacity: 1;
    -webkit-transition: 0.8s all ease;
    -moz-transition: 0.8s all ease;
    -ms-transition: 0.8s all ease;
    -o-transition: 0.8s all ease;
    transition: 0.8s all ease;
}
.card-video .thumb{
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
}
.card-video .thumb img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center center;
}
.card-video .overlay-thumb{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 230px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    opacity: 1;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.card-video .overlay-thumb span{
    display: block;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
    top: 35%;
}
.card-video .overlay-thumb span:before{
    display: block;
    content: ' ';
    width: 30px;
    height: 30px;
    background: url("../../../../../images/sprites.png?v=1") no-repeat;
    background-position: -60px -50px;
    position: relative;
    margin: 5px auto;
}
.card-video .infos{
    position: relative;
    text-align: center;
    padding-top: 20px;
}
.card-video .infos h3{
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    text-transform: uppercase;
}
.card-video .infos p{
    font-size: 16px;
    line-height: 22px;
    color: #000;
    font-weight: 300;
}

@media (min-width: 992px) {

    .card-video .infos h3{
        font-size: 22px;
    }

}