.card-item {
  background-color: white;
  padding: 5rem 0;
  box-shadow: 1px 1px 2px 2px rgba(15, 189, 68, 1);
  border-radius: 10px;
}

.card-item:hover {
  transform: scale(1.05);
}

.para {
  line-height: 1.5;
}
.Link {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  color: rgba(15, 189, 68, 1);
  text-align: center;
}
.Link:hover {
  color: black
}

@media only screen and (max-width: 768px){
    .card-container{
        width: 100% !important;
        padding: 0 3rem;
    }
    .card-item{
        margin-bottom: 3rem;
    }
}
