.header {
  background-image: var(--heroHeader, url("/assets/img/hero.jpg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--white);
  padding: 20px 20px 100px;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  z-index: 0;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header > * {
  z-index: 1;
  position: relative;
}
.header .page__title a {
  display: inline-block;
}
.header .page__title img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-height: 850px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 256px;
  }
}
@media (min-height: 850px) {
  .is-homepage .header {
    min-height: 100vh;
  }
  .is-homepage .header::before {
    height: 40%;
  }
  .header .block__hero {
    position: absolute;
    bottom: 2rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.flex__container {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .flex__container {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}

footer {
  background-color: var(--primary);
  color: var(--white);
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer p {
  margin: 0;
}