.section-cta {
  position: relative;
  margin: 7rem 0;
}
.section-cta .container {
  max-width: 800px;
  text-align: center;
}
.section-cta .container > img {
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 25px;
}
.section-cta .container *:is(h1, h2) {
  font-size: 3.5em;
}
.section-cta .container .text {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5em;
}
.section-cta .container .buttons {
  margin: 40px 0 0;
  justify-content: center;
}

@media (max-width: 650px) {
  .section-cta .container :is(h1, h2) {
    font-size: 2.5em;
  }
}
/*

Options - Background Color Primary

*/
.section-cta[options~=background-primary] {
  padding: 4rem 0;
  background-color: rgba(var(--primary-rgb), 0.2);
}

/*

Options - Background Color Gray

*/
.section-cta[options~=background-gray] {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

/*

Publication Styles

*/
main[pub_style=blue] .section-cta {
  padding: 4rem 0;
  background-color: rgba(var(--blue-rgb), 0.2);
}
main[pub_style=blue] .section-cta .subheading {
  color: var(--blue);
}
main[pub_style=blue] .section-cta h2 {
  color: var(--black);
}

main[pub_style=green] .section-cta {
  padding: 4rem 0;
  background-color: rgba(var(--green-rgb), 0.2);
}
main[pub_style=green] .section-cta .subheading {
  color: var(--green);
}
main[pub_style=green] .section-cta h2 {
  color: var(--black);
}

main[pub_style=red] .section-cta {
  padding: 4rem 0;
  background-color: rgba(var(--red-rgb), 0.2);
}
main[pub_style=red] .section-cta .subheading {
  color: var(--red);
}
main[pub_style=red] .section-cta h2 {
  color: var(--black);
}

/*

Scroll Animations

*/
.section-cta {
  margin-top: -50px;
  opacity: 0;
  transition: all 1s;
}
.section-cta.scrolled-to {
  margin-top: 0px;
  opacity: 1;
}