.block-hero.module {
  position: relative;
  padding: 0;
  margin-bottom: 50px;
  height: 100vh;
}
.block-hero.type-embed {
  overflow: hidden;
}
.block-hero > * {
  z-index: 2;
  position: relative;
}
.block-hero .gallery {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.block-hero.type-image .image,
.block-hero.type-image img,
.block-hero .overlay,
.block-hero video,
.block-hero iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-hero .iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
}
.block-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
}
.block-hero .gallery .img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.block-hero .gallery img {
  position: absolute;
  min-height: 0vw;
  top: 0;
  left: 0;
  width: calc(270px + 330 * ((100vw - 320px) / 1120));
  height: calc(270px + 330 * ((100vw - 320px) / 1120));
  object-fit: contain;
  transform: translate( -50%, -50% );
}
.block-hero img,
.block-hero video,
.block-hero iframe {
  -webkit-filter: brightness(55%);
  filter: brightness(55%);
  -webkit-filter: contrast(0.5) brightness(1.3) grayscale(0);
  filter: contrast(0.5) brightness(1.3) grayscale(0);
}

.block-hero h1 {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 31%;
  transform: translateY(50%);
}
.block-hero h1 span {
  display: block;
}
.block-hero.type-gallery .line-2 {
  margin-left: 273px;
  margin-top: calc(0px - 19 * ((100vw - 320px) / 1120));
}
.block-hero.type-gallery .line-3 {
  margin-left: 111px;
  margin-top: calc(0px - 19 * ((100vw - 320px) / 1120));
}
.block-hero p {
  position: absolute;
  z-index: 2;
  width: 110px;
  left: 20px;
  bottom: 31%;
  transform: translateY(50%);
  margin-bottom: 0;
}
.editor-styles-wrapper .block-editor-writing-flow .block-hero p {
  margin-bottom: 0;
}

.block-hero .arrow-down {
  position: absolute;
  height: 51px;
  width: 50px;
  bottom: 10px;
  left: 10px;
  margin-left: 0;
  padding: 10px;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
  opacity: 0;
  z-index: 5;
}
@keyframes jumping-arrow {
  0%, 100% { transform: translateY(-20%); }
  80% { transform: translateY(0%); }
}
.block-hero .arrow-down img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-filter: initial;
  filter: initial;
  animation: jumping-arrow 1.2s ease-in-out infinite;
}
.scrolled-to-top .block-hero .arrow-down {
  opacity: 1;
}

/* @media (max-width: 1439.9px){ */
  .block-hero.type-gallery .line-2 {
    margin-left: 18.958vw;
  }
  .block-hero.type-gallery .line-3 {
    margin-left: 7.708vw;
  }
  .block-hero p {
    font-size: 1.25vw;
  }
/* } */

@media (max-width: 767.9px){
  .block-hero p {
    font-size: 11px;
  }
}