nav{
  position: sticky;
  width: 100%;
  height: 75px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;

  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35); */
  background-color: var(--nav-color);

  top: 0;

  z-index: 99;
}
nav ul.nav{
  height: 100%;
  display: flex;
  flex-direction: row;

  padding: 0;
  margin: 0;
  gap: 0;


}

nav a.nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.15s ease-in-out color;
  
  height: 100%;
  padding: 0 15px;

  color: var(--text-color);

}

nav a.nav:hover, nav a.nav:active, nav a.nav:focus, nav a.nav#active{
  color: var(--primary-color);
}

nav a.nav p{
  margin: 0;
  padding: 0;
  font-size: 30px;
  text-transform: uppercase;

  font: var(--heading-font);
}

nav a.nav span{
  margin: 0 0 0 5px;
  padding: 0;
  font-size: 35px;
}


nav a.nav img{
  height: 80%;
}

nav a.nav.title{
  font-weight: bold;
  /* background-color: var(--primary-color); */
  color: white;
}

nav a.nav div.navStack{
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 0;
}

nav a.nav div.navStack p{
  font-size: 18px;
  font-weight: 700;

  font-family: var(--heading-font);
}