.header {
  display: flex;
  height: 80px;
  background: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  height: 80px;
}

.menu-item {
  font-size: 16px;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.menu-item-link {
  padding: 30px;
  color: #898989;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.menu-item-link:hover {
  color: #000000;
}

.menu-logo {
  display: flex;
}

.logo-text {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .hamburger-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    flex-wrap: initial;
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    background: #fff;
    height: 500px;
    z-index: 1;
    justify-content: center;
    box-shadow: -3px 0 11px 13px rgba(0, 0, 0, 0.1);
    width: 320px;
    transform: translateX(-110%);
    transition: transform 0.6s ease;
  }

  .menu-item {
    height: auto;
  }

  .header-container {
    flex-direction: row-reverse;
  }
  .logo-text {
    display: none;
  }
}

.hamburger-icon {
  height: 30px;
  width: 30px;
  z-index: 90;
  position: relative;
}

.menu-control {
  display: none;
}

.menu-control:checked + .menu {
  transform: translateX(0);
}