header {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 128px);
  justify-content: space-between;
  padding: 16px 40px;
  margin: 0 64px;
  box-sizing: border-box;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  z-index: 9;
  visibility: visible;
  transition: opacity 300ms linear 0s, visibility 300ms linear 0s;
}

.header-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

header a {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-family: "aeo-pro";
  font-weight: 400;
  margin: 0 14px;
}

#useCases {
  width: 100vw;
  height: auto;
}

.logo {
  width: 144px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  background-image: url("images/Genor.svg");
}

.logo[onclick] {
  cursor: pointer;
}

@media only screen and (max-width: 920px) {
  header nav {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  header {
    padding: 16px;
    margin: 0 16px;
    width: calc(100% - 32px);
  }

  .logo {
    width: 110px;
    height: 32px;
    flex-grow: 1;
  }

  header {
    gap: 12px;
  }
}
