.hidden {
    opacity: 0 ; }
.visible {
    opacity: 1 ; }

.fadeIn.first {
	-webkit-animation-delay: 0.4s ;
	-moz-animation-delay: 0.4s ;
	animation-delay: 0.4s ; }
.fadeIn.second {
	-webkit-animation-delay: 0.6s ;
	-moz-animation-delay: 0.6s ;
	animation-delay: 0.6s ; }
.fadeIn.third {
	-webkit-animation-delay: 0.8s ;
	-moz-animation-delay: 0.8s ;
	animation-delay: 0.8s ; }
.fadeIn.fourth {
	-webkit-animation-delay: 1s ;
	-moz-animation-delay: 1s ;
	animation-delay: 1s ; }
.fadeIn.fifth {
	-webkit-animation-delay: 1.2s ;
	-moz-animation-delay: 1.2s ;
	animation-delay: 1.2s ; }
.fadeIn.sixth {
	-webkit-animation-delay: 1.4s ;
	-moz-animation-delay: 1.4s ;
	animation-delay: 1.4s ; }
.fadeIn.seventh {
	-webkit-animation-delay: 1.6s ;
	-moz-animation-delay: 1.6s ;
	animation-delay: 1.6s ; }
.fadeIn.eighth {
	-webkit-animation-delay: 1.8s ;
	-moz-animation-delay: 1.8s ;
	animation-delay: 1.8s ; }
.fadeIn.ninth {
	-webkit-animation-delay: 2s ;
	-moz-animation-delay: 2s ;
	animation-delay: 2s ; }
.fadeIn.tenth {
	-webkit-animation-delay: 2.2s ;
	-moz-animation-delay: 2.2s ;
	animation-delay: 2.2s ; }
.fadeIn.eleventh {
	-webkit-animation-delay: 2.4s ;
	-moz-animation-delay: 2.4s ;
	animation-delay: 2.4s ; }
.fadeIn.twelfth {
	-webkit-animation-delay: 2.4s ;
	-moz-animation-delay: 2.4s ;
	animation-delay: 2.4s ; }
	
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@keyframes blinker {
  	50% {
    	opacity: 0 ;
  	}
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}



@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

.owl-carousel.home-slider .owl-item.active .slider-text h1{
	animation: fadeInLeftBig ease 1s both;
}
.owl-carousel.home-slider .owl-item.active .slider-text p{
	animation: fadeInUpBig ease 3s both;
}