.cta {
  position: relative;
  width: 100%;
  padding: 3rem 1rem;
}

.cta .cta__title {
  margin: 0px;
  font-weight: 600;
  font-size: 38px;
  line-height: 48px;
}

.cta .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta .content>* {
  max-width: 984px;
}

.cta p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.cta__inner {
  margin-top: 1rem;
  max-width: 100% !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cta__button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-family: 'Proeduca';
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  border-radius: 0.125rem;
}

.cta__button:hover {
  background-color: #fff;
  color: #2501C3;
}

.cta.navy h1,
.cta.navy h2,
.cta.navy h3,
.cta.navy h4,
.cta.navy h5 {
  color: #fff;
}

.cta.navy p,
.cta.navy ul li {
  color: #f4f6fd;
}

.cta.grey h1,
.cta.grey h2,
.cta.grey h3,
.cta.grey h4,
.cta.grey h5,
.cta.white h1,
.cta.white h2,
.cta.white h3,
.cta.white h4,
.cta.white h5 {
  color: #010741;
}

.cta.grey p,
.cta.grey ul li,
.cta.white p,
.cta.white ul li {
  color: #3a455c;
}

@media (max-width: 767px) {
  .cta .cta__title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media (min-width: 639px) {
  .cta__inner {
    display: flex;
    flex-direction: row;
  }

  .cta__button {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .cta {
    padding: 5rem 2rem;
  }
}

/*# sourceMappingURL=style.css.map */