.hero {
  background-color: var(--bs-primary);
  transition: background-image 1s ease-in-out;
  margin-top: -32px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bs-primary);
  opacity: 0.9;
  z-index: 1;
  /* assicurati che sia sopra l'immagine di sfondo ma sotto il contenuto del testo */
}
.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  justify-items: center;
  color: white;
}
.hero .container h1 {
  font-size: 48px;
  margin-bottom: 0px !important;
}
.hero .container p {
  font-size: 20px;
  margin-bottom: 8px !important;
}
.hero .container a, .hero .container .breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

@media (max-width: 769px) {
  .hero {
    margin-top: -72px;
  }
}

/*# sourceMappingURL=secondary-pages.css-YQ622pB.map */
