  .header-container {
    display: flex;
    justify-content: space-between; /* Distribuisce lo spazio tra gli elementi */
    align-items: center;            /* Allineamento verticale centrato */
    padding: 10px 20px;
    background-color: #f4f4f4;
  }
  .header-item {
    flex: 1; /* Rende uguali le larghezze per un centramento perfetto */
  }
  .left { text-align: left; }
  .center { text-align: center; }
  .right { text-align: right; }
ul#menu {
    font-family: Verdana, sans-serif;
    font-size: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul#menu li {
    background-color: #133a5b;
    border-bottom: 5px solid #06121b;
    display: block;
    width: 150px;
    height: 30px;
    margin: 2px;
    float: left; /* elementi su singola riga */
}
ul#menu li a {
    color: #fff;
    display: block;
    font-weight: bold;
    line-height: 30px;
    text-decoration: none;
    width: 150px;
    height: 30px;
    text-align: center;
}
ul#menu li.active, ul#menu li:hover {
    background-color: #297ac1;
    border-bottom: 5px solid #FF831C;
}
.footer {
	font-size: 11px;
	color: #ffffff;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
	margin-top: 6px;
	background-color: #133a5b;
}
.footer a {
	color: #ffffff;
}
.corpo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

.vendi {
	margin: 15px;
	width: 80%;
}
.vendi img {
	width: inherit;
}
.slider {
  width: 100%;
  overflow: hidden; /* Nasconde le immagini fuori dal box */
}

.slides {
  display: flex;
  width: 300%; /* 100% per ogni immagine */
  animation: scorrimento 60s infinite;
}

.slides img {
  width: 100%;
}

@keyframes scorrimento {
  0% { transform: translateX(0); }
  33% { transform: translateX(-50%); }
  66% { transform: translateX(-100%); }
}

/* da qui nuovo slideshow */
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  margin-top: 20px;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 768px) {
  .text {font-size: 10px}
  .center {display: none;}
  .left img {width: 90%;}
}
