.block_pitch {
  width: 100ù;
  min-height: 80vh;
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.block_pitch .pitch-inner {
  width: 100vw;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.block_pitch .pitch-headline {
  max-width: 460px;
  z-index: 1;
}
.block_pitch .pitch-headline .pitch-title {
  color: var(--text-main);
  margin: 0;
  margin-top: 20px;
  max-width: 400px;
}
.block_pitch .pitch-video-zone {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.4;
}
.pitch-inner:before,
.pitch-inner:after,
.pitch-video-zone:before,
.block_pitch .pitch-video-zone:after {
    content: "";
    position: absolute;
    background: #FFF;
    top: 0;
    z-index: 0;
}
.pitch-video-zone:before,
.block_pitch .pitch-video-zone:after {
    height: 100%;
    width: 150px;
}
.pitch-inner:before,
.block_pitch .pitch-inner:after {
    height: 150px;
    width: 100%;
}
.block_pitch .pitch-inner:before {
    top: 0;
    background: linear-gradient(-180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_pitch .pitch-inner:after {
    bottom: 0;
    top: auto;
    background: linear-gradient(0, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_pitch .pitch-video-zone .component_video {
    height: 100%;
}
.block_pitch .pitch-video-zone:before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_pitch .pitch-video-zone:after {
    right: 0;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_pitch .pitch-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block_pitch .pitch-footnote {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 2rem;
  z-index: 1;
}
@media (max-width: 900px) {
  .block_pitch .block_pitch {
    min-height: 50vh;
    height: 50vh;
  }
  .block_pitch .pitch-headline h1 {
    font-size: 2.2rem;
  }
  .block_pitch .pitch-footnote {
    font-size: 1.1rem;
    right: 5vw;
    bottom: 14px;
  }
  .block_pitch .pitch-video-zone {
    margin-left: -1.5rem;
    width: calc(100% + 3rem);
  }
}