body {
  width: 100vw;
  height: 100vh;
  /* If you need to support browser without CSS var support (<= IE11) */
  height: calc(100vh - var(--vh-offset, 0px));
  /* enable vh fix */
  margin: 0;
  padding: 0;
}

#intro,
#main {
  width: 100vw;
  height: 100vh;
  /* If you need to support browser without CSS var support (<= IE11) */
  height: calc(100vh - var(--vh-offset, 0px));
  /* enable vh fix */
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: #fff;
}

#main {
  opacity: 0;
}

#intro .lottie-container {
    width: 100vw;
    height: 100vh;
    height: calc(100vh - var(--vh-offset, 0px));
    pointer-events: none;
}

#main .pitch-container {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#main .pitch-container iframe {
width: 100%;
height: 100%;
}

#main.active .pitch-container {
  pointer-events: auto;
}

.fadeout {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}

#main.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 1s, opacity 1s linear;

}