.video-stored-container {
  position: relative;
  .video-poster {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
  }
  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .click-to-play {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 695px;
    height: 695px;
    width: 100%;
    aspect-ratio: 2 / 1.1;
    @media screen and (max-width: 768px) {
      min-height: 280px;
      height: 280px;
      width: 100%;
      aspect-ratio: 1/1;
    }
    .play-btn {
      position: absolute;
      z-index: 2;
    }
  }
  video {
    width: 100%;
    height: 100%;
  }
}
