.menu-container {
  width: 100%;
  background-color: var(--background-top-nav);
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 99;
}
.menu-on-scroll {
  background-color: var(--white-button);
}

.main-menu {
  width: 90%;
  max-width: 1200px;
  background-color: transparent;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-menu__logo-white {
  width: 15rem;
  height: 3rem;
  background-image: url("../../img/logo-blanco.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.main-menu-on-scroll {
  background-image: url("../../img/logo-intertactics.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.menu-items {
  display: none;
}
.menu-items li {
  list-style: none;
}
.menu-items li a {
  text-decoration: none;
  color: var(--dark-white);
  transition: color 0.3s;
}
.menu-items li:hover a {
  color: var(--white-button);
  transform: scale(1.02, 1.02);
}
.menu-items-on-scroll li:hover a {
  color: var(--blue-green);
}
.menu-btn {
  background-color: transparent;
  outline: 0px;
  border: 0px;
  cursor: pointer;
}
.fa-bars {
  color: #fafafa;
  font-size: 2em;
}
.fa-bars-on-scroll {
  color: var(--background-top-nav);
}
@media screen and (min-width: 1024px) {
  .menu-items-container {
    width: 60%;
    display: flex;
    justify-content: end;
  }
  .menu-items {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
}
