.hero {
  position: relative;
  color: var(--background-color);
  text-align: center;
  padding: 160px 20px;
  margin-top: 6rem;

  @media (min-width: 768px) {
    margin-top: 10rem;
  }
}

.hero-schody {
  background: url("/public/images/hero/hero-schody.jpg") center/cover no-repeat;
}

.hero-balustrady {
  background: url("/public/images/hero/hero-balustrady.jpg") center/cover no-repeat;
}

.hero-bramy {
  background: url("/public/images/hero/hero-bramy.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.45);
}

.hero .hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsla(0, 0%, 100%, 0.9);
}