/*
 * Shell Energy Transitions Challenge
 * Author: Neat projects <ties@expertees.nl>
 *
 * Custom animations
 */

.animated.transition {
	-webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}


/* overwrite the slideindown speed */
.animated.slideInDown {
  -webkit-animation-duration: 200ms;
  animation-duration: 200ms;
}


.animated.pulse {
	-webkit-animation-iteration-count:infinite;
    animation-iteration-count:infinite;
    -webkit-animation-duration: 1s;
 	animation-duration: 1s;
}