.fadeInLeftOutright {
	animation-name: customfadeInLeftOutright;
	animation-duration:7.5s;
}
.customfadeInLeftOutright {
	opacity: 0;
    transform: translate3d(0, 0, 0);
}

@keyframes customfadeInLeftOutright {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
	20% {
		opacity: 1;
        transform: none;
	}
	50% {
		opacity: 1;
        transform: none;
	}
    to {
       opacity: 0;
       transform: translate3d(200%, 0, 0);
    }
}
