/*Animation Home*/

@keyframes home-slider-fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-200px);
	}
	100% {
		opacity: 1;
		   transform: translateX(0);
	}
}

.home-slider-fadeInLeft{
	
  animation: home-slider-fadeInLeft 1s ease-out forwards;
}

.home-section1-fadeInLeft{
animation-name: home-section1-fadeInLeft;
animation-duration: 1s;
  animation-timing-function:ease-out;
}
@keyframes home-section1-fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-200px, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.home-section1-fadeInRight{
animation-name: home-section1-fadeInRight;
animation-duration: 1s;
  animation-timing-function:ease-out;
}

@keyframes home-section1-fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100px, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

