@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: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}


/* == VerTex == */

@keyframes AFadeInUp {
	from {opacity:0; transform: translateY(4.5rem);}
	to {opacity:1; transform: translateY(0px);}
}
.AFadeInUp { animation-name: AFadeInUp;}


@keyframes AFadeInLeft {
	from {opacity:0; transform: translateX(-10rem);}
	to {opacity:1; transform: translateX(0px);}
}
.AFadeInLeft { animation-name: AFadeInLeft;}


@keyframes AFadeInRight {
	from {opacity:0; transform: translateX(10rem);}
	to {opacity:1; transform: translateX(0px);}
}
.AFadeInRight { animation-name: AFadeInRight;}


@media (max-width:991px) {
	@keyframes AFadeInLeft {
		from {opacity:0; transform: translateX(-5rem);}
		to {opacity:1; transform: translateX(0px);}
	}
	
	@keyframes AFadeInRight {
		from {opacity:0; transform: translateX(5rem);}
		to {opacity:1; transform: translateX(0px);}
	}
}
/* == // VerTex == */



