@charset "UTF-8";
/* CSS Document */


body {
  margin: 0;
  padding: 0;
}

.slide {
  min-width: fit-content;
  height: 100vh;
  width: 100vw;
}

.wrapper {
  display: flex;
  flex-direction: row;
  width: 900vw;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
}

.outer-wrapper {
   width: 100vh;
   height: 100vw;
   transform: rotate(-90deg) translateX(-100vh);
   transform-origin: top left;
   overflow-y: scroll;
   overflow-x: hidden;
   position: absolute;
   scrollbar-width: none;
}

.wrapper-mobile {
  display: flex;
  flex-direction: row;
  width: 900vw;
}

.outer-wrapper-mobile {
  width: 100vw;
  height: 100vh;
  overflow-x: scroll;
  overflow-y: hidden;
  position: absolute;
  scrollbar-width: none;
}

.slide1 {
  background-image: url("foto/home/1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide2 {
  background-image: url("foto/home/2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide3 {
  background-image: url("foto/home/3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide4 {
  background-image: url("foto/home/4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide5 {
  background-image: url("foto/home/5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide6 {
  background-image: url("foto/home/6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide7 {
  background-image: url("foto/home/7.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide8 {
  background-image: url("foto/home/8.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide9 {
  background-image: url("foto/home/9.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* serve per far sparire la barra di scorrimento*/
::-webkit-scrollbar {
    display:none;
}


