.services02-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: start;
  align-items: start;
}
.services02-box-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.services02-box-item > img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;

  filter: saturate(0.5);
}

@media (max-width: 768px) {
  .services02-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: start;
    align-items: start;
  }
}
