.hero {
  width: 100dvw;
  height: 70dvh;
  position: relative;
  background-image: url("../assets/images/benyamin-bohlouli-e7MJLM5VGjY-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}
.hero .container {
  width: 1200px;
  max-width: 95%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 820px) {
  .hero .container {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .hero .container {
    width: 1200px;
  }
}
.hero .container h1 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-top: 5em;
}
@media (min-width: 768px) {
  .hero .container h1 {
    font-size: 2rem;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .hero .container h1 {
    font-size: 2.5rem;
  }
}
.hero .container p {
  font-size: 0.7rem;
  color: #fff;
  margin-top: 1em;
}
.hero .container p br {
  display: none;
}
@media (min-width: 768px) {
  .hero .container p br {
    display: initial;
  }
}
@media (min-width: 768px) {
  .hero .container p {
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .hero .container p {
    font-size: 1rem;
  }
}
.hero .container button {
  border-radius: 12px;
  height: 45px;
  padding: 0 1.5em;
  color: #000;
  background-color: #fff;
  margin-top: 1em;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 1px;
  word-spacing: 1px;
  transition: 0.25s all ease-in-out;
  font-size: 0.8rem;
  height: 40px;
}
@media (min-width: 1200px) {
  .hero .container button {
    font-size: 1rem;
    height: 45px;
  }
}
.hero .container button:hover {
  background-color: #000;
  color: #fff;
}/*# sourceMappingURL=hero.css.map */