.hero {
  background-image: linear-gradient(to bottom, transparent 80%, rgb(0, 0, 0)), url(/img/contacts/contacts-hero.png);
  max-height: 100vh;
}

.hero h1 {
  font-size: 4rem;
}

#contacts-methods {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

#contacts-methods .logo-img {
  width: 200px;
}

#contacts-methods a {
  text-decoration: none;
}

#contacts {
  display: grid;
  grid-template-columns: 50% 50%;
}

#content section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--prim-color);
}

/* Contenitore generale */
#contacts-form {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1000px) {
  #contacts {
    grid-template-columns: 100%;
  }

  #content section {
    padding: 0;
  }

  #contacts-methods {
    margin-bottom: 3rem;
  }

  #contacts-methods img.logo-img {
    margin: auto;
    width: 300px;
    margin-bottom: 2rem;
  }
}