body {
  font-family: var(--font-family--regular);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color--black);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0;
  font-family: var(--font-family--heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color--black);
}
h1, .h1 {
  font-size: 2.2rem;
  line-height: 1.15;
}
h2, .h2 {
  font-size: 1.95rem;
  line-height: 1.17;
}
h3, .h3 {
  font-size: 1.75rem;
  line-height: 1.21;
}
h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h5, .h5 {
  font-size: 1.2rem;
  line-height: 1.3;
}
h6, .h6 {
  font-size: 1.07rem;
  line-height: 1.35;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--color--black);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s ease-in-out;
}
a:hover {
  color: var(--color--black);
}

strong {
  font-weight: 500;
}

@media (min-width: 1024px) {
  body {
    font-size: 17px;
  }

  h1, .h1 {
    font-size: 3.1rem;
  }
  h2, .h2 {
    font-size: 2.3rem;
  }
}

@media (min-width: 1250px) {
  body {
    font-size: 18px;
  }

  h1, .h1 {
    font-size: 4rem;
  }
  h2, .h2 {
    font-size: 2.85rem;
  }
  h3, .h3 {
    font-size: 2.1rem;
  }
  h4, .h4 {
    font-size: 1.6rem;
  }
  h5, .h5 {
    font-size: 1.35rem;
  }
  h6, .h6 {
    font-size: 1.15rem;
  }
}