@charset "UTF-8";
/* CSS Document */

.VideoWrapper {
	position: relative;
	overflow: hidden;
	min-height: 100%;
    min-height: 100vh;
    padding: 0;
}

.VideoWrapper h2 {
	font-weight: 800;
	color:#FFF;
	font-size: 2.8em;
}


.vimeo-wrapper {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 0;
   pointer-events: none;
   overflow: hidden;
}

.vimeo-wrapper iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: url(https://vumbnail.com/786219083.jpg) no-repeat center center;
   background-size: cover;
}




.Inner {
	position: relative;
	width: 100%;
	min-height: 100%;
    min-height: 100vh;
	display: table; 
	text-align: center;
	box-sizing: border-box;
	margin: auto;
	z-index: 1;
	}

.Inner .Center { 
	display: table-cell; 
	vertical-align: middle; 
	width: 100%; 
	position: static;
	padding-top: 100px;
	padding-bottom: 100px;
	}
	
.VideoWrapper .Inner img {
	width: 450px;
	max-width: 100%;
	margin-bottom: 30px;
}


.VideoWrapper .Inner h1 {
	color:#FFF;
	font-weight: 900;
	font-size:6.0em;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	line-height: 1.0em;
}

.VideoWrapper .Inner h1 small {
	font-size:70%;
	line-height: 60%;
}

.VideoWrapper .Inner p {
	color:#FFF;
	font-weight: 300;
	font-size:1.8em;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
	margin-top: 20px;
}



.VideoWrapper .Inner input[type="text"] {
	display: inline-block;
	width: 300px;
	height: 60px;
	max-width: 100%;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 1.3em;
	text-align: center;
	color: #656565;
}

.VideoWrapper .Inner input[type="password"] {
	display: inline-block;
	width: 300px;
	height: 60px;
	max-width: 100%;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 1.3em;
	text-align: center;
	color: #656565;
}

.VideoWrapper .Inner input::placeholder { 
  color: #c3c3c3;
  font-weight: 300;
}




  
  

@media (max-width: 992px) 
{
	.VideoWrapper .Inner h1 {
		font-size:4em;
		}
		
	.VideoWrapper .Inner p {
		font-size:2.5em;
		}
		
	.VideoViewport { 
		display: none;
		}
	
	.VideoViewport.Mobile { 
		display: inline;
		}
		
	.Inner .Center { 
		padding-left:10px;
		padding-right:10px;
		}	

	
}


