.item{
    filter: grayscale(0.99);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
    padding-top: 20px;
}
.item:hover, .item:focus, .item:active{
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.2s ease-in-out;
}
.owl-carousel a{
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.owl-carousel:hover a, .owl-carousel:focus a, .owl-carousel:active a{
    text-decoration: none;
}
.owl-carousel img{
    max-height: 80px;
    max-width: 60px;
    width: auto!important;
    display: inline-block;
}
.owl-carousel span{
    font-size: 14px;
    max-width: 190px;
    padding-left: 10px;
    display: block;
}
@media screen and (max-width: 480px) {
    .owl-carousel img{
        max-height: 80px;
        max-width: 45px;
        width: auto!important;
        display: inline-block;
    }
    .owl-carousel span{
        font-size: 11px;
        padding-left: 5px;
        max-width: 130px;
    }
}