.hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger .line {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 850px) {

  .hamburger {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 82px;
    left: 0;

    width: 100%;

    display: none;
    flex-direction: column;

    background: rgba(248, 245, 239, 0.99);

    padding: 15px 6% 25px;

    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-medium);

    z-index: 1000;
  }

  .navbar.active {
    display: flex;
  }
}