.wave {
  position: relative;
  top: -4px;

  align-items: center;
  min-height: 20vh;
  background-color: #1e3a8a;
  overflow: visible;
  z-index: 10;

  &:before,
  &:after {
    content: "";
    position: absolute;
    left: 50%;
    width: 500vw;
    height: 500vw;
    background-color: white;
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  &:before {
    top: 10vh;
    border-radius: 46%;
    animation-duration: 60s;
  }

  &:after {
    top: 8vh;
    opacity: 0.5;
    border-radius: 48%;
    animation-duration: 50s;
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, 0) rotateZ(0deg);
  }
  50% {
    transform: translate(-50%, -2%) rotateZ(180deg);
  }
  100% {
    transform: translate(-50%, 0%) rotateZ(360deg);
  }
}

.top-bg {
  padding-bottom: 100px;
  background-color: #1e3a8a;
}
.bg-color {
  background-color: #1e3a8a;
}

.list-item {
  position: relative;
  padding: 0.5em 1em;
  min-height: 60px;
  width: 500px;
  border-right: 27px solid #1e3a8a;
  background-color: #f5f5f5;
  color: #333333;
}

.list-item::before {
  position: absolute;
  bottom: 2px;
  right: -20px;
  z-index: -1;
  transform: rotate(5deg);
  width: 100%;
  height: 50%;
  background-color: #d0d0d0;
  content: "";
  filter: blur(4px);
}
