.contact-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "       item1   item2   "
    "       item1   item3   ";
}

@media screen and (max-width: 940px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "       item3   item2   "
      "       item1   item1   ";
  }
}

@media screen and (max-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "       item2   "
      "       item3   "
      "       item1   "
  }
}
