.fullPage {
  padding: 50px 0;
}

.fullPage__text {
  max-width: 625px;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* Per-Page Customisations */
.fullPage__text--references {
  text-align: left;
}

/* Animations */
.hero,
.fullPage__text p {
  opacity: 0;
  animation: 0.4s cubic-bezier(0.7, 1.3, 0.75, 1) forwards animations__slideAppear;
}

.hero {
  animation-delay: 0.2s;
}

.fullPage__text p:nth-child(1) {
  animation-delay: 0.3s;
}

.fullPage__text p:nth-child(2) {
  animation-delay: 0.4s;
}

.fullPage__text p:nth-child(3) {
  animation-delay: 0.5s;
}

.fullPage__text p:nth-child(4) {
  animation-delay: 0.6s;
}

.fullPage__text p:nth-child(5) {
  animation-delay: 0.7s;
}

.fullPage__text p:nth-child(6) {
  animation-delay: 0.8s;
}

.fullPage__text p:nth-child(7) {
  animation-delay: 0.9s;
}

.fullPage__text p:nth-child(8) {
  animation-delay: 1.0s;
}

.fullPage__text p:nth-child(9) {
  animation-delay: 1.1s;
}

.fullPage__text p:nth-child(10) {
  animation-delay: 1.2s;
}

.fullPage__text p:nth-child(11) {
  animation-delay: 1.3s;
}

.fullPage__text p:nth-child(12) {
  animation-delay: 1.4s;
}

.fullPage__text p:nth-child(13) {
  animation-delay: 1.5s;
}

.fullPage__text p:nth-child(14) {
  animation-delay: 1.6s;
}

.fullPage__text p:nth-child(15) {
  animation-delay: 1.7s;
}

@keyframes animations__slideAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
