.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide span {
  text-align: right;
  width: 80%;
}

.slide {
  min-width: 100%;
  height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('https://www.consultafondazionisudeisole.it/wp-content/uploads/2024/12/Raggruppa-165@2x-scaled.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-weight: bold;
  gap: 40px;
  position: relative; 
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6e6e66e; 
  z-index: 1;
  display: none; 
}

.title {
  color: #DD1724;
  font-size: 72px;
  font-weight: 700;
  line-height: 76px;
  font-family: 'Fira Sans', sans-serif;
  z-index: 2; 
}

.paragraph {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-style: italic;
  font-family: 'Fira Sans', sans-serif;
  z-index: 2; 
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  position: absolute;
  z-index: 999;
  bottom: 200px;
  right: 10%;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 5px;
  background-color: #BCBCBC;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.dot.active {
  width: 30px;
  background-color: #DD1724;
  cursor: pointer;
}

@media (max-width: 768px) {
  .slide {
      height: 90vh;
      gap: 10px;
  }

  .slide span {
      width: 100%;
      padding-right: 40px;
  }

  .slide::before {
      display: block; 
  }

  .title {
      font-size: 44px;
      line-height: 44px;
  }

  .paragraph {
      font-size: 18px;
      line-height: 20px;
  }

  .navigation {
      bottom: 120px;
  }
}
