.text {
  margin-bottom: 100px;
  text-align: center;
}
.text p {
  line-height: 2;
}
.text span {
  display: block;
}

.img img {
  margin: auto;
  max-width: 400px;
  width: 100%;
}

.sub-title, .text p, .img {
  opacity: 0;
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  -o-transition: opacity 0.3s, -o-transform 0.3s;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.sub-title.show, .text p.show, .img.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@media screen and (max-width: 1100px) {
  .text span {
    display: inline;
  }
}
