html, body {
  background: #171D38;
  color: #fff;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

* {
  font-family: "Roboto", sans-serif;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  overflow: hidden;
  transition: opacity 400ms ease-out;
}
.slide.active {
  opacity: 1;
}
.slide.slide-title {
  background: url("/img/title_slide/title_bg.png") no-repeat center center;
  background-size: cover;
  padding: 4vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slide.slide-title img {
  width: 20vw;
  flex: 0;
}
.slide.slide-title h1 {
  padding-top: 4vh;
  font-size: 7vh;
  font-weight: 500;
  width: 70vw;
  text-shadow: 0 0 1vh #000;
  flex: 0 0 1;
}
.slide.slide-title h1 span {
  display: inline-block;
}
.slide.slide-title h2 {
  font-size: 3vh;
  line-height: 4vh;
  padding: 0 0 8vh;
  font-weight: 500;
  flex: 1;
  text-shadow: 0 0 1vh #000;
}
.slide.slide-title h3 {
  font-weight: 300;
  text-shadow: 0 0 1vh #000;
}
.slide.slide-title .footer {
  flex: 0 0 1;
}
.slide h2 {
  margin: 0;
  padding: 6vh;
  font-weight: 400;
  font-size: 6vh;
  transition: opacity 400ms ease-out;
}
.slide h2.hidden {
  opacity: 0;
}
.slide.animation-canvas h2 {
  position: fixed;
  z-index: 1;
}
.slide.slide-stats ul {
  list-style: none;
  padding: 6vh;
  margin: 0;
  display: flex;
}
.slide.slide-stats ul li {
  flex: 0 0 25vw;
  margin: 0;
  padding: 3vw;
  font-size: 4vh;
  color: #afc7d7;
}
.slide.slide-stats ul li .qty {
  font-size: 12vh;
  font-weight: 700;
  display: block;
  padding-bottom: 1vh;
  color: #fff;
}
@media screen and (max-width: 140vh) {
  .slide.slide-stats ul li {
    font-size: 3vh;
  }
  .slide.slide-stats ul li .qty {
    font-size: 8vh;
  }
}
.slide canvas {
  width: 100%;
  height: 100%;
}
.slide.end-slide {
  background: url("/img/title_slide/title_bg.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.end-slide h2 {
  text-align: center;
  font-weight: 400;
  font-size: 10vh;
  padding-bottom: 10vh;
}

.presentation-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1vh;
}
.presentation-progress .slide-index {
  position: absolute;
  right: 4vh;
  bottom: 2vh;
  font-size: 4vh;
  text-shadow: 0 0 1vh #000;
  color: rgba(255, 255, 255, 0.6666666667);
}
.presentation-progress .progressbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 0.2vh;
  background: #171D38;
}
.presentation-progress .progressbar .progress {
  position: relative;
  width: 0;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient(to right, #005A76, #00829F, #00C7DA, #82E9F3);
  transition: width 400ms cubic-bezier(0.4, 1, 0.4, 1);
}

/*# sourceMappingURL=main.css.map */
