header {
  background-color: #000;
}

.header-content {
  display: flex;
  justify-content: space-between;
}

.header-logo, .header-menus {
  padding: 0 10px;
}

.header-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-logo a {
  color: #fff;
}

.header-logo-link:hover, .header-menu-links a:hover {
  text-decoration: none;
  color: #fff;
}

.header-menus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-menu-links {
  display: flex;

}

.header-menu-links a {
  padding: 0 20px;
  display: block;
  color: #fff;
  text-decoration: none;
}



.header-menu-reserve {
  border-right: 1px solid gray;
}

.hamburger-btn {
  position: relative;
  cursor: pointer;
  height: 50px;
  width: 50px;
}

.hamburger-btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #fff;
}

.hamburger-btn span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}

.hamburger-btn span:nth-of-type(2) {
  top: 29px;
  width: 50%;
}

@media screen and (max-width: 520px) {
  .header-menu-links {
    display: none;
  }
}