@charset "utf-8";
body {
  font-family: 'roboto_slabregular';
  margin: 15px;
  padding: 0px;
}
.titre {
  font-family: 'roboto_slabregular';
  color: #E4A81B;
}
.info {
  color: #FFFFFF;
  margin-top: 1300px;
  text-align: right;
  margin-right: 70px;
  font-weight: normal;
}
/*Gestion video de fond*/
.scene {
  margin: 15px;
  height: 80vh;
  width: 1200px;
  background-color: black;
  position: relative;
}
.scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.scene .content {
  width: 100%;
  height: 100px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: -5px;
  left: 58px;
}
/*Menu de navigation*/
.navbar {
  font-family: 'roboto_slabregular';
  height: 50px;
  padding: 0px;
  margin: 0px;
  position: absolute;
  left: 6px;
  top: 85px;
}
.navbar li {
  height: auto;
  width: 180px;
  float: left;
  text-align: center;
  list-style: none;
  font: normal bold 13px/1em 'roboto_slabregular';
  font-size: 12px;
  padding: 0;
  margin: 0;
  background-color: #444444;
}
.navbar a {
  padding: 18px 0;
  border-left: 1px solid #ccc9c9;
  border-right: 1px solid #ccc9c9;
  text-decoration: none;
  color: #E4A81B;
  display: block;
}
.navbar li ul {
  display: none;
  height: auto;
  margin: 0;
  padding: 0;
}
.navbar li:hover ul {
  display: block;
}
.navbar li ul li {
  background-color: #444444;
}
.navbar li ul li a {
  border-left: 1px solid #444444;
  border-right: 1px solid #444444;
  border-top: 1px solid #c9d4d8;
  border-bottom: 1px solid #444444;
}
.navbar li ul li a:hover {
  background-color: #787474;
}