.menu__wrapper {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 32px;
  transition: top 0.5s;
}

.menu__body {
  background: white;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  box-shadow: var(--gray-3) 0px 7px 29px 0px;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  width: 100%;
}

.navbar a {
  transition: 0.5s;
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.navbar a:hover {
  transform: scale(1.1);
}

.menu__logo {
  display: flex;
  flex-direction: row;
}

.menu__menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}

.menu__login {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.menu__login li {
  list-style: none;
}

.menu__element {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.control {
  position: relative;
}

.separator {
  border-left: 1px solid var(--gray-2);
}

.separator_horizontal {
  border-top: 1px solid var(--gray-2);
  width: 80%;
}

.nav__language {
  display: flex;
  padding-right: 32px;
  flex-direction: column;
  justify-content: space-around;
}

.nav__language li {
  display: flex;
  list-style: none;
}

.lang {
  display: flex;
}

.dropdown_menu {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  gap: 16px;
  padding: 16px;
  width: 100%;
}

.dropdown_menu_user {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--gray-3) 0px 7px 29px 0px;
}

.dropdown_menu a {
  width: 100px;
}

.dropdown_menu a:hover {
  background-color: none;
}

.menu_show {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 900px) {
  .dropdown_menu {
    position: absolute;
    margin-top: 154px;
  }

  .dropdown_menu_user {
    position: absolute;
    margin-top: 24px;
    right: 36px;
  }

  .navbar {
    justify-content: space-between;
  }

  .menu__menu {
    flex: 3 20;
    height: 80%;
    gap: 32px;
  }

  .menu__login {
    flex: 1 16;
  }

  .menu__logo {
    flex: 1 1;
  }

  .menu__body {
    border-radius: 120px;
  }
}

@media screen and (max-width: 900px) {
  .menu__menu {
    display: none;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 32px;
  }

  .menu__logo {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    justify-self: flex-start;
  }

  .nav__language {
    display: none;
  }

  .navbar {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    transition: all 300ms ease-in-out;
  }

  .menu_show {
    display: flex;
  }

  .menu__login {
    display: none;
  }

  .menu__body {
    border-radius: 24px;
  }
}

.user_icon {
  transition: 0.5s;
}

.user_icon:hover {
  cursor: pointer;
  transform: scale(1.2);
}