#header {
  width: 100%;
  background-color: black;
  height: 135px;
  padding-top: 2%;
}

#barranav li {
  color: white;
  padding-right: 10px;
  text-decoration: none;
  font-family: 'Questrial', sans-serif;
  padding-bottom: 5px;
  position: relative;
}

#barranav li::before {
  content: '';
  display: block;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  transition: all ease-in-out 350ms;
}

#barranav li:hover::before {
  width: 100%;
}

#navbarNav {
  width: 100%; 
}

#navbar h1 {
  font-weight: bold;
  color: white;
  font-size: 28px;
}


.navbar-collapse {
  width: 100%;
}

#legend {
  color: white; 
  padding-right: 50px;
  font-weight: bold;
}

#legend:hover {
  color: grey; 
}

#navbarNav a {
  color: white;
}

#btn-contact-desktop,
#btn-contact-mobile {
  width: 230px;
}

@keyframes bounce-move {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

#btn-contact-desktop {
  animation: bounce-move 1s ease-in-out infinite;
  animation-delay: 1s;
}

@media (max-width: 1024px) {
  #navbar-toggler {
    margin-top: 2%;
  }

  #header {
    height: auto;
    padding-bottom: 5%;
  }
}
