.lrp-fadein {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
  transform: translate(0, 50px);
}

.lrp-fadein-right {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
  transform: translate(50px, 0);
}

.lrp-fadein-line li {
  opacity: 0;
  transition-duration: 0.3s;
  transition-property: opacity, transform;
}

.lrp-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.lrp-scrollIn-line li {
  -webkit-animation: fadeinLine 1.5s forwards;
  animation: fadeinLine 1.5s forwards;
}

.lrp-scrollIn-line li:nth-of-type(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.lrp-scrollIn-line li:nth-of-type(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.lrp-scrollIn-line li:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.lrp-scrollIn-line li:nth-of-type(4) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.lrp-scrollIn-line li:nth-of-type(5) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.lrp-scrollIn-line li:nth-of-type(6) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

@-webkit-keyframes fadeinLine {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeinLine {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}