header {
  max-width: 1200px;
  margin: auto;
  padding-left: calc(64px / 2);
  padding-right: calc(64px / 2);
}

.start {
  justify-content: flex-start;
}

.logo {
  width: 210px;
}

.logo a {
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;  
}

.logo a:hover {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.logo img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-min {
  list-style: none;
}

.nav-min a {
	font-size: .9em;
	font-weight: 400;
	display: block;
	padding: 10px 0px 10px 5px;
	color: #444;
	line-height: 1.4em;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	list-style: none;
	border-bottom: .5px solid rgba(51,51,51,0.1);
}

.nav-min a:hover { 
	color: #FFF;
	text-decoration: none;
	background-color: rgba(255,204,0,0.9);
	
	/*transition*/
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	
	/* rounded corner */
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
  padding: 8px;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  padding: 10px;
}

.nav-list a:hover {
  background-color: rgba(255,204,0,0.9);
  transition: all 0.9s;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  #pagewrap {
    overflow-x: hidden;
  }

  .nav-list {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #23232e;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

  .nav-list li {
    margin-left: 0;
    margin-bottom: 24px;
    opacity: 0;
  }

  .mobile-menu {
    display: block;
    z-index: 1;
  }
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}