@charset "UTF-8";
/* anime.css */

.animate {
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.spread-left {
  width: 0 !important;
}
.from-top-in {
  transform: translateY(-100%);
}
.from-left {
  transform: translateX(-100%);
}
.from-bottom-fade {
  opacity: 0;
  transform: translateY(80px);
}
.from-bottom-fade-2 {
  opacity: 0;
  transform: translateY(-80px) !important;
}
.from-left-fade {
  opacity: 0;
  transform: translateX(-80px);
}
.from-right-fade {
  opacity: 0;
  transform: translateX(80px);
}

/* animation hide */
.to-right-hide {
  left: 100% !important;
}
