.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  z-index: 10;
  justify-content: center;
  top: 0;
  left: 0;
  background-color: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  position: sticky;
}

.logo {
  width: max-content;
}

.logo img {
  width: 100%;
  max-width: 150px;
  margin-left: 0.5rem;
}

.container-nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}

.container-button {
  display: flex;
  width: 40px;
  height: 24px;
  justify-content: space-between;
  flex-direction: column;
}

.container-button div {
  background-color: rgb(69, 96, 185);
  border-radius: 10px;
  width: 80%;
  height: 4px;
  transition: all 0.2s linear;
}

.container-li {
  display: flex;
  flex-direction: column;
  font-size: 19px;
  font-weight: 600;
  color: #111827;
  gap: 15px;
  background-color: rgb(240, 237, 237);
  border-radius: 10px;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  align-items: flex-start;
  padding: 15px;
  scale: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform-origin: top right;
}

.container-li li a {
  display: inline-block;
  width: 100%;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.container-li li:first-child {
  color: white;
  background-color: rgb(69, 96, 185);
  border-radius: 0.25rem;
  width: 100%;
  transition: all 0.3s linear;
}

@media (min-width: 1024px) {
  .container-li {
    display: flex;
    background-color: white;
    border-radius: 0px;
    position: static;
    padding: 0;
    justify-content: flex-end;
    transform: translateX(0);
    flex-direction: row;
    align-items: flex-start;
    opacity: 1 !important;
    scale: 1 !important;
  }

  .container-li li {
    padding: auto;
    transition: color 0.3s linear;
  }

  .container-li li:hover {
    color: blue;
  }

  .container-button {
    display: none;
  }

  .container-li li:first-child {
    color: black;
    background-color: transparent;
    border-radius: 0;
    width: auto;
  }

  .container-li li:first-child:hover {
    color: blue;
  }
}
