/*.container{
	overflow-x: hidden;
}*/

/* Animação */
[data-anime] {
  opacity: 0;
  transition: .9s;
}

[data-anime="left"] {
  transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
  transform: translate3d(50px, 0, 0);
}

[data-anime="top"] {
  transform: translate3d(0, -50px, 0);
}

[data-anime="down"] {
  transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
} 


@media only screen and (min-width: 10px) and (max-width: 455px) { 
	.container {
		overflow-x: hidden;
	}

	[data-anime].animate {
	  transform: none;
	} 

	[data-anime] {
	  transform: none;
	}

	[data-anime="left"] {
	  transform: none;
	}

	[data-anime="right"] {
	  transform: none;
	}

	[data-anime="top"] {
	  transform: none;
	}

	[data-anime].animate {
	  transform: none;
	} 
   
}
