.stub-page {
  margin: 0;
  background: #000;
}

.stub-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.stub-video__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stub-video__item--phone {
  display: none !important;
}

@media (max-width: 600px) {
  .stub-video {
    height: 100dvh;
  }

  .stub-video__item--desktop {
    display: none !important;
  }

  .stub-video__item--phone {
    display: block !important;
  }
}