/* [project]/src/styles/service/ServiceHero.css [client] (css) */
.service-hero {
  text-align: center;
  background-color: #0000;
  background-image: linear-gradient(#0000, #0000), url("../media/service-banner.617b7b54.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  justify-content: center;
  align-items: center;
  height: 65vh;
  min-height: 580px;
  display: flex;
  position: relative;
}

.hero-content {
  z-index: 5;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-60px);
}

.hero-subtitle {
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.service-hero h1 {
  text-shadow: 0 2px 10px #00000080;
  max-width: 1200px;
  margin: 0 auto 35px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.service-hero.mep-hero h1 {
  margin: 30px;
}

.service-hero .service-description {
  color: #fff;
  max-width: 1300px;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.service-hero .hero-btn {
  color: #54b248;
  cursor: pointer;
  text-transform: none;
  font-weight: 700;
  font-family: var(--font-body);
  background-color: #eaf6e5;
  border: 1.5px solid #54b248;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.service-hero .hero-btn:hover {
  color: #fff;
  background-color: #54b248;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px #54b2484d;
}

.service-hero .hero-btn svg {
  transition: transform .3s;
}

.service-hero .hero-btn:hover svg {
  transform: translate(3px, -3px);
}

@media (max-width: 768px) {
  .service-hero {
    height: auto;
    min-height: 450px;
    padding: 60px 0;
  }

  .hero-content {
    transform: translateY(-40px);
  }

  .service-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 28px;
  }

  .service-hero p {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .service-hero .hero-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/*# sourceMappingURL=src_styles_service_ServiceHero_css_65f1660e._.single.css.map*/