/*MENU HEADER*/

ul {
  list-style-type: none;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  /*background-color: #ccc;*/
}

ul li a {
  display: block;
  color: #000000;
  padding: 0px 20px;
  text-decoration: none;
  /*display: inline-block;*/
  font-size: 20px;
  border-right: 1px solid #333;
  font-family: 'Montserrat', sans-serif;
  font-weight:500;
  /*transition: all .4s;*/
}

ul li a:hover {
  color: #971135;
  text-decoration:none;
}

/*--------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 864px){

ul {
  list-style-type: none;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*background-color: #ccc;*/
  
}

ul li a {
  display: block;
  color: #000000;
  padding: 15px 0px;
  text-decoration: none;
  /*display: inline-block;*/
  font-size: 20px;
  border-right: 0px solid #333;
  border-bottom: 1px solid #333;
  text-align:center;
  /*transition: all .4s;*/
  /*width: 80%;*/
}

ul li a:hover {
  color: #971135;
  text-decoration:none;
}

}

