.section.active .ani-left-01 {
  animation: fadeLeft 1s 0.35s both;
}
.section.active .ani-left-02 {
  animation: fadeLeft 1s 0.55s both;
}
.section.active .ani-left-03 {
  animation: fadeLeft 1s 0.75s both;
}
.section.active .ani-up-01 {
  animation: fadeUp 1s 0.35s both;
}
.section.active .ani-up-02 {
  animation: fadeUp 1s 0.55s both;
}
.section.active .ani-up-03 {
  animation: fadeUp 1s 0.75s both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes ball1 {
  0% {
    top: 0px;
  }
  55% {
    width: 65px;
    border-radius: 0%;
  }
  to {
    top: 100px;
    width: 50px;
    height: 50px;
  }
}
@keyframes ball2 {
  0% {
    bottom: 0;
  }
  55% {
    width: 10px;
  }
  to {
    top: 30px;
    width: 10px;
    height: 10px;
  }
}
@keyframes ball3 {
  0% {
    top: 10%;
  }
  55% {
    width: 20px;
  }
  to {
    top: 30%;
    width: 20px;
    height: 20px;
  }
}
.ball1 {
  position: absolute;
  left: 34%;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 176, 78, 0.8);
  animation: ball1 1s ease-in Infinite Alternate;
}

.ball2 {
  position: absolute;
  left: 60%;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(89, 179, 58, 0.8);
  animation: ball2 0.5s ease-in Infinite Alternate;
}

.ball3 {
  position: absolute;
  left: 75%;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 114, 188, 0.8);
  animation: ball3 0.7s ease-in Infinite Alternate;
}

.fp-controlArrow.fp-prev {
  border-color: transparent rgb(209, 213, 219) transparent transparent;
}

.fp-controlArrow.fp-next {
  display: none;
  border-color: transparent transparent transparent rgb(209, 213, 219);
}

#fp-nav {
  z-index: 0;
}/*# sourceMappingURL=style.css.map */