/* CSS Document */
.jumbotron {
  position: relative;
  overflow: hidden;
	color:white;
  background-color:black;
}
.jumbotron video {
  position: absolute;
  z-index: 1;
  top: 0;
  width:100%;
  height:100%;
  /*  object-fit is not supported on IE  */
  object-fit: cover;
  opacity:0.3;
}
.jumbotron .container {
  z-index: 2;
  position: relative;
}
.navbar{
	position: fixed;
	z-index: 200;
}

