@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.frame .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4B4841;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.frame .center .scene {
  width: 75%;
  height: 45%;
  perspective-origin: center;
  perspective: 1000px;
}
.frame .center .scene .card {
  width: 100%;
  height: 100%;
  box-shadow: 3px 3px 10px 0px #000;
  position: relative;
  transition: all 1.5s ease;
  transform-style: preserve-3d;
}
.frame .center .scene .card:hover {
  transform: rotateX(180deg);
  box-shadow: 3px -3px 10px 0px #000;
}
.frame .center .scene .card .front, .frame .center .scene .card .back {
  background: #FFCE4E;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  position: absolute;
}
.frame .center .scene .card .front .bycicle {
  transform-origin: 50% 100%;
  animation: bycicle-moving 0.3s ease infinite alternate;
}
@keyframes bycicle-moving {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.96);
  }
}
.frame .center .scene .card .front svg {
  width: 11rem;
  height: 10px;
  position: absolute;
  top: 7.9rem;
  left: 4rem;
}
.frame .center .scene .card .front svg line {
  stroke: #4B4841;
  stroke-width: 5px;
  stroke-dasharray: 10 50 10 5 10 60 15 40 30 10 5 25 20 10;
  stroke-dashoffset: 0;
  animation: ground-motion 0.8s linear infinite;
}
@keyframes ground-motion {
  to {
    stroke-dashoffset: 300;
  }
}
.frame .center .scene .card .back {
  transform: rotateX(180deg);
}
.frame .center .scene .card .back .helicopter {
  position: relative;
  z-index: 1;
  animation: helicopter-moving 0.8s linear infinite alternate;
}
@keyframes helicopter-moving {
  0% {
    transform: translateY(-0.4rem);
  }
  100% {
    transform: translateY(0.4rem);
  }
}
.frame .center .scene .card .back svg {
  width: 160px;
  height: 120px;
  position: absolute;
  top: 2rem;
  z-index: 0;
}
.frame .center .scene .card .back svg .air {
  stroke: #4B4841;
  stroke-width: 3px;
}
.frame .center .scene .card .back svg .air-1 {
  stroke-dasharray: 24 156;
  animation: air-motion-1 0.6s linear infinite;
}
@keyframes air-motion-1 {
  from {
    stroke-dashoffset: 145;
  }
  to {
    stroke-dashoffset: 325;
  }
}
.frame .center .scene .card .back svg .air-2 {
  stroke-dasharray: 12 168;
  animation: air-motion-2 0.6s linear infinite;
}
@keyframes air-motion-2 {
  from {
    stroke-dashoffset: 87;
  }
  to {
    stroke-dashoffset: 267;
  }
}
.frame .center .scene .card .back svg .air-3 {
  stroke-dasharray: 18 162;
  animation: air-motion-3 0.6s linear infinite;
}
@keyframes air-motion-3 {
  from {
    stroke-dashoffset: 16;
  }
  to {
    stroke-dashoffset: 196;
  }
}
.frame .center .scene .card .back svg .air-4 {
  stroke-dasharray: 11 169;
  animation: air-motion-4 0.6s linear infinite;
}
@keyframes air-motion-4 {
  from {
    stroke-dashoffset: 59;
  }
  to {
    stroke-dashoffset: 239;
  }
}
.frame .center .scene .card .back svg .air-5 {
  stroke-dasharray: 18 162;
  animation: air-motion-5 0.6s linear infinite;
}
@keyframes air-motion-5 {
  from {
    stroke-dashoffset: 166;
  }
  to {
    stroke-dashoffset: 346;
  }
}
.frame .center .scene .card .back svg .air-6 {
  stroke-dasharray: 20 160;
  animation: air-motion-6 0.6s linear infinite;
}
@keyframes air-motion-6 {
  from {
    stroke-dashoffset: 122;
  }
  to {
    stroke-dashoffset: 302;
  }
}

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