.header__intro {
  display: block;
  flex-basis: 100%;
  padding: 30px 0 60px 0;
  font-size: 17px;
  font-weight: 400;
}

.header__intro-content {
  display: flex;
  flex-direction: column;
  /* height: 20vh; */
}

.header__intro-title {
  font-family: 'Prata', serif;
  color: var(--light-color);
  font-size: 58px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

.header__intro-text {
  color: var(--text-warm-light);
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding: 35px 0 25px 0;
}

.header__intro-sub-text {
  color: var(--text-warm-light);
  font-size: 17px;
  line-height: 25.5px;
  text-align: center;
}

.header__background--dark {
  background: var(--background-dark);
}

@media(min-width: 768px) {
  .header__intro {
    padding: 30px 0 60px 0;
  }

  .header__intro-title {
      font-size: 70px;
  }

  .header__intro-text {
      font-size: 20px;
      padding: 30px 0 45px 0;
  }
}

@media(min-width: 992px) {
  .header__intro {
    padding: 30px 0 60px 0;
  }

  .header__intro-title {
      font-size: 82px;
  }

  .header__intro-text {
      font-size: 20px;
      padding: 40px 0 45px 0;
  }
}