/*animate keyframe*/
.fadein [data-animate=fimg] {
  display: flex;
  animation-name: fadein-img;
  animation-fill-mode: both;
  animation-duration: 5s;
  animation-delay: 0s;
  animation-timing-function: ease;
  transform: scale(0.5);
  opacity: 0;
}

.fadein [data-animate=fb] {
  display: flex;
  animation-name: fadein-b;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: ease;
  transform: translateY(-2rem);
  opacity: 0;
}

.fadein [data-animate=ft] {
  display: flex;
  animation-name: fadein-t;
  animation-fill-mode: both;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-timing-function: ease;
  transform: translateY(2rem);
  opacity: 0;
}

.fadein [animate-view=fadeinWidth] {
  display: flex;
  animation-name: fadein-width;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-timing-function: ease;
  width: 0%;
  opacity: 0;
}

/*keyframes*/
@keyframes fadein-img {
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadein-b {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes fadein-t {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes fadein-width {
  to {
    opacity: 1;
    width: 100px;
    -webkit-width: 100px;
    -moz-width: 100px;
    -ms-width: 100px;
    -o-width: 100px;
  }
}
@keyframes in_side {
  to {
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
  }
}
@keyframes rotate180 {
  to {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
}
@keyframes clipbox {
  to {
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
}
/*animate-view="slideLeft"*/
[animate-view=slideLeft] {
  transform: translateX(-100%);
}

[animate-view=slideRight] {
  transform: translateX(100%);
}

/*animate-view="slideRight"*/
[animate-view=slideRight], [animate-view=slideLeft] {
  display: flex;
  animation-name: slide;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-timing-function: ease;
  animation-timeline: view();
  animation-range-start: 0px;
  animation-range-end: 30vh;
}

@keyframes slide {
  to {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.clip-box {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.98, 0.62);
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: circle(0% at center);
          clip-path: circle(0% at center);
  animation-timeline: view();
  animation-range-start: 0px;
  animation-range-end: 80vh;
  animation-name: clipbox;
  animation-fill-mode: both;
  animation-duration: 1ms;
  /* Firefox requires this to apply the animation */
  animation-timing-function: linear;
}

.view-box {
  display: flex;
  content: "";
  position: ralitive;
  border-radius: 0%;
  width: 100%;
  height: 100%;
  color: #FFF;
  transform: scalex(0);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.98, 0.62);
}/*# sourceMappingURL=animate.css.map */