
* {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #eaeaea;
  border-radius: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: #eaeaea;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background-color: #eaeaea;
}


.legal {
  text-align: left;
  background-color: white;
  padding: 1rem 4rem 5rem;
  max-width: 100vw;
}

.legal__block {
  background-color: white;
  margin: 0.625rem 0;
  color: #282626;
  text-align: justify;
  font-size: 0.75rem;
  line-height: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .legal__block {
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}

h1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

h2 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

h3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

p {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25rem;
  word-break: break-word;
}

ul, ol {
  color: #282626;
}


.header {
  padding: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background-color: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  padding-top: 10px;
  height: 70px;
}

@media (min-width: 1024px) {
  .logo {
    height: 30px;
  }

  .header {
    padding: 1rem;
    margin-bottom: 0;
  }
}

a {
  color: #90908d;
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol > li {
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  padding-right: 0.6em;
}

li ol > li {
  margin: 0;
}

li ol > li:before {
  content: counters(item, ".") " ";
}
