.hero {
  height: calc(100vh - 50px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  text-align: center;
  background-color: rgb(0, 0, 0, 0.65);
  background-image: url("../images/background/hero.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-blend-mode: multiply;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content .btn-primary {
  margin-bottom: 5rem;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-paragraph {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #fff;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1024px) {
  .hero {
    height: calc(100vh - 140px);
  }
}
