main {
  width: 100%;
  margin: 0;
  background-color: white;
}

main section.termsOfService {
  max-width: 1200px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5rem;
  padding-top: 2rem;
  background-color: white;
}

main section.termsOfService h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

main section.termsOfService h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

main section.termsOfService section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: left;
}

main section.termsOfService section section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

main section.termsOfService .definitionDetails {
  margin: 0 0 0 2.5rem;
}

main section.termsOfService  ol {
  counter-reset: item;
}

main section.termsOfService  ol li {
  list-style-type: none;
}

main section.termsOfService ol li:before {
  content: "";
  counter-increment: item;
}

main section.termsOfService  ol li h3 {
  display: inline-block;
  position: relative;
  left: -1.5rem;
}

main section.termsOfService  ol li h3:after {
  /* content: " " counter(item) "."; */
}

main section.termsOfService  ol li ol li {
  position: relative;
}

main section.termsOfService  ol li ol li:before {
  content: counters(item, ".") ". ";
  position: absolute;
  left: -4rem;
}

main section.termsOfService  ol.orderedAlphaList {
  counter-reset: revert;
}

main section.termsOfService  ol.orderedAlphaList li {
  list-style-type: lower-latin;
  padding-left: 1rem;
}

main section.termsOfService  ol.orderedAlphaList li:before {
  content: "";
  counter-increment: unset;
}
