/* Display complete service artwork instead of cropping text from the images. */

.experience-card .card-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fbf5eb;
}

.experience-card .card-image-wrap img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 900px) {
  .experience-card .card-image-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
