header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px;
  background: #FFFFFF }


/* burger
.burger {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  cursor: pointer;
  overflow: hidden }

.burger span {
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out } */


/* MENU */
.menu {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  justify-content: center }

.menu a {
  flex: 0 0 auto;
  color: var(--dark);
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 25px }

  @media (min-width:1081px) { .menu a { font-size: 18px }}