/* Narrative / mission typography */

.narrative-pg {
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
  max-width: 75%;
  margin-bottom: 48px;
  font-weight: 500;
}

.narrative-word {
  display: inline-block;
  color: #111111;
  opacity: 0.15;
  transition: opacity 0.3s ease-in-out;
}

.narrative-word.active {
  opacity: 1;
}

@media (max-width: 640px) {
  .narrative-pg {
    font-size: 19px;
    line-height: 1.55;
    max-width: 92%;
    margin-bottom: 28px;
  }
}

