.prefooter {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
  position: relative;
}

.prefooter::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  width: 300px;
  height: 100%;
  background: url("../../../../static/img/dots-bottom-left.svg")
    no-repeat -100px calc(100% + 130px);
  transform: rotateY(180deg);
}

@media (max-width: 960px) {
  .prefooter::before {
    display: none;
  }
}

.prefooter .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.prefooter-text {
  flex: 1 1 600px;
  background: var(--navy);
  padding: 1rem;
}

@media (max-width: 960px) {
  .prefooter-text {
    text-align: center;
  }
}

.prefooter-text > * :first-child {
  margin-top: 0;
}

.prefooter-text > * :last-child {
  margin-bottom: 0;
}

.prefooter-cta {
  flex: 1 1 200px;
  display: flex;
}

@media (max-width: 960px) {
  .prefooter-cta {
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .prefooter-cta {
    justify-content: flex-end;
  }
}
