.header {
  /* margin-top: 83.2px; */
  /* padding: 2rem 0 4rem 0; */

  background:
    linear-gradient(
      rgb(9, 29, 49, 0.9),
      rgb(9, 29, 49, 0.75),
      rgb(9, 29, 49, 0.75)
    ),
    url('./assets/img/background-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
}

.header-left-col {
  padding: 2rem 1rem;
  margin: 0 auto;
}

.header-logo {
  margin-bottom: 2rem;
}

.header-logo-img {
  margin: 0 auto;
  max-width: 16rem;
}

.header-title {
  font-size: clamp(1.75rem, 1.6rem + 1.35vw, 3.2rem);
  font-family: var(--font-heading-2);
  letter-spacing: -1px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;

  max-width: 20ch;

  margin-bottom: 1.75rem;
}

.header-right-col img {
  border-top-left-radius: 4rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 4rem;
  border-bottom-left-radius: 0.25rem;
}

@media (max-width: 824px) {
  .header {
    grid-template-columns: 1fr;
  }

  .header-logo {
    margin-bottom: 1rem;
  }

  .header-logo-img {
    width: 75%;
    max-width: 12rem;
  }

  .header-title {
    margin-bottom: 1rem;
  }

  .header-img {
    grid-row: 1/2;
    margin: 0 auto;
  }

  .header-img img {
    max-width: 32rem;
  }
}
