.hideme {
  opacity: 0;
}

.animation-element {
  opacity: 0;
  position: relative;
}

/*animation element sliding right*/
.slide-right {
  -moz-transition: all 500ms linear;
  -moz-transform: translate3d(100px, 0px, 0px);
  -webkit-transition: all 500ms linear;
  -webkit-transform: translate3d(100px, 0px, 0px);
  -o-transition: all 500ms linear;
  -o-transform: translate(100px, 0px, 0px);
  -ms-transform: translate(100px, 0px, 0px);
  transition: all 500ms linear;
  transform: translate3d(100px, 0px, 0px);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

@media (max-width: 840px) {
  .animation-element.slide-right.in-view {
    margin: auto !important;
    margin-bottom: 20px !important;
  }
}
/*animation slide right styled for testimonials*/
.animation-element.slide-right.testimonial:nth-of-type(odd) {
  margin: 0% 1.5% 3% 0%;
}

.animation-element.slide-right.testimonial:nth-of-type(even) {
  width: 48.5%;
  margin: 0% 0% 3% 0%;
}

.animation-element.slide-right.testimonial .header {
  float: right;
  width: 100%;
  margin-bottom: 10px;
}

.animation-element.slide-right.testimonial .right {
  float: right;
  margin-right: 15px;
}

.animation-element.slide-right.testimonial .right {
  float: right;
}

.animation-element.slide-right.testimonial img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(51, 51, 51, 0.5);
}

.animation-element.slide-right.testimonial h3 {
  margin: 0px 0px 5px 0px;
}

.animation-element.slide-right.testimonial h4 {
  margin: 0px 0px 5px 0px;
}