@charset "UTF-8";
@tailwind base;

.scroll_visible {
  transform: translateY(0);
  opacity: 1;
  @media only screen and (min-width: 1272px) {
    /* transform: translate(0, 0); */
  }
}


@keyframes pathmove {
  0% {
    bottom: calc(100% - 30rem);
  }

  25% {
    /* bottom: 75%; */
  }

  50% {
    /* bottom: 50%; */
  }

  75% {
    /* bottom: 25%; */
  }

  100% {
    top: auto;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* transform: translate(0, 0); */
  .swiper-slide:nth-of-type(n+6) {
    display: none;
}
}