body {
  font-family: Raleway, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
body img {
  max-width: 100%;
  display: block;
}
body section, body footer {
  padding: 2rem;
}
@media (max-width: 767px) {
  body section, body footer {
    padding: 1rem;
  }
}
body a {
  color: #e41e26;
}
body header {
  background: #125dab;
  color: white;
}
body header img {
  margin: 0 auto;
}
body header img.mobile {
  display: none;
}
@media (max-width: 767px) {
  body header img.desktop {
    display: none;
  }
  body header img.mobile {
    display: block;
  }
}
body nav {
  background: #e41e26;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  body nav {
    justify-content: space-between;
  }
}
@media (max-width: 1259px) {
  body nav {
    display: none;
  }
}
body nav a {
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
}
body nav a:hover {
  text-decoration: underline;
}
body .hamburger-container {
  display: none;
  background: #e41e26;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1001;
  justify-content: flex-end;
}
@media (max-width: 1259px) {
  body .hamburger-container {
    display: flex;
    justify-content: center;
  }
}
body .hamburger-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
body .hamburger-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
body .mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #e41e26;
  z-index: 1002;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body .mobile-menu-overlay.active {
  display: flex;
}
body .mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
body .mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
body .mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body .mobile-menu-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
body .mobile-menu-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
body .lista-elementi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .lista-elementi a img {
  object-fit: cover;
  width: 250px;
  height: 250px;
}
@media (max-width: 639px) {
  body .lista-elementi a img {
    width: 175px;
    height: 175px;
  }
}
@media (max-width: 479px) {
  body .lista-elementi a img {
    width: 145px;
    height: 145px;
  }
}
body section {
  border-bottom: 1px solid #ddd;
}
body h2 {
  color: #125dab;
}
body footer {
  background: #125dab;
  color: white;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
