.rubrics {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 12rem;
  max-width: 192rem;
  margin: 0 auto;
}
@media (min-width: 991px) {
  .rubrics {
    padding-top: 16rem;
    padding-bottom: 32rem;
  }
}
.rubrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -63%);
  width: 30rem;
  height: 30rem;
  background: linear-gradient(0deg, rgba(155, 108, 230, 0.84) 0%, rgba(147, 190, 255, 0.6) 15%, rgba(191, 217, 255, 0.28) 23%, rgba(147, 239, 255, 0) 34%);
  border-radius: 50%;
  z-index: -1;
}
@media (min-width: 991px) {
  .rubrics::before {
    width: 85rem;
    height: 85rem;
  }
}
.rubrics::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 63%);
  width: 30rem;
  height: 30rem;
  background: linear-gradient(180deg, rgba(155, 108, 230, 0.84) 0%, rgba(147, 190, 255, 0.6) 15%, rgba(191, 217, 255, 0.28) 23%, rgba(147, 239, 255, 0) 34%);
  border-radius: 50%;
  z-index: -1;
}
@media (min-width: 991px) {
  .rubrics::after {
    width: 85rem;
    height: 85rem;
  }
}

.rubrics__title {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .rubrics__title {
    font-size: 5.6rem;
    margin-bottom: 8rem;
  }
}

.running_line {
  --duration: 15s;
  --gap: 10rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.running_line__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: running-line var(--duration) linear infinite;
  will-change: transform;
  padding: 2rem 0;
}

.running_line__list {
  display: flex;
  gap: var(--gap);
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
}

.running_line__item {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #9b6ce6 0%, #93efff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 991px) {
  .running_line__item {
    font-size: 2.4rem;
  }
}

@keyframes running-line {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .running_line__track {
    animation: none;
    transform: none;
  }
}