.carousel{
  position: relative;
}

.sliders {
  z-index: -1;
  top: 0;
  max-width: 100%;
  max-height: 100vh;
  margin: 0;
  animation-name: slide;
  display: block;
}

.carousel .badge {
  position: relative;
  bottom: 30px;
  left: 50%;
  height:13px;
  width:13px;
  margin: 0 5px;
  cursor: pointer;
  background-color: #E5E5E5D5;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.badge:hover {
  background-color: #717171;
}

#active-badge{
  background-color: #717171;
}

.carousel .carousel-button-left{
  background-color: #E5E5E570;
  border: none;
  color: white;
  padding: 15px 17px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%)
  -ms-transform: translate(-50%, -50%);
  cursor: pointer;
}

.carousel-button-left:hover{
  background-color: #E5E5E5D5;
  border: none;
  color: white;
}

.carousel .carousel-button-right{
  background-color: #E5E5E570;
  border: none;
  color: white;
  padding: 15px 17px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%)
  -ms-transform: translate(-50%, -50%);
  cursor: pointer;
}

.carousel-button-right:hover{
  background-color: #E5E5E5D5;
  border: none;
  color: white;
}

#presentazione{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 15px;
  padding-bottom: 35px;
}

#presentazione-titolo{
  font-size: 4vw;
  text-align: center;
}

#presentazione-testo{
  text-align: center;
  font-size: 2vw;
}

@media screen and (min-width: 100vh) {
  #map{
    width: 100%;
    height: 350px;
    position: relative;
    z-index: 0;
  }

  .desktop-sliders{
    width: 100%;
    display: block;
  }

  .mobile-sliders{
    display: none;
  }
}

@media screen and (max-width: 100vh) {
  #map{
    height: 600px;
    width: 100%;
  }

  #presentazione{
    padding-top: 35px;
    padding-bottom: 55px;
  }

  .desktop-sliders{
    display: none;
  }

  .mobile-sliders{
    width: 100%;
    display: block;
  }
}
