.banner-container {
  position: relative;
  --color: #fff;
  --heading-margin: 10px;
}
.banner-container .banner-content {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-container .banner-content > a.banner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color);
  text-decoration: none;
}
.banner-container .banner-content > a.banner-link:hover {
  color: var(--color);
}
.banner-container .banner-content > a.banner-link h1 {
  border-bottom: 2px solid var(--color);
  font-size: var(--site-title-font-size, 60px);
  margin-bottom: var(--heading-margin);
  padding: 0 1em;
  line-height: 1.25em;
}
@media screen and (max-width: 780px) {
  .banner-container .banner-content > a.banner-link h1 {
    font-size: 7vw;
    padding: 0 0.5em;
  }
}
.banner-container .banner-content > a.banner-link h2 {
  font-size: var(--tagline-font-size, 40px);
  margin-top: 10px;
}
@media screen and (max-width: 780px) {
  .banner-container .banner-content > a.banner-link h2 {
    font-size: 4.65vw;
    margin-top: 1vw;
  }
}
.banner-container .banner {
  position: relative;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) and (orientation: portrait) {
  .banner-container .banner {
    background-size: cover;
  }
}
@media (max-width: 512px) {
  .banner-container .banner {
    filter: brightness(60%);
  }
}
.banner-container .banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  filter: brightness(0.8);
}

/*# sourceMappingURL=home-banner.css.map */
