.animation-element {
	position: relative;
	width: 100%;
	margin: 0;
}


/*FADE IN STYLES*/
.fadein {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
.fadein.in-view {
	opacity: 1.0;
	-webkit-opacity: 1.0;
	-moz-opacity: 1.0;
	-moz-transition: all 1s ease-in;
	-webkit-transition: all 1s ease-in;
	-o-transition: all 1s ease-in;
	transition: all 1s ease-in;
	}

/*SLIDE UP ANIMATION STYLES*/
.bounce-up {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-moz-transition: all 800ms ease-out;
	-webkit-transition: all 800ms ease-out;
	-o-transition: all 800ms ease-out;
	transition: all 800ms ease-out;
	-moz-transform: translate3d(0px, 100px, 0px);
	-webkit-transform: translate3d(0px, 100px, 0px);
	-o-transform: translate(0px, 100px);
	-ms-transform: translate(0px, 100px);
	transform: translate3d(0px, 100px, 0px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
.bounce-up.in-view {
	opacity: 1.0;
	-webkit-opacity: 1.0;
	-moz-opacity: 1.0;
	-moz-transform: translate3d(0px, 0px, 0px);
	-webkit-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

/*SLIDE DOWN ANIMATION STYLES*/

.bounce-down {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-moz-transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
	-moz-transform: translate3d(0px, -50px, 0px);
	-webkit-transform: translate3d(0px, -50px, 0px);
	-o-transform: translate(0px, -50px);
	-ms-transform: translate(0px, -50px);
	transform: translate3d(0px, -50px, 0px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
.bounce-down.in-view {
	opacity: 1.0;
	-webkit-opacity: 1.0;
	-moz-opacity: 1.0;
	-moz-transform: translate3d(0px, 0px, 0px);
	-webkit-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

/*media queries for small devices*/

@media screen and (max-width: 678px) {

.animation-element {
	width: 100%;
	margin: 0;
}
}
/*SLIDE LEFT ANIMATION STYLES*/

.animation-element.slide-left {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-moz-transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
	-o-transition: all 500ms linear;
	transition: all 500ms linear;
	-moz-transform: translate3d(-100px, 0px, 0px);
	-webkit-transform: translate3d(-100px, 0px, 0px);
	-o-transform: translate(-100px, 0px);
	-ms-transform: translate(-100px, 0px);
	transform: translate3d(-100px, 0px, 0px);
}
.animation-element.slide-left.in-view {
	opacity: 1.0;
	-webkit-opacity: 1.0;
	-moz-opacity: 1.0;
	-moz-transform: translate3d(0px, 0px, 0px);
	-webkit-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

/*media queries for small devices*/
@media screen and (max-width: 678px) {
.animation-element.slide-left {
	width: 100%;
	margin: 0;
}
}
/*SLIDE RIGHT ANIMATION STYLES*/

.animation-element.slide-right {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-moz-transition: all 500ms linear;
	-webkit-transition: all 500ms linear;
	-o-transition: all 500ms linear;
	transition: all 500ms linear;
	-moz-transform: translate3d(100px, 0px, 0px);
	-webkit-transform: translate3d(100px, 0px, 0px);
	-o-transform: translate(100px, 0px);
	-ms-transform: translate(100px, 0px);
	transform: translate3d(100px, 0px, 0px);
}
.animation-element.slide-right.in-view {
	opacity: 1.0;
	-webkit-opacity: 1.0;
	-moz-opacity: 1.0;
	-moz-transform: translate3d(0px, 0px, 0px);
	-webkit-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

/*media queries for small devices*/
@media screen and (max-width: 678px) {
.animation-element.slide-right {
	width: 100%;
	margin: 0;
}
}
