.section-text {
  margin: 5rem 0;
  position: relative;
}
.section-text:first-child {
  padding-top: 50px;
}
.section-text .container {
  text-align: center;
  position: relative;
}
.section-text .container .subheading {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 20px;
}
.section-text .container *:is(h1, h2):last-child {
  margin-bottom: 0;
}
.section-text .container *:is(h1, h2) + .subheading {
  color: var(--primary);
}
.section-text .container .description {
  line-height: 1.7em;
  max-width: 800px;
  margin: 50px auto 0;
}
.section-text .container .buttons {
  margin: 25px 0 0;
  justify-content: center;
}

/*

Options - Large Text

*/
.section-text[options~=large-text] .container .description {
  font-size: 1.2em;
}

/*

Options - Small container

*/
.section-text[options~=small-container] .container {
  max-width: 600px;
}

/*

Options - 2 columns

*/
.section-text[options~=columns-2] .container .description {
  -moz-column-count: 2;
       column-count: 2;
}

@media (max-width: 800px) {
  .section-text[options~=columns-2] .container .description {
    -moz-column-count: 1;
         column-count: 1;
  }
}
/*

Scroll Animations

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