.hero {
  max-width: 100%;
  min-height: 600px;
  height: 100%;
  width: 100%;
  margin: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero {
    min-height: unset;
  }
}
.hero .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "intro .";
  gap: 2rem;
  padding: 2rem;
  max-width: 100%;
  text-align: left;
  z-index: 2;
}
@media (max-width: 992px) {
  .hero .wrapper {
    padding: 2rem 0;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
    grid-template-areas: "." "intro";
  }
}
.hero .wrapper .title {
  display: none;
  grid-area: title;
}
.hero .wrapper .title h1 {
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  color: #FBFBF7;
}
.hero .wrapper .intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: left;
  color: #00384D;
  margin: 0 2vw;
}
@media (max-width: 992px) {
  .hero .wrapper .intro {
    color: #FBFBF7;
  }
}
.hero .wrapper .intro h1 {
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
@media (max-width: 992px) {
  .hero .wrapper .intro h1 {
    color: #FBFBF7;
  }
}
.hero .wrapper .intro h2 {
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
@media (max-width: 992px) {
  .hero .wrapper .intro h2 {
    color: #FBFBF7;
  }
}
.hero .wrapper .intro p {
  margin: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #fbfbf7, #fbfbf7, rgba(251, 251, 247, 0.8), transparent, transparent);
  z-index: 1;
}
@media (max-width: 992px) {
  .hero::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  }
}
.hero.show_title .wrapper {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title" "intro";
}
@media (max-width: 992px) {
  .hero.show_title .wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "." "title" "intro";
  }
}
.hero.show_title .wrapper .title {
  display: flex;
}
.hero.show_title.no_intro .wrapper {
  grid-template-columns: 1fr;
  grid-template-rows: 100px 1fr;
  grid-template-areas: "." "intro";
}
.hero.bottom .wrapper {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(1, 1fr);
  grid-template-areas: "." "intro";
}
@media (max-width: 992px) {
  .hero.bottom .wrapper {
    grid-template-rows: 100px 1fr;
  }
}
.hero.bottom .wrapper .intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero.bottom .wrapper .intro > * {
  color: #FBFBF7;
}
.hero.bottom::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}/*# sourceMappingURL=style.css.map */