.checklist {
  padding: 2rem 4rem;
  color: #002366;
  margin-top: 0;
}
@media (max-width: 992px) {
  .checklist {
    padding: 2rem;
  }
}
.checklist .intro {
  text-align: center;
  margin-bottom: 2rem;
}
.checklist .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.checklist .items .item {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 2rem;
}
.checklist .items .item .check svg {
  width: 1.75rem;
  height: 1.75rem;
}
.checklist .items .item .number {
  font-size: 1.25rem;
  font-weight: bold;
  color: #002366;
}
.checklist .items .item .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.checklist .items .item .text h3 {
  text-transform: uppercase;
  margin: 0;
}
.checklist .items .item .text .description > * {
  margin-top: 0;
  margin-bottom: 0;
}
.checklist .items .item .text .description > * + * {
  margin-top: 1rem;
  margin-bottom: 0;
}
.checklist.checkmarks .item {
  grid-template-columns: min-content 1fr;
}
.checklist.numbers .item {
  grid-template-columns: 25px auto;
  gap: 1rem;
}
.checklist.no-caps .items .item .text h3 {
  text-transform: none;
}/*# sourceMappingURL=style.css.map */