/* --------------------------------- *\

	Intro

\* --------------------------------- */
.intro {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--color-main);
}
.intro--inner {
  padding-top: var(--header-height);
  height: auto;
  justify-content: flex-start;
}
.intro:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--color-main);
  opacity: 0.85;
}
.intro__content {
  position: relative;
  z-index: 3;
  width: var(--wrap);
}
.intro > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.intro:not(.intro--inner) {
  min-height: 43rem;
}

/* --------------------------------- *\

	Mobile

\* --------------------------------- */
@media (max-width: 767px) and (orientation: portrait), (max-width: 567px) {
  .intro__content {
    width: var(--wrap-mobile);
  }
}

/*# sourceMappingURL=--8-5-intro.css.map */
