.path-frontpage .hero {
  background-position: unset !important;
}
@media (max-width: 500px) {
  .path-frontpage .hero {
    background-position-x: center !important;
  }
}

.hero {
  display: flex;
  height: 80vh;
  min-height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-direction: column;
  justify-content: end;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .hero {
    padding: 20px;
    height: auto;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.185) 40%, #342180);
  z-index: 0;
}
.hero .wrapper {
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  padding: 50px 0;
}
@media screen and (max-width: 900px) {
  .hero .wrapper {
    max-width: none;
  }
}
@media (max-width: 500px) {
  .hero .wrapper {
    padding-top: 50vh;
  }
}
.hero .wrapper .title {
  font-size: 2.5rem;
  color: white;
  margin: 0;
  max-width: 50%;
}
@media (max-width: 500px) {
  .hero .wrapper .title {
    max-width: 100%;
    font-size: 50px;
  }
}
.hero .wrapper .description {
  font-size: 1.2rem;
  color: white;
  font-weight: normal;
  margin: 0;
  max-width: 50%;
  line-height: 2rem;
}
@media (max-width: 500px) {
  .hero .wrapper .description {
    max-width: 100%;
  }
}
.hero .wrapper .cta {
  display: inline-flex;
  background-color: #f37020;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-size: 1.1rem;
  align-self: flex-start;
  transition: transform 0.2s ease, background 0.2s ease;
  font-weight: bold;
  text-align: center;
}
.hero .wrapper .cta:hover {
  transform: translateY(-3px);
}
.hero .wrapper .phone-cta {
  color: white;
  font-size: 1.5rem;
}
.hero .wrapper .phone-cta a {
  font-weight: bold;
}

/*# sourceMappingURL=hero.css.map */
