/**
 * Returns a transition duration by name.
 * @function transition-duration
 * @since 1.0.0
 */
/**
 * Returns a transition equation by name.
 * @function transition-equation
 * @since 1.0.0
 */
/**
 * Returns a transition equation by name.
 * @function transition-delay
 * @since 1.0.0
 */
/**
 * @mixin flex
 * @since 1.0.0
 */
/**
 * @mixin flex-box
 * @since 1.0.0
 */
/**
 * @mixin flex-box-inline
 * @since 1.0.0
 */
/**
 * @mixin flex-row
 * @since 1.0.0
 */
/**
 * @mixin flex-col
 * @since 1.0.0
 */
/**
 * @mixin mflex-set
 * @since 1.0.0
 */
/**
 * @mixin flex-ord
 * @since 1.0.0
 */
/**
 * @mixin placeholder
 * @since 1.0.0
 */
/**
 * @mixin selection
 * @since 1.0.0
 */
/**
 * Convenience nth-child mixin to improve loop readability.
 * @function nth-child
 * @since 1.0.0
 */
/**
 * Convenience nth-child mixin with content parameter.
 * @function nth-child
 * @since 1.0.0
 */
/**
 * Convenience nth-child mixin to improve loop readability.
 * @function nth-of-type
 * @since 1.0.0
 */
/**
 * Convenience nth-child mixin to improve loop readability.
 * @function nth-last-child
 * @since 1.0.0
 */
/**
 * Convenience nth-last-of-type mixin to improve loop readability.
 * @function nth-last-of-type
 * @since 1.0.0
 */
/**
 * Convenience data-nth-item mixin to improve loop readability.
 * @mixin nth-item
 * @since 1.0.0
 */
/**
 * Convenience nth-item mixin with content parameter.
 * @mixin nth-item
 * @since 1.0.0
 */
/**
 * Convenience data-nth-line mixin to improve loop readability.
 * @mixin nth-word
 * @since 1.0.0
 */
/**
 * Convenience nth-line mixin with content parameter.
 * @mixin nth-line
 * @since 1.0.0
 */
/**
 * Convenience data-nth-word mixin to improve loop readability.
 * @mixin nth-word
 * @since 1.0.0
 */
/**
 * Convenience nth-word mixin with content parameter.
 * @mixin nth-word
 * @since 1.0.0
 */
/**
 * Targets the last row of a sepcified amount of columns.
 * @mixin last-row
 * @since 1.0.0
 */
/**
 * Convenience mixin
 * @mixin frame
 * @since 1.0.0
 */
/**
 * Position an element with absolute type.
 * @mixin absolute
 * @since 1.0.0
 */
/**
 * Position an element with relative type.
 * @mixin relative
 * @since 1.0.0
 */
/**
 * Position an element with sticky type.
 * @mixin sticky
 * @since 1.0.0
 */
/**
 * Position an element with fixed type.
 * @mixin fixed
 * @since 1.0.0
 */
/**
 * Convenience mixin to position a element absolutely.
 * @mixin fill
 * @since 1.0.0
 */
/**
 * Disables br.
 * @function no-br
 * @since 1.0.0
 */
/**
 * Convenience z-index mixin used for easier debugging.
 * @function elevated
 * @since 1.0.0
 */
/**
 * Convenience mixin.
 * @function pushable
 * @since 1.0.0
 */
/**
 * Convenience transition mixin.
 * @function transition-property
 * @since 1.0.0
 */
/**
 * Convenience transition mixin.
 * @function transition-duration
 * @since 1.0.0
 */
/**
 * Convenience transition mixin.
 * @function transition-equation
 * @since 1.0.0
 */
/**
 * Convenience transition mixin.
 * @function transition-delay
 * @since 1.0.0
 */
/**
 * @mixin position
 * @since 1.0.0
 * @hidden
 */
/**
 * @function is-valid-length
 * @since 1.0.0
 * @hidden
 */
/**
 * @function nth-if
 * @since 1.0.0
 * @hidden
 */
/**
 * The breakpoint keys.
 * @var breakpoints
 * @since 1.0.0
 */
/**
 * The grid breakpoints.
 * @var grid
 * @since 1.0.0
 */
/**
 * Transition speed and curves.
 * @var transitions
 * @since 1.0.0
 */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0px;
  padding: 0px;
}

img {
  display: block;
}

#stage {
  position: relative;
  background: #d6dce8 url(./background.jpg) no-repeat center center;
  background-size: contain;
  height: 50px;
  overflow: hidden;
  width: 320px;
}

