body {
  margin: 0;
}

#wrapper {
	min-height: calc(100vh);
}

.burger div{
  width: 25px;
  height: 4px;
  background-color: #fff;
  margin: 5px;
  border-radius: 2px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
  font-family: sans-serif;
  z-index: 100;
}

li {
  float: left;
  width: 16.6%;
}

li a{
  display: block;
  color: white;
  text-align: center;
  padding: 15px 16px;
  text-decoration: none;
}

li a:hover:not(.logo) {
  color: #aaa;
}

.logo {
  float: left;
  padding: 3px 0px 8px 16px;
  margin: 0;
  height: 35px;
}

.logo img {
  padding-left: 0px;
}

.icon {
  display: none;
  padding: 7px;
}

footer {
	position:relative;
	display:table-cell;
	vertical-align:middle;
	width: 100vw;
	background-color: #333;
	text-align:center;
  font-weight: lighter;
  color: #fff;
  font-family: sans-serif;
}

footer a{
  color: #fff;
  text-decoration: none;
  margin-top: 30px;
}

footer a:hover{
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .res {
    display: none;
  }

  .icon {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
  }
}

@media screen and (max-width: 900px) {
  ul li.responsive {
    position: relative;
  }

  .responsive li .icon {
    position: fixed;
    padding: 7px;
  }

  .responsive .res{
    float: none;
    display: block;
    text-align: left;
    width: 20%;
  }

  .responsive li .logo{
    padding-bottom: 16px;
  }

}
