:root {
  --font-size-1: 30px;
  --font-size-2: 24px;
  --font-size-2-2: 24px;
  --font-size-3: 18px;
}

:root h1,
:root h2,
:root .block-title,
:root h3 {
  font-weight: 700;
  color: #000;
  text-align: center;
}

:root h1{
  font-size: var(--font-size-1);
  margin: 0 0 40px;
}
:root h2, :root .block-title {
  font-size: var(--font-size-2);
  margin: 0;
}

.front-hero h2{
    font-size: var(--font-size-1);
}
.front-hero__slogan h1{
    font-size: var(--font-size-2-2);
}

:root h3 {
  font-size: var(--font-size-3);
  margin: 0;
}

@media (min-width: 768px) {
  :root {
    --font-size-1: 56px;
    --font-size-2: 32px;
    --font-size-2-2: 38px;
    --font-size-3: 20px;
  }
}

@media (min-width: 1200px) {
  :root {
    --font-size-1: 75px;
  }

  :root h1,
  :root h2,
  :root .block-title,
  :root h3 {
    text-align: left;
  }
}