.section-text {
  margin: 7rem 0;
  position: relative;
}
.section-text img.icon-background {
  display: none;
}
.section-text .container {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  grid-gap: 25px;
}
.section-text .container .col {
  width: 100%;
}
.section-text .container .subheading {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
}
.section-text .container *:is(h1, h2) {
  max-width: 700px;
  margin: 0 auto 25px;
}
.section-text .container *:is(h1, h2):last-child {
  margin-bottom: 0;
}
.section-text .container .description {
  line-height: 1.7em;
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.2em;
}
.section-text .container .description p, .section-text .container .description ul {
  margin-bottom: 1.5em;
}
.section-text .container .description h1, .section-text .container .description h2, .section-text .container .description h3, .section-text .container .description h4, .section-text .container .description h5, .section-text .container .description h6 {
  line-height: 1.2em;
}
.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 - Background Icon

*/
.section-text[options~=background-icon] img.icon-background {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0.2;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

/*

Options - 2 columns

*/
.section-text[options~=columns-2] .container {
  grid-gap: 50px;
}
.section-text[options~=columns-2] .container .col {
  width: calc(50% - 25px);
}
.section-text[options~=columns-2] .container .subheading {
  margin-left: 0;
  text-align: left;
  max-width: unset;
}
.section-text[options~=columns-2] .container :is(h1, h2) {
  text-align: left;
  max-width: unset;
}
.section-text[options~=columns-2] .container .description {
  text-align: left;
  max-width: unset;
}

@media (max-width: 800px) {
  .section-text[options~=columns-2] .container {
    grid-gap: 25px;
  }
  .section-text[options~=columns-2] .container .col {
    width: 100%;
  }
}
/*

Options - Table Company Comparison

*/
.section-text[options~=table-company-comparison] .container .description {
  max-width: 1100px;
}
.section-text[options~=table-company-comparison] table {
  margin: 0 auto;
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 0;
}
.section-text[options~=table-company-comparison] table tr td {
  padding: 20px 50px;
  text-align: left;
  background-color: var(--gray-light);
  font-weight: 400;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.section-text[options~=table-company-comparison] table tr td:nth-child(2) {
  padding: 20px 60px;
}
.section-text[options~=table-company-comparison] table tr td:nth-child(3) {
  padding: 20px 60px;
}
.section-text[options~=table-company-comparison] table tr td:nth-child(even) {
  background-color: var(--primary);
  color: var(--white);
}
.section-text[options~=table-company-comparison] table tr td:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  right: 5px;
  border-radius: 10px;
  z-index: -1;
}
.section-text[options~=table-company-comparison] table tr td:has(img.logo) {
  padding: 20px 30px;
}
.section-text[options~=table-company-comparison] table tr td:has(img.logo) img.logo {
  width: 200px;
}
.section-text[options~=table-company-comparison] table tr td img.company-icon {
  width: 20px;
  margin: 0 10px -4px;
}
.section-text[options~=table-company-comparison] table tr td img.check-icon {
  width: 20px;
  margin: 0 10px -4px;
}
.section-text[options~=table-company-comparison] table tr:first-child td {
  border-radius: 20px 20px 0 0;
  font-size: 2em;
}
.section-text[options~=table-company-comparison] table tr:last-child td {
  border-radius: 0 0 20px 20px;
}
.section-text[options~=table-company-comparison] table tr:nth-child(even) td:nth-child(odd):before {
  background-color: var(--white);
}
.section-text[options~=table-company-comparison] table tr:nth-child(even) td:nth-child(even):before {
  background-color: rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .section-text[options~=table-company-comparison] table tr td {
    padding: 20px;
  }
  .section-text[options~=table-company-comparison] table tr td:nth-child(even) {
    padding: 20px;
  }
  .section-text[options~=table-company-comparison] table tr td:nth-child(3) {
    padding: 20px;
  }
}
@media (max-width: 750px) {
  .section-text[options~=table-company-comparison] table tr td {
    padding: 20px 10px;
    font-size: 0.9em;
  }
  .section-text[options~=table-company-comparison] table tr td:nth-child(even) {
    padding: 20px 10px;
  }
  .section-text[options~=table-company-comparison] table tr td:nth-child(3) {
    padding: 20px 10px;
  }
  .section-text[options~=table-company-comparison] table tr td:has(img.logo) {
    padding: 20px 10px;
  }
  .section-text[options~=table-company-comparison] table tr td:has(img.logo) img.logo {
    width: 125px;
  }
  .section-text[options~=table-company-comparison] table tr td img.company-icon {
    display: none;
  }
  .section-text[options~=table-company-comparison] table tr td img.check-icon {
    display: none;
  }
  .section-text[options~=table-company-comparison] table tr:first-child td {
    font-size: 1.5em;
  }
}
/*

Options - Background: Gray

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

/*

Options - Text Align - Left

*/
.section-text[options~=text-align-left] .container .description {
  text-align: left;
}
.section-text[options~=text-align-left] .container .description h2 {
  font-size: 3em;
  max-width: unset;
}
.section-text[options~=text-align-left] .container .description h3 {
  font-size: 2.5em;
}
.section-text[options~=text-align-left] .container .description h4 {
  font-size: 2em;
}
.section-text[options~=text-align-left] .container .description h5 {
  font-size: 1.75em;
}
.section-text[options~=text-align-left] .container .description h6 {
  font-size: 1.5em;
}

/*

Scroll Animations

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