
/* ******************** navbar ******************** */
.bg-dark {
  background-color: transparent !important;
}
.navbar-brand img{
	height: 40px;
}
.meu-menu{
	background-color: #1b1b1b;
	background-image: -moz-linear-gradient(top, #222222, #111111);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
	background-image: -webkit-linear-gradient(top, #222222, #111111);
	background-image: -o-linear-gradient(top, #222222, #111111);
	background-image: linear-gradient(to bottom, #222222, #111111);
	background-repeat: repeat-x;
	border-color: #252525;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
}
.navbar ul li a{
	padding: 0 20px !important;
	font-weight: 600;
}
/* ******************** end navbar ******************** */

/* ******************** Video background ******************** */
section.banner{
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 35rem;
  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;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
section .container {
  position: relative;
  z-index: 2;
}
section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.2;
  z-index: 1;
}

.banner h1{
	font-size: 3rem;
	font-weight: 600;
}
.banner h2{
	font-size: 2.5rem;
	font-weight: 500;
}
/* ******************** end Video background ******************** */