
.animation-element {
  opacity: 0;
  position: relative;
}
/*animation element sliding left*/

.animation-element.slide-left {
  opacity: 0;
  -moz-transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  -webkit-transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  -o-transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  -moz-transform: translate3d(-150%, 0px, 0px);
  -webkit-transform: translate3d(-150%, 0px, 0px);
  -o-transform: translate(-150%, 0px);
  -ms-transform: translate(-150%, 0px);
  transform: translate3d(-150%, 0px, 0px);
}

.animation-element.slide-left.anim2 {
  -moz-transform: translate3d(-100%, 0px, 0px);
  -webkit-transform: translate3d(-100%, 0px, 0px);
  -o-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate3d(-100%, 0px, 0px);
}

.animation-element.slide-left.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-right {
  opacity: 0;
  -moz-transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  -webkit-transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  -o-transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  transition: all 1s cubic-bezier(.18, 1, 0, .87), opacity 2s ease;
  -moz-transform: translate3d(150%, 0px, 0px);
  -webkit-transform: translate3d(150%, 0px, 0px);
  -o-transform: translate(150%, 0px);
  -ms-transform: translate(150%, 0px);
  transform: translate3d(150%, 0px, 0px);
}


.animation-element.slide-right.anim2 {
  opacity: 0;
  -moz-transform: translate3d(100%, 0px, 0px);
  -webkit-transform: translate3d(100%, 0px, 0px);
  -o-transform: translate(100%, 0px);
  -ms-transform: translate(100%, 0px);
  transform: translate3d(100%, 0px, 0px);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.grow {
  transform: scale(0.75);
	opacity: 0;
}
.animation-element.grow.in-view {
  transform: scale(1);
	opacity: 1;
	  -moz-transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
	
}