nav {
  width: 100vw;
  height: min(15dvh, 150px);
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: white;
  -webkit-box-shadow: 8px 8px 41px -14px rgb(66, 68, 90);
  -moz-box-shadow: 8px 8px 41px -14px rgb(66, 68, 90);
  box-shadow: 8px 8px 41px -14px rgb(66, 68, 90);
  color: #1a1a1a;
  transition: 0.2s ease;
}
nav.scrolled {
  height: min(12dvh, 120px);
  transition: 0.2s ease;
}
nav.scrolled .nav-items {
  font-size: 1rem !important;
}
@media screen and (max-width: 1030px) {
  nav .nav-items {
    display: none !important;
  }
  nav .menu-toggle {
    display: grid !important;
  }
}
nav .inner {
  height: 100%;
  width: 100%;
  display: grid;
  gap: clamp(50px, 3vw, 200px);
  grid-template-columns: 1fr 150px 1fr;
  grid-template-rows: 100%;
  position: relative;
  z-index: 2;
}
nav .inner .nav-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 1920px) {
  nav .inner .nav-items {
    font-size: 1.1rem;
  }
}
nav .inner .nav-items:first-of-type {
  justify-content: flex-end;
  grid-column: 1;
}
nav .inner .nav-items:last-of-type {
  justify-content: flex-start;
  grid-column: 3;
}
nav .inner .nav-items .item {
  cursor: pointer;
  font-weight: 500;
  box-sizing: border-box;
}
nav .inner .nav-items .item:hover, nav .inner .nav-items .item.active {
  color: #e82cc7;
  scale: 1.05;
}
nav .inner .logo-wrapper {
  height: 100%;
  width: auto;
  position: absolute;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
nav .inner .logo-wrapper img {
  height: 100%;
  width: auto;
  -webkit-user-drag: none;
  user-select: none;
}
nav .menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  cursor: pointer;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.15);
  place-items: center;
  padding: 4px;
  z-index: 99;
}
nav .menu-toggle:hover {
  scale: 1.03;
}
nav .menu-toggle img {
  padding: 4px;
  height: 32px;
  width: 32px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  filter: invert(1);
}
nav .menu-toggle.open {
  display: grid;
  transform: translateY(-50%) rotate(90deg);
}
nav .small-menu {
  position: absolute;
  overflow: hidden;
  background: #f3f3f3;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  z-index: 1;
  transition: all 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
nav .small-menu a {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  height: 30px;
  background: white;
  border-radius: 25px;
}
nav .small-menu a:hover, nav .small-menu a.active {
  color: #e82cc7;
  font-weight: 600;
}
nav .small-menu.hidden {
  max-height: 0;
  padding: 0 20px;
}

/*# sourceMappingURL=header.css.map */
