.contact05-heading {
  display: none;
}
.contact05-box {
  width: 100%;
  max-width: 1200px;

  display: grid;
  grid-template-columns: repeat(2, calc(50% - 2.5rem));
  gap: 5rem;
  justify-content: start;
  align-items: start;
}

.contact05-box > img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;

  filter: saturate(0.5);
}

.contact05-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: start;
}

.contact05-card > p > span {
  font-weight: 600;
}
.contact05-card > p > span.quote {
  font-style: italic;
}

/* responsive */

@media (max-width: 768px) {
  .contact05 {
    padding: 2rem 0;
  }
  .contact05-heading {
    display: block;
    font-size: 2rem;
  }
  .contact05-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: start;
    align-items: start;
  }
  .contact05-card {
    padding: 0 1rem;
  }
  .contact05-card-heading {
    display: none;
  }
}
