.vino-card {
    position: relative;
    background: #F5F3EE;
    overflow: hidden;
}

.vino-card .vino-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 60%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    color: #FFFFFF;
    margin: auto;
    padding: 1rem 0;
    background: rgb(0,0,0);
background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

.vino-content .titleLev4{
    line-height: 0.8;
}


#others .vino-card {
    background: none;
}

.vino-card .imgContainer {
    padding-top: 117%;
}

.vino-card .imgContainer img {
    object-fit: cover;
    transition: all .3s linear;
}

@media (min-width: 768px) {
    .vino-card:hover img {
        scale: 1.05;
    }
}