.hero {
  position: relative;
  width: 100vw;
  height: 70vh;
}

.hero__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.65);
  backdrop-filter: blur(2px);
}

.hero__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero__content h3,
.hero__content p {
  opacity: 0;
  translate: 0 1rem;
  transition: all 500ms ease-out;
}

.hero__content h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero__content.show h3,
.hero__content.show p {
  translate: 0 0;
  opacity: 1;
}

.hero__content p {
  line-height: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition-delay: 200ms;
}
