.navbar{
	display: flex;
}
.logo-container{ width: 30%;}

.nav-logo {
  width: 180px;
  height: auto;
  max-width: none;
  display: block;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-center img{
	    width: auto;
	height: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  padding: 0;
  margin: 0;
  min-width: 700px;
  gap: 0;
}

.nav-links li {
  margin: 0 18px; 
}

.nav-tile {
  display: inline-block;
  padding: 0.5em 1.2em;
  border: 2px solid transparent;
  border-radius: 0;         
  color: #fff;
  font-size: 1.1em;          
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  box-shadow: none;
}

.nav-tile:hover,
.nav-tile.active {
  border-color: #00ffe0;
  background: rgba(0,255,224,0.1);
  color: #00ffe0;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}

.nav-links .nav-tile {
  font-size: 1.3em;     
  border-radius: 0;    
  padding: 0.5em 1.2em;  
}
