@charset "utf-8";
/* CSS Document */

/*hover and animate*/
.hvr-grow-1 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow-1:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.hvr-grow-2 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow-2:hover, .hvr-grow-2:focus, .hvr-grow-2:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.animated.bounceIn { animation-duration: 1s; }
.animated.bounceIn.delay1 { animation-duration: 1s; animation-delay: 0.25s;}
.animated.bounceIn.delay2 { animation-duration: 1s; animation-delay: 0.5s; }
.animated.bounceIn.delay3 { animation-duration: 1s; animation-delay: 0.75s; }
.animated.zoomIn { animation-duration: .75s; }
.animated.zoomIn.delay1 { animation-duration: .75s; animation-delay: 0.25s;}
.animated.zoomIn.delay2 { animation-duration: .75s; animation-delay: 0.5s; }
.animated.zoomIn.delay3 { animation-duration: .75s; animation-delay: 0.75s; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}