.nav-contact a {
  color: var(--green);
}

.contact-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 120px;
  text-align: center;
  padding: 30px 0;
  width: 100%;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.5)), url(/img/mucha.png);
  background-size: 100%;
  height: 92vh;
}
.contact-us h2 {
  color: var(--green);
  margin-bottom: 30px;
}
.contact-us ul {
  line-height: 3em;
}
.contact-us li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-us i {
  color: var(--green);
  font-weight: bold;
  font-size: 1.2em;
}

@media screen and (max-width: 1200px) {
  .contact-us {
    background: #eee;
  }
  .contact-us li {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 10px;
  }
}/*# sourceMappingURL=contact-us.css.map */