/*blocco stile per carosello in homepage - da libreria swiper */
  .swiper {
    width: 100%;
    padding: 20px 0;
  }
  .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .swiper-slide img {
    width: 75%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
    display: inline-block;
  }
  .swiper-pagination {
    margin-top: 15px;
    position: static;
    text-align: center;
  }
    /* Immagine più piccola su mobile */
  @media (max-width: 767px) {
    .swiper-slide img {
      width: 60%;
    }
  }

/*blocco stile per la navbar*/
.nav-link{color:black; font-size:14px; font-weight:500;}
.nav-link:hover , .active{color: orange !important;}
.nav-underline{--bs-nav-underline-link-active-color: var(--bs-emphasis-color); }

/*blocco stile per hero/banner sfondo quasi tutte le pagine*/
.hero{
  background-size: cover;
  background-position: center;
  background-image: url(../img/banner-sfondo-1.jpg);
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-dimension{
  height: 750px;
  width: 100%;
}
.margin-top-negative{
  margin-top: -120px;
}