.hero {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.hero:not(.without-shadow)::after {
  position: absolute;
  content: "";
  left: 50%;
  right: 0;
  width: 1460px;
  max-width: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom right, #5CCC81, #5CCC81, #7D81F1, #585DF1, #3339F1, #585DF1, #7D81F1, #5CCC81, #5CCC81);
  background-size: 200% 200%;
  animation: animateGlow 9s linear infinite;
  opacity: 0.3;
  filter: blur(97px);
}
.hero .text-container {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: auto;
}
.hero .sub-title {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5) !important;
}
.hero .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero.black {
  background-color: #000000;
}
.hero.black * {
  color: #ffffff;
}
.hero.black .sub-title {
  color: rgba(255, 255, 255, 0.5) !important;
}
.hero.grey {
  background-color: #F5F5F6;
}
.hero.left-align .text-container {
  text-align: left;
}
