.menu-button {
  border: 0;
  background-color: #120f12;
  padding: 15px;
  border-radius: 50px;
  margin: 10px;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 1em;
  top: 1em;
  z-index: 999999;
  outline: none;
  cursor: pointer;
}

.menu-button:hover,
.menu-button.active {
  background-color: #ffffff;
}

.menu-button:hover .menu-bar,
.menu-button.active .menu-bar {
  background-color: #120f12;
}

.menu-button .menu-bar {
  width: 30px;
  height: 2px;
  background-color: white;
  position: relative;
  margin: 4px 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#menu {
  width: 100%;
  height: 0;
  position: fixed;
  background-color: #120f12;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.menu-nav {
  list-style: none;
  margin: 0;
  /* padding: 30px 0; */
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*width: 100%;*/
  width: fit-content;
  font-size: 2rem;
  overflow: hidden;
  /* font-family: 'nieweregular'; */
  width: fit-content;

}

.menu-nav a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
  opacity: 0;
  transition: 0.5s;
  width: fit-content;
  border-bottom: 2px solid #120f12;
}

.menu-nav a:hover {
  background-color: #fff;
  color: #120f12;
  /* text-decoration: line-through; */
}

.menu-nav li {
  width: fit-content;
}

.lang {
  position: fixed;
  left: 0em;
  top: 1em;
  background-color: #120f12;
  width: fit-content;
  z-index: 99;
  color: #fff;
  padding: 0.5em;
  padding-left: 1em;
  border-top-right-radius: 1rem;
  padding-right: 1em;
  text-transform: uppercase;
}


.dropbtn {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  padding: 0px;
  border: none;
  cursor: none;
  font-size: 1em;
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: 0.5s;
  text-transform: uppercase;
  text-align: right;
  z-index: 999;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: -16px;
  /* background-color: #000; */
  min-width: 160px;
  z-index: 1;
  padding-bottom: 2em;
  padding-top: 1em;
  border-top-right-radius: 1rem;
}

.dropdown-content a {
  color: #fff;
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav_pais {
  right: 3vw;
  top: 3vh;
}

@media only screen and (max-width: 768px) {

  .menu-button{
    /* top: 0; */
  }

  .menu-nav {
    width: 80%;
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 480px) {


  .menu-nav {
    width: 80%;
    font-size: 1.4rem;
  }
}