* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin-bottom: 24px;
}

ul {
  margin-bottom: 16px;
}

li {
  margin-left: 24px;
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 32px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  margin-top: 16px;
}

a {
  color: rgb(41, 171, 226);
}

.help_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.help_header img {
  width: 32px;
  height: 32px;
}

.help_header img:hover {
  cursor: pointer;
  content: url(../../assets/svg/arrow_hover.svg);
  width: 32px;
  height: 32px;
}

ol {
  margin-left: 5px;
}

ol li::marker {
  font-size: 1.5rem;
  font-weight: 700;
}

ol h3 {
  font-size: 1.5rem;
  padding-left: 32px;
}

ol p {
  padding-left: 32px;
}

span {
  color: rgb(41, 171, 226);
}

@media only screen and (max-width: 749px) {
  .scroll_layout {
    padding: 24px 24px 0;
    max-height: calc(100vh - 100px - 80px);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  ol h3,
  ol li::marker {
    font-size: 1.25rem;
  }

  .navContainer {
    display: none !important;
  }

  .navResponsivContainer {
    display: flex !important;
    height: 80px;
  }

  .ResponsivBorder {
    padding: 0 16px;
  }

  .responsive_links_container {
    display: flex;
    gap: 16px;
    height: 100%;
  }

  .singleResponsivContainer {
    width: auto;
    text-wrap-mode: nowrap;
  }
}