.card {
    position: relative;
    background-size: contain;
    width: 100%;
    margin-bottom: 20px;
}

.card-body {
    width: 100%;
    bottom: 0;
    background: #1fa08b;
    text-align: center;
   height: 10px;
   padding:20px 10px;

}

.card-text {
    text-align: center;
    color: #ffff;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}
.card:hover {
    transform: scale(1.05, 1.05);
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.05, 1.05);
    -webkit-transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .card-text{
     font-size: 13px;
    }
 }