#intro-container {
  width: 100%;
  /* background-color: brown; */
  box-sizing: border-box;
}

#intro-video-cnt {
  min-height: 500vh;
  background-color: #2e2e2e;
  position: relative;
}

/* #titolo{
    position: sticky;
    background-color: blueviolet;
    width: 100%;
    height: 400px;
    font-size: 170px;
    bottom:0;
    margin-top: -400px;
    opacity: 0;
} */

#intro-titolo {
  position: sticky;
  width: 100%;
  height: 100vh;
  font-size: 170px;
  bottom: 0;
  margin-top: -100vh;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-shadow: 0px 0px 3px #000000;
    color: white; */
  text-transform: uppercase;
}

#intro-trigger-titolo {
  position: absolute;
  bottom: 100vh;
  width: 100%;
  height: 50vh;
  /* background-color: burlywood; */
}

#intro-video {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  object-fit: cover;
  /* background-color: coral; */
}

@media only screen and (max-width: 830px) {
  #intro-container {
    height: auto !important;
  }
  /* #video-img {
        position: -webkit-sticky;
        position: sticky;
        top:0;
        max-width: 100vw;
        aspect-ratio: 1080 / 1920;
    } */

  #video-img {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    max-height: calc(100vh - 50px);
    max-width: 100vw;
    aspect-ratio: 1080 / 1920;
  }
  #intro-video-cnt {
    margin-bottom: -100vh;
  }
}
