
header {
	background-color: #000;	
	position: fixed;
	top: 0;
	width: 100%;
	padding: 5px;
	z-index: 99999999;
}

.nav-menu li{
  list-style: none;
  margin-left: 0;
}
.navbar{
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1px;
}
.nav-menu{
  display: flex;
  align-items: center;
}
.nav-logo{
  text-align: left;
  width: 120px;  
  padding-left: 10px;
}

#lang {
	text-align: left;
	width: 140px;
}
.nav-language a{
  color: #fff !important;
  text-align: right;
  
	
}
/* transition for links */
.nav-link{
  transition: 0.5s ease;
  color: #bfffca;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.nav-link:hover{
  color: #fff;
}
.hamburger{
  display: none;
  cursor: pointer;
}
.bar{
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: white;
}
.nav-item{
  padding: 0 20px;
}


.nav-item.active a {
	color: #fff;
}


@media(max-width: 1050px){
	
  .bar{
    display: block;
  }
  .hamburger{
    display: block;
	padding-right: 10px;
  }
  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1){
    transform: rotate(45deg) translateY(11.5px); 
  }  
  .hamburger.active .bar:nth-child(3){
    transform: rotate(-45deg) translateY(-11.5px); 
  }
  .nav-menu{
    position: fixed;
    right: -100%;
    top: 40px;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
	background-color: #000;	
  }
  .nav-item{
    padding: 10px 0;
	text-transform: uppercase;
  }
  
  .nav-item a{
    color: #bfffca;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
  }
  
  #mobile_lang a{
	  font-weight: bold;
	  text-transform: initial;
	  padding: 5px;
	  border: 1px solid white;
  }
  
  .nav-menu.active{
    right: 0;
  }
  
   
}