/* [project]/src/components/HeroSection/HeroSection.module.css [app-client] (css) */
.HeroSection-module__yS5m3G__hero {
  border-radius: var(--mantine-radius-lg);
  position: relative;
  overflow: hidden;
}

.HeroSection-module__yS5m3G__hero:before {
  content: "";
  background: linear-gradient(135deg, var(--mantine-color-primary-6) 0%, var(--mantine-color-primary-4) 30%, var(--mantine-color-secondary-5) 70%, var(--mantine-color-secondary-3) 100%);
  opacity: .12;
  z-index: 0;
  background-size: 300% 300%;
  animation: 8s infinite HeroSection-module__yS5m3G__gradientShift;
  position: absolute;
  inset: 0;
}

@keyframes HeroSection-module__yS5m3G__gradientShift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.HeroSection-module__yS5m3G__content {
  z-index: 1;
  position: relative;
}

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