@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 0.75s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
		transform: scale(1.05);
  }

  to {
    opacity: 1;
		transform: scale(1);
  }
}
.show-fadeInHero {
  animation-name: fadeInHero;
	animation-duration: 2.0s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.show-fadeIn {
  animation-name: fadeIn;
	animation-duration: 1.5s;
}

@keyframes fadeIn2 {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.show-fadeIn2 {
  animation-name: fadeIn2;
	animation-duration: 1.0s;
}
@keyframes fadeIn3 {
  25% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.show-fadeIn3 {
  animation-name: fadeIn3;
	animation-duration: 1.5s;
}
@keyframes fadeIn4 {
  50% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.show-fadeIn4 {
  animation-name: fadeIn4;
	animation-duration: 2.0s;
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.75);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.show-zoom {
  animation-name: fadeZoom;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
}
.show-flipX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}


@keyframes slideInLeft {
	25% {
    transform: translate3d(-50px, 0, 0);
    visibility: visible;
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.show-slideInL {
  animation-name: slideInLeft;
	animation-duration: 1.5s;
}


@keyframes slideInRight {
  from {
    transform: translate3d(50px, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.show-slideInR {
  animation-name: slideInRight;
	animation-duration: 1.5s;
}
