#hero {
  padding: 160px 0px 80px 0px;
}

.heading {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

.heading > p {
  margin-top: 16px;
  color: var(--gray-500);
  font-family: Open Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-text,
#hero-image {
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  animation: slideUp 0.3s 0.5s forwards ease-in;
}

.hero-text {
  animation: slideUp 0.3s 0.6s forwards ease-in;
}

#hero-image {
  margin-top: 80px;
  animation: slideUp 0.3s 0.6s forwards ease-in;
  width: 100%;
  max-width: 960px;
}
