/**
 * 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, 40px));
  padding-bottom: var(--block-section-spacing-bottom, var(--section-spacing-bottom, 40px));
}
.hero:not(.hero--no-section-bg)::after {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background: var(--hero-bg, var(--block-bg, #211442));
  z-index: 0;
  pointer-events: none;
}
.hero .hero__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-inline: auto;
  text-align: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--hero-tag-bg, var(--additional-c-elements, #ffc213));
  color: var(--hero-tag-color, var(--button-text-color, #000));
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.hero__title {
  font-family: var(--site-font-family, "Montserrat", sans-serif);
  font-size: var(--block-title-font-size, var(--content-h1-font-size, 38px));
  line-height: 1.15;
  max-width: 880px;
  margin: 0;
  width: 100%;
  text-align: start;
  color: var(--hero-title-color, var(--headings-color, var(--content-h1-color, var(--text-color, inherit))));
}

.hero__text {
  font-size: var(--block-body-font-size, var(--content-body-font-size, 16px));
  line-height: var(--content-line-height, 1.5);
  max-width: 880px;
  margin: 0;
  width: 100%;
  text-align: start;
  color: var(--hero-text-color, var(--text-color, inherit));
}
.hero__text p,
.hero__text a,
.hero__text strong,
.hero__text b {
  color: inherit;
}

@media screen and (max-width: 768px) {
  .hero__title {
    font-size: var(--block-title-font-size, var(--content-h1-font-size, 32px));
  }
  .hero__tag {
    font-size: 13px;
  }
}
/*# sourceMappingURL=hero.css.map */
