.module-banner {
  --rem: var(--_rem, 100px);
  position: relative;
}

.module-banner .banner-container {
  align-items: center;
  border-radius: calc(0.2 * var(--rem));
  box-sizing: border-box;
  color: rgb(var(--color-background));
  display: flex;
  flex-flow: column;
  justify-content: center;
  overflow: hidden;
  padding: 6vw var(--grid) calc(var(--grid) / 2);
  position: relative;
  z-index: 0;
}

.module-banner .banner-container:before {
  content: "\e93b";
  display: block;
  font-size: 20vw;
  margin: 0 0 4vw;
  order: -1;
  text-decoration: none;
}

.module-banner .banner-container:after {
  content: "\e93c";
  display: block;
  font-size: 8vw;
  margin: 0 0 4vw;
  order: -1;
  text-decoration: none;
}

.module-banner .banner-figure:before {
  background: rgba(var(--color-dark), 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.module-banner .banner-heading {
  color: rgb(var(--color-background));
  font-family: "Kalakala";
  font-size: 8vw;
  margin: 0 0 4vw;
  order: -2;
  text-decoration: underline rgb(var(--color-background)) 1px;
  z-index: 1;
}

.module-banner .banner-img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.module-banner .banner-more {
  margin: calc(0.32 * var(--rem)) 0 0;
  min-width: calc(1.2 * var(--rem));
  position: relative;
  z-index: 1;
}

.module-parallax {
  overflow: hidden;
}

.module-parallax img {
  transition: transform 0.6s;
  will-change: transform;
}

.module-page .module-parallax {
  position: relative;
}

.module-page .module-parallax img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@media (max-width: 62em) {
  .module-banner {
    justify-content: end;
    padding-left: 0;
    padding-right: 0;
  }

  .module-banner .banner-container {
    border-radius: 0;
    padding: calc(var(--grid) * 2) var(--grid);
  }

  .module-banner .banner-container:before {
    font-size: 34vw;
  }

  .module-banner .banner-container:after {
    font-size: 28vw;
  }

  .module-page .module-parallax img {
    height: auto;
    position: static;
    width: auto;
  }
}