header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10vh;
  padding: 0rem 2rem 0rem 2rem;
  position: fixed;
  z-index: 99999;
  background-color: #222222;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  width: 30%;
  height: 10vh;
}

.logo img {
  height: 10vh;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 70%;
  height: 10vh;
  background-color: #222222;
}

#menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(255, 255, 255);
  min-width: 100px;
  height: 70%;
  margin-left: 1%;
  border-bottom: .3vh solid transparent;
  transition: border-bottom 500ms;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: .5rem;
  border-radius: 5px;
}


#menu a.active {
  border-bottom-color: #ff8c00;
  background-color: #1f1f1f;

}

.link-downloads,
.link-area-cliente {
  background-color: #3f3f3f;
}

header .bi {
  display: none;
}

@media (max-width: 700px) {
  header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0rem 0rem 0rem 0rem;
  }

  .logo {
    width: 80%;
    order: 1;
  }

  .logo img {
    width: 70%;
  }

  header .bi {
    display: block;
    width: 10%;
    order: 2;
    font-size: 2rem;
    color: #ff8b00;
  }

  .menu {
    display: none;
  }

  .menu-mobile {
    display: flex;
    width: 100%;
    height: 90vh;
    order: 3;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #222222;
  }

  #menu a {
    background-color: #1F1F1F;
    margin: 10px 0 10px 0;
    width: 95%;
    height: 100%;
    padding: .8rem;
  }

  #menu a.active {
    border-bottom: none;
  }


}


@media (min-width: 1500px) {
  .logo {
    width: 50%;
  }

  #menu a {
    min-width: 120px;
  }
  
  .menu {
    width: 50%;
  }
}
