header {
  background-color: var(--primary);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 46px;
}
.logo-img {
	max-height: 30px;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 30px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: var(--accent);
}


.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color:white;
}

/* Responsive styles */
@media (max-width: 768px) {
 
 
  nav ul li{
	  color:white;
	   display: inline-block;
	   
  }
	
  nav ul {
	display: none;
	flex-direction: row;
	position: absolute;
	top: 70px;
	right: 0px;
	padding: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width:100%;
	flex-wrap: wrap;
	justify-content: space-evenly;
	background-color: #111111;
	 
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

  