/**
 * Hero section styles.
 * SCSS: assets/css/section/hero.scss
 * CSS (compiled by IDE): assets/css/section/hero.css
 */
.hero {
  position: relative;
  padding: 40px 0;
  background-image: var(--hero-bg-image);
  border-radius: 10px;
}

.hero {
  background-image: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: var(--hero-bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 80px;
}

.hero__title {
  position: relative;
  max-width: 400px;
  font-size: 62px;
  text-transform: capitalize;
}

.hero__text {
  position: relative;
  max-width: 320px;
}
.hero__text p {
  font-size: 32px;
  line-height: 1.2;
}

@media screen and (max-width: 992px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__text p {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    padding: 20px;
    gap: 10px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__text p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 568px) {
  .hero__content {
    padding: 20px;
  }
}/*# sourceMappingURL=hero.css.map */