@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap");
body {
  height: auto;
  margin: 0;
  font-family: "Montserrat", Arial;
}

@media screen and (max-width: 500px) {
  body {
    font-size: 11px;
  }
}
.mobile {
  display: none;
}

@media screen and (max-width: 500px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
header {
  width: 100vw;
  color: black;
  background: white;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1;
}

.logo {
  width: 7em;
}

section {
  height: auto;
  min-height: 100vh;
  padding: 0em 15em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: inherit;
}
section.content-wrapper {
  padding: 0;
}
section h1, section h2 {
  font-size: 10em;
  color: #f1f1f1;
  margin-bottom: -0.75em;
  margin-top: 0em;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 500px) {
  section h1, section h2 {
    font-size: 5em;
  }
}
section h3 {
  font-size: 1.75em;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 500px) {
  section h3 {
    font-size: 1.25em;
  }
}
section p {
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 0;
  z-index: 5;
  position: relative;
}
section a {
  color: #333333;
}
section .btn {
  font-size: 1em;
  padding: 0.75em 2em;
  background-color: #333333;
  color: #ffffff;
  margin-top: 2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.5em;
}
section.progetti {
  background-color: #f1f1f1;
}
section.progetti h2 {
  color: #e0e0e0;
}
section.contattami {
  background: #333333;
}
section.contattami h2 {
  color: #434343;
}
section.contattami p, section.contattami a {
  color: #ffffff;
}
section > .sticky-element {
  padding-top: 20vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
section.footer {
  height: auto;
  min-height: auto;
  background-color: #000000;
  color: #ffffff;
}
section.footer p, section.footer a {
  font-size: 0.75em;
  color: #ffffff;
}

@media screen and (max-width: 500px) {
  section {
    height: auto;
    min-height: auto;
    padding: 6.5em 2em 7.5em;
  }
}
.info {
  margin-bottom: 15vh;
}

@media screen and (max-width: 500px) {
  .info {
    margin-bottom: 0vh;
  }
}/*# sourceMappingURL=main.css.map */