.showcase {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  z-index: 98;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  /* Keeps the video in the middle */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-content {
  z-index: 1;
}




/**
.xmain {
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:50%;
  transform: translateX(-50%);
  z-index: 98;
}
*/

.xmain {
  position:absolute;
  width:100%;
  bottom:-5px;
  left:50%;
  transform: translateX(-50%);
  z-index: 98;
}

@media screen and (min-width: 800px) {
	.xmain {
		height:100%;
	}
}

.scrollDist {
  width:100%;
  height:200%;
}