.hero {
  max-width: 100%;
  height: 100%;
  width: 100%;
  margin: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.hero .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "intro image";
  gap: 2rem;
  padding: 2rem;
}
@media (max-width: 992px) {
  .hero .wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "intro";
  }
}
.hero .wrapper .title {
  display: none;
  grid-area: title;
  align-items: center;
  justify-content: start;
}
.hero .wrapper .title h1 {
  font-size: 3rem;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 0;
}
.hero .wrapper .title h1:after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: -100vw;
  width: 200vw;
  background-color: #002366;
}
.hero .wrapper .intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #002366;
}
.hero .wrapper .intro h1 {
  font-size: 2.75rem;
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
.hero .wrapper .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
.hero .wrapper .intro p {
  margin: 0;
}
.hero .wrapper .image {
  grid-area: image;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .wrapper .image .img-wrap img {
  width: calc(100% - 10px);
  height: auto;
}
@media (max-width: 992px) {
  .hero .wrapper .image .img-wrap img {
    transform: translateY(-10px);
  }
}
.hero .wrapper .image .img-wrap::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(10px) translateY(10px);
  background-color: #002366;
}
.hero.no_image .wrapper {
  grid-template-columns: 1fr;
  grid-template-areas: "intro";
}
.hero.show_title .wrapper {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title image" "intro intro";
}
@media (max-width: 992px) {
  .hero.show_title .wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "title" "intro";
  }
}
.hero.show_title .wrapper .title {
  display: flex;
}
@media (max-width: 992px) {
  .hero.show_title .wrapper .title {
    justify-content: center;
    min-height: unset;
  }
}
.hero.show_title .wrapper .intro {
  margin-top: -5rem;
}
@media (max-width: 992px) {
  .hero.show_title .wrapper .intro {
    margin-top: 0;
  }
}
.hero.show_title .wrapper .intro h2 {
  max-width: 45%;
}
@media (max-width: 992px) {
  .hero.show_title .wrapper .intro h2 {
    max-width: 100%;
  }
}
.hero.show_title .wrapper .image .img-wrap img {
  width: 100%;
}
.hero.show_title .wrapper .image .img-wrap::after {
  content: unset;
}
.hero.show_title.no_intro .wrapper {
  grid-template-areas: "title image";
}
.hero.show_title.no_image .wrapper {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "intro";
}
.hero.show_title.no_image .wrapper .intro {
  margin-top: 0;
}
.hero.show_title.no_image .wrapper .intro h2 {
  max-width: 100%;
}
.hero.show_title.no_image.no_intro .wrapper {
  grid-template-areas: "title";
}
.hero.show_title.no_image.no_intro .wrapper .title {
  min-height: 200px;
}
.hero .bg {
  opacity: 0.07;
  mix-blend-mode: multiply;
}/*# sourceMappingURL=style.css.map */