/*animations*/

/******************
* Bounce in right *
*******************/


.animated { 
	
} 


/* Added by Andy Meetan */
.delay-1 {
    -webkit-transition-delay: 0.15s !important;
    transition-delay: 0.15s !important;
}
.delay-2 {
    -webkit-transition-delay: 0.30s !important;
    transition-delay: 0.30s !important;
}
.delay-3 {
    -webkit-transition-delay: 0.45s !important;
    transition-delay: 0.45s !important;
}
.delay-4 {
    -webkit-transition-delay: 0.60s !important;
    transition-delay: 0.60s !important;
}
.delay-5 {
    -webkit-transition-delay: 0.75s !important;
    transition-delay: 0.75s !important;
}
.delay-6 {
    -webkit-transition-delay: 0.90s !important;
    transition-delay: 0.90s !important;
}
.delay-7 {
    -webkit-transition-delay: 1.05s !important;
    transition-delay: 1.05s !important;
}
.delay-8 {
    -webkit-transition-delay: 1.20s !important;
    transition-delay: 1.20s !important;
}



/*************
* ZoomOut *
*************/

.zoomOut .ce-gallery {
	overflow: hidden;
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.zoomOut img, .zoomOut .spc-page-banner-bg { 

    -webkit-transform: scale(1.25);
    transform: scale(1.25);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	
}
.zoomOut.go img, .zoomOut.go .spc-page-banner-bg{
    -webkit-transform: scale(1);
    transform: scale(1);
	
	-webkit-transition: all 1.5s ease 0s;
	transition: all 1.5s ease 0s;
}

/**********
* Fade In *
**********/ 
@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
}
.fadeIn{
    opacity:0;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeIn.go {
	opacity: 1; 	
    -webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

/*************
* FadeInUp *
*************/ 
.fadeInUp{ 
    opacity: 0; 
    -webkit-transform: translateY(50px); 
    transform: translateY(50px);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeInUp.go { 
    opacity: 1; 
    -webkit-transform: translateY(0); 
    transform: translateY(0);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}



/*********************
* fadeInUpShort
*********************/
.fadeInUpShort{
    opacity: 0; 
	
	-webkit-transform: translateY(50px); 
    transform: translateY(50px);
	
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.fadeInUpShort.go {
	opacity: 1; 
    -webkit-transform: translateY(0); 
    transform: translateY(0);
	
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}