

nav {
  /* BG original  */
  /* background: #0082e6; */
  background: white;
  height: 80px;
  width: 100%;
  
  border-bottom: #ccc solid 1px;
  border-top: #ccc solid 1px;
}


label.logo {
  /* color: white; */
  color: #ccc;
  
  
  font-size: 25px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}




/* Texte - elements (Home, About, ...) */
nav ul li a {
  /* Color originale */
  /* color: white; */
  /* Color - taxitanger.com */
  
  
  /* color: #141414; */
  /* color: white; */
  color: #ccc;
  
  /* originale */
  /* font-size: 17px; */
  /* Color - taxitanger.com */
  font-size: 13px;
  
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  
  /* Color - taxitanger.com */
  letter-spacing: 2px;
}



a.active,
a:hover {
  background: #1b9bff;
  transition: .5s;
}

.checkbtn {
  font-size: 22px;
  
  /* color: red; */
  color: #ccc;
  
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}


#check {
  display: none;
}

@media (max-width: 1050px) {
  label.logo {
    padding-left: 30px;
  }

  nav ul li a {
    font-size: 16px;
  }
}




/* Responsive media query code for small screen */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }

  label.logo {
    font-size: 22px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
	
    /* background: #2c3e50; */
	/* #f8f9f9 */
	/* background: #fdfdf8; */
	background: #f8f9f9;
	
	/* SANS footer */
    /* top: 80px; */
	/* AVEC footer ==> CALCUL ==> Hight(NAV) + Hight(Header) = 100 + 80 = 180 */
	top: 180px;
	
    left: -100%;
    text-align: center;
    transition: all .5s;
	  position: absolute;

	z-index: 10;
  }

  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav ul li a {
	
	/* VALEURS originales	 */
    /* font-size: 20px; */
	
	
	font-size: 20px;
	border-bottom: #ccc solid 1px;
  }

  a:hover,
  a.active {
    background: none;
    color: #0082e6;
  }

  #check:checked~ul {
    left: 0;
  }
}


