.navbar {
  margin-top: 0 auto;
  position: fixed;
  width: 100%;
  height: 110px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background-color: #92cf86;
  padding-right: 30px;
}

header .navbar ul li ul {
  position: absolute;
  width: 180px;
  display: none;
  background-color: #92cf86;
}

header .navbar ul li ul li {
  width: 100%;
  line-height: 40px;
  text-align: left;
  margin-left: 20px;
  margin-top: 10px;
}

header .navbar ul li:hover > ul {
  display: list-item;
  list-style-type: none;
}

header .navbar ul li ul li ul {
  width: 100%;
  line-height: 40px;
  text-align: left;
  margin-left: 160px;
  margin-top: 0px;
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  transition: 0.5s ease;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 18px;
}

.nav-link:hover {
  color: grey;
}

.hamburguer {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.nav-item-drop:hover .drop-down {
  display: block;
}

.nav-item-drop a {
  display: flex;
}

.dropdown-icon {
  font-size: 20px;
  position: relative;
  left: 5px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out all;
}

.nav-item-drop:hover .dropdown-icon {
  transform: rotate(180deg);
}

.drop-down {
  position: relative;
  padding: 0.5rem 0;
  font-size: 18px;
  border-radius: 10px;
}

@media (max-width: 1280px) {
  .hamburguer {
    display: block;
  }
  .hamburguer.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburguer.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburguer.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .navmenu {
    position: fixed;
    display: flex;
    justify-content: center;
    left: -100%;
    right: 0;
    top: 100px;
    color: grey;
    border-radius: 0 0 20px 20px;
    background-color: #92cf86;
    flex-direction: column;
    width: 100%;
    transition: 0.3s;
    align-items: flex-start;
    padding-left: 40px;
    gap: 20px;
  }
  .nav-item {
    right: 0;
    left: auto;
  }

  .drop-down {
    position: fixed;
    width: 200px;
    display: none;
    align-items: flex-end;
    background-color: #92cf86;
  }

  #nav-item-last {
    padding-bottom: 30px;
  }
  .navmenu.active {
    left: 0;
  }
  .center {
    top: 0%;
  }
}
