.image-block--parallax {
  overflow: visible !important;
  border-radius: 0px !important;
  position: relative;
  --custom-color: #fff;
  --h1-font-size: 50px;
  --h1-line-height: 55px;
}
.image-block--parallax .parallax {
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-block--parallax figure {
  height: var(--parallax-banner-height, 600px) !important;
}
.image-block--parallax figure > div {
  height: var(--parallax-banner-height, 600px) !important;
}
.image-block--parallax figure:before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  opacity: 1;
  background-image: linear-gradient(0deg, rgba(4, 30, 66, 0) 0%, rgba(4, 30, 66, 0.5) 100%);
}
.image-block--parallax figure:after {
  content: "";
  position: absolute;
  top: calc(100% - 300px);
  left: 20%;
  height: 400px;
  width: 1px;
  opacity: 1;
  background: #fff;
}
.image-block--parallax figcaption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-block--parallax figcaption .in-active {
  pointer-events: none;
  z-index: -999;
}
.image-block--parallax figcaption grid {
  top: 40%;
  transition: opacity 0.1s;
}
