/*____________________

GENERALE
______________________*/
body {
  font-family: 'Zalando Sans', Arial, Helvetica, sans-serif;
}

* {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link-underline {
  text-decoration: underline;
}

/*____________________

HEADER
______________________*/
.navbar {
  background-color: #1f967b;
  padding: 20px 0;
}

.navbar .container {
  padding: 0 12px;
}

.navbar-brand img {
  margin-right: 16px;
  padding: 5px 0;
}

.navbar-nav .nav-item .active {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff !important;
  border-radius: 4px;
}

.navbar-nav .nav-item:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: #fff !important;
}

.navbar-nav .nav-item .nav-link {
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #fff;
}

.nav-item {
  margin: 0 5px;
}

.hamburger {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  gap: 4px;
}

.hamburger .linea {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 10px;
}

.site-header {
  position: relative;
  z-index: 1030;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* SOLO da md in su */
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding-top: 15px;
  border-top: 5px solid #1f967b;
}

.site-header.is-scrolled .navbar {
  width: calc(100% - 30px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 1rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .site-header.is-scrolled .navbar {
    width: calc(100% - 160px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 1rem;
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
}

/*____________________

FOOTER
______________________*/
footer {
  border-top: 6px solid #1f967b !important;
}

.info-footer,
.credits {
  font-size: 15px;
  line-height: 23.6px;
}

.icon-primary {
  fill: #1f967b;
}

/*________________________
CONTENUTO
__________________________*/
main {
  font-family: 'Zalando Sans', Arial, Helvetica, sans-serif;
  color: #212529;
  padding: 50px 0 50px 0;
}

main h1, main h2 {
  font-weight: 700;
}

main h1 {
  font-size: 35px;
}

main h2 {
  font-size: 30px;
}

main h3 {
  font-size: 20px;
}
/*# sourceMappingURL=style.css.map */