/*
COULEURS:
Jaune : #f8d447
rouge: #d6262a
bleu: #06275f
 * */

.topnav {
  overflow: hidden;
  z-index:200;
}

.topnav a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1em;
  font-weight:bold;
  border-left: 2px solid #f8d447;
  background-color: #d6262a;
}

.topnav a:hover {
  background-color: #f8d447;
  color: #06275f;
  font-weight:bold;
}

.topnav a.active {
  background-color: #9b333d;
  color: white;
  font-weight:bold;
}

.topnav .icon { 
  display: none;
}

@media screen and (max-width: 1199px) {
  .topnav.responsive {position: relative;margin-top:45px;padding-right:0px;}
  /*.topnav.responsive .icon { position: absolute;right: 0;top: 0px; background-color:#f8d447;z-index:10;}*/
  .topnav.responsive a {
    float: none;
     background-color: #f8d447;
      color: #06275f;
    display: block;
    text-align: left;
  }
  
  .topnav.responsive a:hover {
	background-color: #d6262a;
	color: #fff;
	font-weight:bold;
}
  
  .topnav.responsive a.active {
	  background-color: #d6262a;
	  color: #f8d447;
	  font-weight:bold;
}
  
  .topnav a {display: none;}

  .topnav a.icon {
    float: right;
    display: block;
    background-color:#f8d447;
    top: 0px;
  }
}
