h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  font-family: var(--heading);
  font-weight: var(--bold);
  text-align: left;
  line-height: 1.3;
  color: var(--secondary);
}

h1 {
  margin: 0 0 1.5rem 0;
  font-size: 2.5rem;
  font-weight: var(--bold);
  text-transform: none;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 15px;
  position: relative;
  font-weight: var(--bold);
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

:where(h1, h2, h3, h4, h5, h6) > .icon {
  margin-right: 1em;
  color: var(--light-gray);
}

/*# sourceMappingURL=heading.css.map */