*{
    box-sizing: border-box;
}

.container_cards{
    
    
    display: flex;
    max-width: 1100px;
}

.card{
    width: 100%;
    margin: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
   
    cursor: default;
    transition: all 400ms ease;
    align-content: center;
    
    
}

.card:hover{
     box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
    transform: translateY(-3%);
}

.card img{
    width: 100%;
    height: 100%;
    margin-bottom: -56px;
}

.card .contenido{
    padding: 0px;
    text-align: center;
}
.card .figure{
    width: 100px;
    height: 100px;
}
