header {
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
header .mobile-nav-btn {
  display: none;
}
header nav {
  margin: 0 auto;
  height: 100%;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}
header nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s;
}
header nav ul li:hover {
  background: white;
}
header nav ul li:hover a {
  color: var(--black);
}

@media screen and (max-width: 900px) {
  header {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 40px;
    flex-direction: column;
    max-height: var(--header-height);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  header[data-mobile-nav-open] {
    height: 100dvh;
    max-height: 100dvh;
    overflow: auto;
  }
  header .mobile-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    min-height: var(--header-height);
    max-height: var(--header-height);
  }
  header .mobile-nav-btn .line {
    width: 30px;
    height: 2px;
    background: white;
    margin: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
  }
  header nav {
    margin-right: 0;
    margin-left: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  header nav ul {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 30px;
  }
  header nav ul li {
    height: fit-content;
    padding: 20px 0;
  }
  header nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s;
  }
  header nav ul li:hover {
    background: transparent;
  }
  header nav ul li:hover a {
    color: white;
  }
}
.header-placeholder {
  height: var(--header-height);
}

@media screen and (max-width: 600px) {
  header {
    padding: 0 20px;
  }
}

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