/* ---- Services ----  */
#services .card {
  min-height: 200px;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
#services .card .card-img-top {
  overflow: hidden;
}

#services .card:hover {
  transform: scale(1.05);
}
#services .card .card-body {
  padding: 1.5rem;
}
#services .card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transform: scale(1.5);
}