.page-body {
  padding: 20px;
  max-width: 1170px;
  place-self: center;
}
.page-body.is-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.contact-items {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px;
}
.contact-items > .contact-item {
  border: 1px solid #85685e;
  padding: 40px;
  border-radius: 10px;
  text-decoration: none;
  color: #85685e;
}
.contact-items > .contact-item > .contact-item-icon > svg {
  width: 64px;
  height: 64px;
}


@media (min-width: 320px) and (max-width: 480px) {
  .contact-items {
    grid-template-columns: 1fr;
  }
}