.logo {
  position: absolute;
  top: 4px;
  left: 91px;
  background: url(./logo.svg) no-repeat center center;
  height: 9px;
  opacity: 1;
  transition-property: left, top, opacity, transform;
  transition-duration: 750ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  width: 49px;
  z-index: 15;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  background: #d6dce8 url(./background.jpg) no-repeat center right;
  height: 50px;
  width: 320px;
}

.foreground {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
}
.slide.enter, .slide.leave, .slide.current {
  visibility: visible;
}
.slide img {
  display: block;
}

.line {
  overflow: hidden;
}

.item {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.item-1 {
  position: absolute;
  top: 4px;
  right: 0;
  left: 247px;
  height: 35px;
  width: 56px;
  opacity: 0;
}
[data-slide="0"] .item-1, [data-slide="1"] .item-1, [data-slide="2"] .item-1, [data-slide="3"] .item-1 {
  opacity: 1;
}

.slide-1 {
  /* Enter */
  /* Leave */
}
.slide-1 .s1-t1 {
  width: 180px;
  position: absolute;
  top: 20px;
  right: 0;
  left: 25px;
}
.slide-1 .s1-t1 img {
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
}
.slide-1.enter .s1-t1-l1 img {
  transform: translateY(100%);
}
.slide-1.enter--active .s1-t1-l1 img {
  transform: none;
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-1.enter--active .s1-t1-l1 img {
  transition-delay: 0.25s;
}
.slide-1.leave .s1-t1-l1 img {
  transform: none;
}
.slide-1.leave--active .s1-t1-l1 img {
  transform: translateY(-100%);
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-2 {
  /* Enter */
  /* Leave */
}
.slide-2 .s2-t1 {
  position: absolute;
  top: 23px;
  left: 29px;
}
.slide-2 .s2-t1 img {
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
}
.slide-2 .s2-t2 {
  position: absolute;
  top: 23px;
  left: 91px;
}
.slide-2 .s2-t2 img {
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
}
.slide-2 .s2-t3 {
  position: absolute;
  top: 23px;
  left: 110px;
}
.slide-2 .s2-t3 img {
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
}
.slide-2.enter .s2-t1-l1 img, .slide-2.enter .s2-t3-l1 img {
  transform: translateY(100%);
  opacity: 0;
}
.slide-2.enter .s2-t2-l1 img {
  opacity: 0;
}
.slide-2.enter--active .s2-t1-l1 img, .slide-2.enter--active .s2-t2-l1 img, .slide-2.enter--active .s2-t3-l1 img {
  transform: none;
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-2.enter--active .s2-t1-l1 img {
  transition-delay: 0.2s;
}
.slide-2.enter--active .s2-t2-l1 img {
  transition-delay: 0.5s;
}
.slide-2.enter--active .s2-t3-l1 img {
  transition-delay: 0.8s;
}
.slide-2.leave .s2-t1-l1 img, .slide-2.leave .s2-t2-l1 img, .slide-2.leave .s2-t3-l1 img {
  transform: none;
}
.slide-2.leave--active .s2-t1-l1 img, .slide-2.leave--active .s2-t2-l1 img, .slide-2.leave--active .s2-t3-l1 img {
  transform: translateY(-100%);
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-3 {
  /* Enter */
  /* Leave */
}
.slide-3 .s3-t1 {
  position: absolute;
  top: 22px;
  left: 57px;
}
.slide-3.enter .s3-t1-l1 img {
  transform: translateY(120%);
}
.slide-3.enter--active .s3-t1-l1 img {
  transform: none;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-3.enter--active .s3-t1-l1 img {
  transition-delay: 0.2s;
}
.slide-3.leave .s3-t1-l1 img {
  transform: none;
}
.slide-3.leave--active .s3-t1-l1 img {
  transform: translateY(-100%);
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-4 {
  /* Enter */
  /* Leave */
}
.slide-4 .s4-t1 {
  position: absolute;
  top: 21px;
  left: 60px;
}
.slide-4.enter .s4-t1-l1 img {
  opacity: 0;
  transform: translateY(225%);
}
.slide-4.enter--active .s4-t1-l1 img {
  transform: none;
  opacity: 1;
  transition-property: opacity, transform;
  transition-duration: 750ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-4.leave .s4-t1-l1 img {
  transform: none;
}
.slide-4.leave--active .s4-t1-l1 img {
  transform: translateY(225%);
  transition-property: opacity, transform;
  transition-duration: 750ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}