/* CTA-section */
.cta-section {
  margin-top: 150px;
  max-width: 100%;

  /* Flex layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Layout for the CTA Section */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;
  position: relative;

  max-width: 100%;
}

/* The background doodle */
.cta-background {
  position: absolute;
  inset: 0; /*top, bottom, left, right*/
  height: 100%;
  width: 100%;

  object-fit: cover;
  object-position: center;
}

/* CTA Content Part */
.cta-content {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* CTA Text Part */
.cta-text {
  position: relative;
  background-color: #b377ea;
  color: #fff;

  /*flex layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin-top: 100px;
  padding: 50px 60px;
  width: 100%;
}

.cta-title {
  text-align: center;
}

.cta-description {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.3;
}

.academic-term {
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
}

/* For the responsive design */
@media (max-width: 1000px) {
}

/* The button */
.cta-button {
  position: relative;
  align-self: center;
  margin-top: 50px;
  margin-bottom: 40px;

  font-weight: 700;
}
@media (max-width: 991px) {
  .cta-button {
    margin-top: 50px;
    /* padding: 0 20px; */
  }
}
