/* ============================================================
   HEADING BLOCK
   ============================================================ */

.heading-block {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.content-home h1.heading-block {
  font-size: var(--text-5xl);
}
.content-home h2.heading-block {
  font-size: var(--text-4xl);
}
.content-home h3.heading-block {
  font-size: var(--text-3xl);
}
.content-home h4.heading-block {
  font-size: var(--text-2xl);
}

@media screen and (max-width: 768px) {
  .content-home h1.heading-block {
    font-size: var(--text-3xl);
  }
  .content-home h2.heading-block {
    font-size: var(--text-2xl);
  }
  .content-home h3.heading-block {
    font-size: var(--text-xl);
  }
  .content-home h4.heading-block {
    font-size: var(--text-lg);
  }
}
