/* [project]/src/styles/HeroSection.css [client] (css) */
.hero {
  background-color: #222;
  background-image: linear-gradient(#0006, #0006), url("/img/hero/banner.png");
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 65vh;
  min-height: 580px;
  display: flex;
  position: relative;
}

.hero-slider-btn {
  width: 44px;
  height: 44px;
  color: var(--color-white);
  cursor: pointer;
  z-index: 10;
  background: none;
  border: 1.5px solid #fffc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
}

.hero-slider-btn:hover {
  border-color: var(--color-white);
  background: #ffffff1a;
}

.hero-slider-btn.left {
  left: 40px;
}

.hero-slider-btn.right {
  right: 40px;
}

.hero-content {
  text-align: center;
  z-index: 5;
  padding: 0 20px;
  transform: translateY(-80px);
}

.hero-subtitle {
  letter-spacing: 2.5px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.hero h1 {
  font-size: var(--font-size-h1);
  text-shadow: 0 4px 15px #0009;
  margin: 0 0 35px;
  font-weight: 600;
  line-height: 1.15;
}

.hero-description {
  color: #ffffffe6;
  max-width: 1400px;
  margin: -15px auto 35px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-btn {
  color: #54b248;
  font-weight: 500;
  font-size: var(--font-size-body);
  cursor: pointer;
  font-family: var(--font-body);
  background-color: #eaf6e5;
  border: 1.5px solid #54b248;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 15px #54b24826;
}

.hero-btn:hover {
  color: #fff;
  background-color: #54b248;
}

.cursor-blink {
  color: inherit;
  margin-left: 2px;
  font-weight: 400;
  animation: 1s step-end infinite blink;
  display: inline-block;
}

@keyframes blink {
  from, to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

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

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

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

  .hero-slider-btn {
    display: none;
  }
}

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

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