.animated-lines-wrapper {
  position: relative;
  z-index: 30;
  width: 100%;
  height: 100vh;
}

.thin-line,
.bold-line {
  position: absolute;
  z-index: 100;
  display: inline-block;
  overflow: hidden;
  transform: rotate(45deg);
}

.thin-line::before,
.bold-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  animation: scroll-line 3s cubic-bezier(0.87, 0, 0.13, 1) infinite;
  animation-delay: var(--delay, 0s);
  transform: translateY(100%);
  border-radius: inherit;
}

.thin-line {
  width: 4px;
  height: 365px;
  border-radius: 2px;
}

.bold-line {
  width: 24px;
  height: 100px;
  border-radius: 24px;
  opacity: 0.4;
}

.scale-small {
  transform: scale(0.5) rotate(45deg);
}

.grad-pink::before {
  background: linear-gradient(0deg, #FA5DB1, #FEBFBF);
}

.grad-purple::before {
  background: linear-gradient(0deg, #965CF2, #FF8ADC);
}

.grad-blue::before {
  background: linear-gradient(0deg, #1C8EF4, #00CFDD);
}

.grad-orange::before{
  background: linear-gradient(0deg,rgba(255, 138, 36, 1) 0%, rgba(255, 219, 110, 1) 50%, rgba(255, 149, 135, 1) 100%);
}

@keyframes scroll-line {
  0%   { transform: translateY(100%); }
  50%  { transform: translateY(0); }
  90%  { transform: translateY(-100%); }
  100% { transform: translateY(-100%); }
}
