.section-cta {
  position: relative;
  margin: 5rem 0;
}
.section-cta .container {
  max-width: 800px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta .container img.icon-overlay {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 250px;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}
.section-cta .container .buttons {
  margin: 40px 0 0;
  justify-content: center;
}

/*

Options - Background Color Primary

*/
.section-cta[options~=background-primary] .container {
  padding: 5rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 40px;
  max-width: 1000px;
}
.section-cta[options~=background-primary] .container h2, .section-cta[options~=background-primary] .container .text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .section-cta[options~=background-primary] .container {
    padding: 5rem 0.5rem;
  }
}
/*

Options - Background Color Secondary

*/
.section-cta[options~=background-secondary] .container {
  padding: 5rem 2rem;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 40px;
  max-width: 1000px;
}
.section-cta[options~=background-secondary] .container h2, .section-cta[options~=background-secondary] .container .text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .section-cta[options~=background-secondary] .container {
    padding: 5rem 0.5rem;
  }
}
/*

Options - Background Color Gray

*/
.section-cta[options~=background-gray] .container {
  padding: 5rem 2rem;
  background-color: var(--gray);
  border-radius: 40px;
  max-width: 1000px;
}
.section-cta[options~=background-gray] .container img.icon-overlay {
  opacity: 1;
}
.section-cta[options~=background-gray] .container h2, .section-cta[options~=background-gray] .container .text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .section-cta[options~=background-gray] .container {
    padding: 5rem 0.5rem;
  }
}
/*

Scroll Animations

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