/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 5 version
*/

.video-header {
  position: relative;
  z-index: 1;
}

h1.hero-title {
  font-size: 58px;
  margin-top: 0px;
  line-height: 1;
  color: #57ffd5;
  -webkit-animation: hc-loop 5s infinite;
          animation: hc-loop 5s infinite;
  margin-bottom: 30px;
}

.hue-rotate {
  -webkit-animation: color-twist 3s infinite;
          animation: color-twist 3s infinite;
  position: relative;
  z-index: 6;
}

.s01-bg-launcher {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
}

.s01 {
  position: relative;
}

.video-wrapper {
  z-index: 2;
  max-width: 98%;
  margin: 0 auto;
  position: relative;
}

.video-wrapper .video-content {
  position: relative;
  z-index: 2;
}

.video-wrapper .video-content video {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.video-wrapper:after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  -webkit-animation: color-twist 3s infinite;
          animation: color-twist 3s infinite;
  background-color: #57ffd5;
}

.fc-icon {
  max-width: 60px;
  height: 60px;
  position: relative;
}

.fc-holder {
  position: absolute;
  top: 100vh;
  opacity: 0;
}

.fc-holder.flipper {
  opacity: 1;
}

.fc-rotate {
  max-width: 60px;
}

.flipper {
  max-width: 60px;
  opacity: 1;
  -webkit-animation: fcspin 3s ease-out forwards;
          animation: fcspin 3s ease-out forwards;
  -webkit-filter: drop-shadow(0px 10px 10px rgba(87,255,213,0.5)) drop-shadow(0px 10px 20px rgba(87,255,213,0.5));
          filter: drop-shadow(0px 10px 10px rgba(87,255,213,0.5)) drop-shadow(0px 10px 20px rgba(87,255,213,0.5));
}

.flipper.flip1 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.flipper.flip2 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.flipper.flip3 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

.flipper.flip4 {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

@media (min-width: 768px) {
  .video-header h3 {
    font-size: 22px;
  }

  h1.hero-title {
    font-size: 80px;
  }

  .video-wrapper {
    max-width: 765px;
  }
}

@media (min-width: 1024px) {
  .video-header h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
  }

  h1.hero-title {
    font-size: 120px;
  }

  .video-wrapper {
    padding: 2px;
    max-width: 800px;
  }

  .video-wrapper .video-content video {
    max-width: 796px;
  }
}

@-webkit-keyframes fcspin {
  from {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  to {
    -webkit-transform: rotateY(1800deg);
    transform: rotateY(1800deg);
  }
}

@keyframes fcspin {
  from {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  to {
    -webkit-transform: rotateY(1800deg);
    transform: rotateY(1800deg);
  }
}

@-webkit-keyframes hc-loop {
  0%,100% {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.25)) drop-shadow(0px 10px 20px rgba(87,255,213,0.25));
            filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.25)) drop-shadow(0px 10px 20px rgba(87,255,213,0.25));
  }

  50% {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.5)) drop-shadow(0px 10px 20px rgba(87,255,213,0.5));
            filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.5)) drop-shadow(0px 10px 20px rgba(87,255,213,0.5));
  }
}

@keyframes hc-loop {
  0%,100% {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.25)) drop-shadow(0px 10px 20px rgba(87,255,213,0.25));
            filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.25)) drop-shadow(0px 10px 20px rgba(87,255,213,0.25));
  }

  50% {
    -webkit-filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.5)) drop-shadow(0px 10px 20px rgba(87,255,213,0.5));
            filter: drop-shadow(0px 0px 10px rgba(87,255,213,0.5)) drop-shadow(0px 10px 20px rgba(87,255,213,0.5));
  }
}

@-webkit-keyframes color-twist {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }

  50% {
    -webkit-filter: hue-rotate(-100deg);
            filter: hue-rotate(-100deg);
  }

  100% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
}

@keyframes color-twist {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }

  50% {
    -webkit-filter: hue-rotate(-100deg);
            filter: hue-rotate(-100deg);
  }

  100% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
}