.prefooter {
  padding-top: 32px 0;
  padding-bottom: 32px;
}

.prefooter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--color-primary--5);
  color: var(--color-primary--1);
  padding: 2rem 1rem;
  border-radius: 16px;
}

.prefooter__title {
  font-size: var(--heading-size-l);
  margin: 0;
}

.prefooter__right p {
  margin: 0;
}


.prefooter__cta{
  max-width: fit-content;
  border-radius: 40px;
  color: white;
  font-size: var(--font-size);
  padding: 16px;
  cursor: pointer!important;
  max-height: fit-content;
  font-family: var(--font--lexend);
  background-color: var(--color-primary--2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-weight:300;
  margin-top: 1rem;
}
.prefooter__cta:hover, .prefooter__cta > a:hover{
  text-decoration: none!important;
  background-color: var(--color-primary--2)!important;
  text-decoration: none!important;
  opacity: 0.9;
  transform: translateY(-2px);
}


@media (min-width: 800px) {
  .prefooter {
    padding-top: 48px;
    padding-bottom: 96px;
  }
  .prefooter__cta{
    margin-top: unset;
  }
  .prefooter__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 7rem;
  }

  .prefooter__left {
    flex: 5;
  }

  .prefooter__right {
    flex: 7;
    display: flex;
    gap: 24px;
    flex-direction: column;
  }
}


