.card {
    /* border-radius: 20px; */
    position: relative;
    background-size: contain;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
}

/* .card-img-top {
    border-radius: 20px 20px 0px 0px;
} */

.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;
   }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 576px) {
}