.background-section {
  position: relative;
  width: 100%;
}
.background-section-wrapper {
  width: 100vw;
  position: absolute;
  top: -10px;
  left: 0;
  height: 100%;
  z-index: -1;
}
.background-section .background-element {
  width: 100%;
  height: 2000px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .background-section .background-element {
    margin-top: -4px;
  }
}
.background-section .background-element.flipped {
  transform: scaleY(-1);
}
.background-section .background-element.flipped::before {
  transform: scaleY(-1);
}
.background-section .background-element.last-element {
  height: 2000px;
}
@media (max-width: 768px) {
  .background-section .background-element.last-element {
    height: 0;
  }
}
.background-section .background-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 244px;
  background: linear-gradient(
    0deg,
    rgba(170, 152, 208, 0) 0,
    rgba(170, 152, 208, 0.8) 25.37%,
    #aa98d0 45.98%,
    rgba(170, 152, 208, 0.8) 62.05%,
    rgba(170, 152, 208, 0) 100%
  );
  z-index: 1;
}
body {
  overflow-x: hidden;
}
