#discover-survey {
  position: relative;
  overflow-y: clip;
  padding: 160px 0; /* parallax */

  h1 {
    font-size: 32px;
  }

  .video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(((100vw - 1200px) / 2 * -1));
    min-width: 100vw;
    margin: 0 -16px;

    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.2);
    }
  }

  .content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
    gap: 68px;
  }
}

@media screen and (max-width: 1200px) {
  #discover-survey {
    padding: 280px 0; /* parallax */

    .video-wrapper {
      left: 0;
    }

    .content {
      padding: 0;
    }
  }
}
