/**
 * Hero section styles.
 * SCSS: assets/css/section/hero.scss
 * CSS (compiled by IDE): assets/css/section/hero.css
 */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: var(--block-section-spacing-top, var(--section-spacing-top, 24px));
  padding-bottom: var(--block-section-spacing-bottom, var(--section-spacing-bottom, 24px));
  border-radius: 10px;
  background-image: none;
}
.hero:not(.hero--no-section-bg) {
  background-color: var(--block-bg, transparent);
}
.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: cover;
}

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

.hero__title {
  position: relative;
  max-width: 600px;
  margin: 0;
  font-size: var(--block-title-font-size, 62px);
  text-transform: capitalize;
}

.hero__text {
  position: relative;
  max-width: 320px;
  font-size: var(--block-body-font-size, 32px);
  line-height: 1.2;
}
.hero__text p {
  font-size: inherit;
  line-height: inherit;
}

.hero__button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  background: var(--hero-button-color, var(--button-bg));
  color: var(--button-text-color);
  border: 0;
  padding: 12px 24px;
  cursor: pointer;
  font-size: var(--block-button-font-size, var(--button-font-size, 16px));
}

@media screen and (max-width: 992px) {
  .hero__title {
    font-size: var(--block-title-font-size, 40px);
  }
  .hero__text {
    font-size: var(--block-body-font-size, 24px);
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    padding: 20px;
    gap: 10px;
  }
  .hero__title {
    margin: 0;
    font-size: var(--block-title-font-size, 28px);
  }
  .hero__text {
    font-size: var(--block-body-font-size, 16px);
  }
  .hero__text p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 568px) {
  .hero__content {
    padding: 20px;
  }
}

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