


header {
  position: fixed;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 9999;
  padding-top: 50px;
  padding-bottom: 40px;
}

#logo {
  display: inline;
  float: left;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.4;
  text-transform: uppercase;
}

.logoLine1 {
  font-weight: 500;
}

.logoLine2 {
  font-weight: 300;
}

nav {
  display: flex;
  justify-content: flex-end;

}

nav ul li {
  display: inline;
  text-align: right;
  margin-right: 12px;

}

li.active {
  text-decoration: underline;
  text-underline-offset: 11px;
}


li.language {
  text-transform: uppercase;
}

li.language:first-child {
    margin-left: 30px;
}


li.language:first-child:after {
    content: '/';
}


#hamburger {
  display: none;
}

#hamburger img {
  height: 28px;
  width: auto;
  margin-left: 40px;
}

#menu-items {
  display: block;
}


@media screen and (max-width: 1200px) {
  #hamburger {
    display: inline-block;
  }

  #menu-items {
    display: none;
    position: fixed;
    background-color: white;
    width: 100%;
    padding: 40px 10vw;
    top: 100px;
    left: 0;
  }

  #menu-items li {
    display: block;
    text-align: left;
    font-size: 30px;
    line-height: 40px;
    padding-left: 0;
  }


}
