.card{
    background-color: #f1eeee;
    margin-bottom: 30px;
    -webkit-box-shadow: 1px 1px 5px 3px rgba(214,214,214,1);
    -moz-box-shadow: 1px 1px 5px 3px rgba(214,214,214,1);
    box-shadow: 1px 1px 5px 3px rgba(214,214,214,1);
}
.card .image{
    object-fit: cover;
    display: block;
    width: 100%;
    height: 160px;
  
}
.overlay{
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
}
.card:hover .overlay{
    bottom: 0;
    height: 100%;
}
.card .overlay a{
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-decoration: none;
}
.card h4 a{
    font-size: 30px;
    margin-bottom: 10px;
    color: #000;
    text-decoration: none;
}
.card h4 a:hover{
    text-decoration: underline;
    color: rgb(92, 6, 42);
}
.card h4{  margin-bottom: 0;}
.card hr{
    margin-top: 0px;
    margin-bottom: 3px;
    border-top: 2px solid #ddd;
}

