h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1;
  font-family: var(--heading);
}

h1 {
  font-family: var(--heading);
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 55px;
  color: var(--muted);
  padding-bottom: 15px;
}

h3 {
  font-family: var(--heading);
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 54px;
  color: var(--muted);
  padding-bottom: 5px;
  padding-top: 40px;
}

h6 {
  font-family: var(--heading);
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: var(--muted);
  padding-bottom: 20px;
}

@media screen and (max-width: 580px) {
  h1 {
    font-size: 30px;
    line-height: 30px;
  }

  h3 {
    font-size: 24px;
    line-height: 26px;
  }

  h6 {
    font-size: 16px;
    line-height: 20px;
  }
}

article ul {
  padding: 0;
  margin: 0;
  padding-left: 30px;
  list-style: none;
}

article ul,
article ul li,
p {
  font-family: var(--body);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark);
}

p,
ul {
  padding-bottom: 30px;
}

article ul li {
  padding-bottom: 15px;
  position: relative;
}

article ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  position: absolute;
  top: 7px;
  left: -20px;
  border-radius: 2px;
}
