.top-menu {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "a c";
  padding: 1em 2em;
  transition: 0.5s;
  z-index: 222;
}
.top-menu .logo {
  padding-left: 1em;
  grid-area: a;
  font-size: 1.5em;
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: 1em;
}
.top-menu .logo img {
  width: 3em;
  aspect-ratio: 1/1;
  transition: 0.5s;
}
.top-menu .logo img:hover {
  scale: 1.2;
}
.top-menu .logo .slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.top-menu .logo .slogan .motto {
  font-size: 0.5em;
  font-weight: 400;
}
.top-menu .menu {
  grid-area: c;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
.top-menu .menu .menu-item {
  font-size: 1em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  width: 100%;
  max-width: 150px;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0.5em;
  transition: all 0.5s ease;
  line-height: 1;
  cursor: pointer;
}
.top-menu .menu .menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  scale: 1.1;
}
.top-menu .menu .menu-item:nth-last-child(1) {
  background: rgba(255, 255, 255, 0.1);
  animation: wobble 2s infinite;
}
.top-menu .menu .menu-item:nth-last-child(1):hover {
  background: rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 1100px) {
  .top-menu {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "c";
    gap: 1em;
  }
  .top-menu .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
  }
  .top-menu .logo .slogan {
    align-items: center;
  }
  .top-menu .menu {
    justify-content: center;
    display: grid !important;
    gap: unset !important;
  }
  .top-menu .menu .menu-item {
    padding: 1em;
  }
}/*# sourceMappingURL=menu.css.map */