.header {
    display: flex;
    flex-direction: column;
    background-color: var(--apple-green);
    border-radius: 0px 0px 20px 20px;
    height: 163px;
    min-width: 100%;
}

.header > * {
    height: 163px;
    display: flex;
    flex-grow: 1;
}

.header-contents {
    align-items: center;
    transform: translateY(calc(-263px / 2));
}

.gradient {
    height: 163px;
	z-index: 0;
    border-radius: 0px 0px 20px 20px;
}

.logo {
  width: 200px;
  height: 97px;
  margin-left: 50px;
}

.navigation-panel {
    display: flex;
    height: 75px;
    margin-right: 90px;
}

.navigation-item {
  background-color: var(--light-neutral);
  width: 100px;
  height: 75px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation-item:first-of-type {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.navigation-item:last-of-type {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.navigation-item.active {
  background-color: var(--variable-collection-light-lemon);
}
.navigation-item:hover {
  background-color: var(--white);
}