.loading-fade-leave-active {
  transition: all 0.6s;
}

.loading-fade-leave-to {
  opacity: 0;
}

.animation.fade-out {
  animation: fadeOutBottom 1s forwards;
  animation-timing-function: ease;
  animation-delay: 1s;
}

@keyframes fadeOutBottom {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
.fvSwiper .swiper-wrapper,
.loopSwiper .swiper-wrapper {
  transition-timing-function: linear;
}

.rotate {
  animation: 3s linear infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.fadeIn {
  opacity: 0;
  transition: all 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.zoomUp {
  opacity: 0;
  transform: scale(0);
  transition: all 1s;
}
.zoomUp.is-inview {
  opacity: 1;
  transform: scale(1);
}

.slideDown {
  overflow: hidden;
  position: relative;
}
.slideDown::before {
  content: "";
  background: #7F7C48;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  inset: 0;
}
.slideDown.is-inview::before {
  animation: slideDown 2s forwards;
}

@keyframes slideDown {
  100% {
    transform: translateY(100%);
  }
}
.delay-2.is-inview {
  transition-delay: 0.2s;
}

.delay-4.is-inview {
  transition-delay: 0.4s;
}

.delay-6.is-inview {
  transition-delay: 0.6s;
}

.delay-8.is-inview {
  transition-delay: 0.8s;
}

.delay-10.is-inview {
  transition-delay: 1s;
}

.delay-12.is-inview {
  transition-delay: 1.2s;
}/*# sourceMappingURL=trigger.css.map */