.hero-secondary {
  padding-inline: 0;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.hero-secondary--container {
  padding: 100px 16px;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .hero-secondary--container {
    text-align: left;
  }
}

@media screen and (min-width: 992px) {
  .hero-secondary--container h1 {
    max-width: 60%;
  }
}

.hero-secondary--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-secondary--bg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-secondary--bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--white);
  opacity: 0.3;
}
