.univers_header {
  position: relative;
}

.univers_header_images {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 630px;
}

.univers_header_nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 80;
}

.univers_header_nav > ul {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.univers_header_nav li {
  margin-right: 50px;
  min-width: 130px;
}

.univers_header_nav li:last-child {
  margin-right: 0;
}

.univers_header_nav a {
  display: block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.08;
  letter-spacing: normal;
  text-align: center;
  color: #161616;
  cursor: pointer;
  text-transform: uppercase;
}

.univers_header_nav a:hover {
  color: #a61615;
}

.univers_header_rubric {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 300px;
  height:120px;
  background-image: url("../../images/bg-rubriques-light@3x.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.univers_header_rubric > p {
  margin: 20px 10px 0 10px;
  font-family: BebasNeueRegular;
  font-size: 40px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 0.9;
  letter-spacing: normal;
  text-align: center;
  color: rgba(22, 22, 22, 0.74);
  text-transform: uppercase;
}

.univers_header_nav_sticky {
  position: fixed;
  top: 90px;
  width: 100%
}

.univers_header_title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 168px;
  width: 100%;
  background-image: url("../../images/textures/bg-paper-ivoire@3x.jpg");
  background-repeat: repeat;
  background-size: 1200px auto;
  padding: 0 15%;
  box-sizing: border-box;
}

.univers_header_title > h1 {
  word-wrap: normal;
}

@media only screen and (max-width: 768px) {
  .univers_header_nav_sticky {
    position: fixed;
    top: 56px;
    width: 100%
  }

  .univers_header_nav > ul {
    justify-content: initial;
  }

  .univers_header_nav li {
    margin-right: 25px;
    min-width: 130px;
  }

  .univers_header_nav li:first-child {
    margin-left: 25px;
  }

  .univers_header_nav li:last-child {
    margin-right: 25px;
  }

  .univers_header_rubric {
    width: 190px;
    height:90px;
  }

  .univers_header_rubric > p {
    font-size: 28px;
    line-height: 0.86;
  }

  .univers_header_title {
    height: 134px;
    padding: 0 5%;
  }
}