.outerContent {
  padding: 4rem;
}

h3 {
  margin-bottom: 0.25rem;
}

p {
  margin: 0;
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
   text-align: justify;
}

span {
  color: var(--customBlue);
}

.goBackBtn {
  position: fixed;
  top: 9rem;
  right: 4rem;
}

ul li {
  margin-bottom: 0.25rem;
}

ol {
  list-style: none;
  counter-reset: bold-counter;
}

ol li {
  counter-increment: bold-counter;
  gap: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

ol li::before {
  content: counter(bold-counter) ". ";
  font-weight: bold;
  font-size: 2rem;
  margin-right: 1rem;
  margin-top: 1rem;
}

.noHelpIcon {
  .helpIcon {
    display: none;
  }
  .help-mobile {
    display: none;
  }
}

.noInfoBox {
  .infoBox {
    display: none;
  }
}

.no-menu {
  #menuSidebar {
    display: none;
  }
}

@media (max-width:1400px) {
  .outerContent {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  p {
    line-height: 1.6;
    font-weight: 400;
  }

  .goBackBtn {
    right: 2rem;
  }
}

@media (max-width:800px) {
  .outerContent {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}