.stage-1 {

}

.stage-1 .t{
  position: absolute;
  top: 0;
  right: 2%;
  width: 25%;
  display: none;
}

.showDream .stage-1 .t{
  display: block;
  animation: pulse 2s infinite, fadeIn .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.stage-2 .t{
  position: absolute;
  bottom: 12%;
  left: 19%;
  width: 25%;
}

.turtle-in .stage-2 .t {
  animation: fadeInLeft .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.turtle-talk .stage-2 .t {
  animation: bounce 1s infinite;
  animation-fill-mode: both;
}

.stage-2 .god {
  position: absolute;
  bottom: 13%;
  left: 52%;
  width: 37%;
  display: none;
}

.god-in .stage-2 .god {
  animation: fadeInRight .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
  display: block;
}

.both .stage-2 .god {
  display: block;
}

.god-talk .stage-2 .god {
  animation: pulse 1.5s infinite; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.stage-3 .t1 {
  position: absolute;
  bottom: 9%;
  left: 21%;
  width: 23%;
  display: none;
}

.t1-left-in .stage-3 .t1 {
  animation: fadeInLeft .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.normal .stage-3 .t1 {
  display: block;
}

.stage-3 .t2 {
  position: absolute;
  bottom: 9%;
  left: 21%;
  width: 19%;
  display: none;
}

.cry .stage-3 .t2 {
  display: block;
}

.t2-in .stage-3 .t2 {
  animation: fadeInRight .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.stage-3 .t3 {
  position: absolute;
  bottom: 9%;
  left: 21%;
  width: 21%;
  display: none;
}

.stage-3 .t3>img{
  width: 100%;
  transform: rotateY(180deg);
}

.laugh .stage-3 .t3 {
  display: block;
}

.t3-out .stage-3 .t3 {
  animation: fadeOutRight .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.turtle-talk .stage-3 .t1, .turtle-talk .stage-3 .t2, .turtle-talk .stage-3 .t3 {
  animation: bounce 1s infinite;
  animation-fill-mode: both;
}

.stage-4 .t1 {
  position: absolute;
  top: 49%;
  left: 54%;
  width: 18%;
}

.stage-4 .ts {
  position: absolute;
  top: 6%;
  left: 4%;
  width: 46%;
  display: none;
}

.show-ts .stage-4 .ts {
  display: block;
  animation: fadeIn .5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.stage-5 .tower {
  position: absolute;
  top: 22%;
  left: 37%;
  width: 10%;
  transition: left 1s ease, width 1s ease, top 1s ease;
}

.show-tower .stage-5 .tower {
  top: 3%;
  left: 34%;
  width: 15%;
  animation: shakeY 10s infinite; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.stage-6 .tower {
  position: absolute;
  top: 0%;
  left: 32%;
  width: 20%;
}

.stage-6 .sword {
  position: absolute;
  top: 2%;
  left: 30%;
  width: 22%;
}

.fight .stage-6 .tower {
  animation: swing 3s infinite; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.fight .stage-6 .sword {
  animation: swing 3s infinite .4s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
}

.stage-7 .wave1 {
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 65%;
  display: none;
}

.stage-7 .t {
  position: absolute;
  bottom: 0;
  right: 12%;
  width: 43%;
  display: none;
}

.stage-7 .wave2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 87%;
  /* display: none; */
}

.show-in .stage-7 .wave1, .show-in .stage-7 .t {
  animation: fadeInUp 5s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
  display: block;
}

.show-wave .stage-7 .wave1, .show-turtle .stage-7 .t, .show-wave .stage-7 .wave2 {
  display: block;
}

.turtle-out .stage-7 .t {
  animation: fadeOutRight 2s; /* referring directly to the animation's @keyframe declaration */
  animation-fill-mode: both;
  display: block;
}
