section{
    position: relative;
    background: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

section video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

section .container{
    position: relative;
    z-index: 2;
}

section .overlay-wcs{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.5;
    z-index: 1;
}

 .menu {
    max-width: 20%;
    overflow: visible;
    position: relative;
} 

.kotak {
    box-shadow: 3px 2px 1px grey;
    font-size: 40px;
}

.image-container { 
    position: relative; 
  } 
   
  .image-overlay { 
    white-space: nowrap;
	display: inline-block;
	background:#fff;
	color:#333;
	padding:2px 15px;
	border-radius: 20px;
	text-transform: uppercase;
	font-size:11px;
	font-weight: bold;
	position: absolute;
	bottom:100px;
	left:50%;
	transform: translate(-50%,0) scale(0);
	-webkit-transform: translate(-50%,0) scale(0);
	opacity: 0;
	transition: 300ms ease;
	-webkit-transition: 300ms ease;
  } 
   
  .image-container:hover .image-overlay { 
    transform: translate(-50%,15px) scale(1);
	-webkit-transform: translate(-50%,15px) scale(1);
	opacity: 1;
  } 
   
  .image-overlay p { 
    color: white; 
    text-align: center; 
    font-size: 10px; 
    padding: 50px; 
  } 