@charset "UTF-8";

.btn--pagetop {
  font-family: "RenaultFont";
  font-weight: bold;
}

nav ul {
  display: table;
  margin: 0 auto;
  padding: 0;
  width: 80%;
  text-align: center;
}

nav li {
  display: table-cell;
  min-width: 50px;
}

nav a {
  display: block;
  width: 95%;
  text-decoration: none;
  color: #555;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;

}

nav a:hover{
  border-bottom: 3px solid #F0E475;
}

.arrow_u {
  position: relative;
}

.arrow_u:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
}

@media screen and (max-width:891px) {
  nav li {
      display: block;
      padding: 12px 0 0;
    }
}

@media screen and (min-width:769px) and  (max-width:1024px) {
  nav ul {
    width: 96%;
  }
}