.header {
  background: rgb(164,171,255);
  background: linear-gradient(90deg, rgba(237,237,238,1) 0%, rgba(164,171,255,1) 100%);
  padding: calc(16px * 1.5)
}

.header--bg-image {
  background-image: url('../../images/logo.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12rem;
}

.header--title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 2;
}

.header--content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header--logo {
  font-size: calc(16px * 3);
  text-align: center;
}

.header--links {
  flex-grow: 1;
}

.header--subtitle {
  font-size: calc(16px * 1.25);
  text-align: center;
}

@media(min-width: 576px) {
  .header--logo {
    font-size: calc(16px * 4);
    margin-left: -2rem;
  }

  .header--bg-image {
    height: 20rem;
  }

  .header--title {
    display: block;
  }

  .header--subtitle {
    font-size: calc(16px * 2);
    margin-left: 2rem;
  }
}

.about {
  text-align: right;
}

.faq {
  text-align: center;
}

.contact {
  text-align: left;
}

.unstyled-link {
  text-decoration: none;
  color: unset;
}