/* navication */
/* basic styles for the header component */
nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -webkit-fill-available;
  height: auto;
  margin-bottom: 70px;
  position: absolute;
  margin-left: 20px;
}

.navMenu {
  display: none;
}

/* Make nav menu items take full width allocated */
.navMenu ul {
  display: flex;
  justify-content: space-between;
}

.navMenu li {
  list-style: none;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

.navMenu li:hover {
  color: var(--ion-green-color);
}

/* Styles for the hamburger menu icon */
#hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

#hamburger div {
  width: 22px;
  height: 2px;
  background-color: black;
  margin: 4px 0;
  transition: 0.5s;
}

#hamburger {
  display: none;
}

@media screen and (max-width: 1280px) {
  #hamburger {
    display: block;
    width: 90%;
  }
  #hamburger:focus, #hamburger:hover, #hamburger:active {
    background-color: transparent !important;
  }
  .navMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: auto;
    background-color: black;
    transform: translateX(100%);
    transition: 0.5s;
    z-index: 9;
  }
  .navMenu ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 15px;
    height: 100vh;
    justify-content: center;
    gap: 7%;
  }
  .navMenu li {
    color: white;
    padding: 15px 0;
  }
}
/* Extra utility classes to be added with JS */
.nav-active {
  transform: translateX(0);
  display: block;
  transition-delay: 1000ms;
}

#hamburger.toggle div {
  background-color: white;
}

.toggle #bar1 {
  transform: rotate(-45deg) translate(-5px, 4px);
}

.toggle #bar2 {
  opacity: 0;
}

.toggle #bar3 {
  transform: rotate(45deg) translate(-5px, -4px);
}

/* navication */

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