/* scroll animation*/
.effect-fade {
	opacity: 0;
	transform: translate(0, -45px);
	transition: ease-in-out .3s ;
}

.effect-fade.effect-scroll {
	opacity: 1;
	transform: translate(0,0);
	transition: ease-in-out .5s;
}
.fadeUp:nth-of-type(1) {
	transition-delay: 200ms;
}
.fadeUp:nth-of-type(2) {
	transition-delay: 400ms;
}
.fadeUp:nth-of-type(3) {
	transition-delay: 600ms;
}
.fadeUp:nth-of-type(4) {
	transition-delay: 800ms;
}
a.effect-hover:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0px 6px 9px 0px gray;

}
