.hamburger {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  z-index: 999;  
}

.hamburger-item1 {
  background-color: #1a7ea3;
  width: 100%;
  height: 6px;
  margin-bottom: 8px;
}
.hamburger-item2 {
  background-color: #1a7ea3;
  width: 100%;
  height: 6px;
  margin-bottom: 8px;
}

.hamburger-item3 {
  background-color: #1a7ea3;
  width: 100%;
  height: 6px;
  margin-bottom: 8px;
}

.sidebar {
  position: fixed;
  left: 0;
    z-index: 880;
  top: -125%;
  width: 100%;
  height: 100vh;
  padding: 0;
    background-color: #ccc;
	background-image: url("https://osclawyers.co.nz/application/files/9917/8138/6327/maori.jpg");
  transition: top .2s;
  text-align: center;
}

.sidebar ul {
	padding-left: 0;
    /*margin-top: -80px;*/
    text-align: center;
    list-style: none;
}

.hamburger-checkbox:checked ~ .hamburger {
  background-color: transparent;
}

#hamburger-checkbox:checked ~ .sidebar {
  top: 0;
}

#hamburger-checkbox {
  display: none;
}

#menu {
  text-decoration: none;
  font-family: "PT Serif", serif;
  line-height: 2;
	font-weight: 300;
    font-size: 3rem;
	text-align: center;
    color: #000;
    letter-spacing: 1px;
}

#menu:hover {
  color: #1a7ea3;
}

/****************** MOBILE ******************/
@media screen and (max-width: 1024px) {
	.hamburger {
		  top: 50px;
}
	
	.sidebar {
		margin-top: -190px;
}
}

@media screen and (max-width: 768px) {
.hamburger {
  top: 10px;
  right: 10px;
}

#menu {
    font-size: 2rem;
}

.sidebar {
    margin: 0;
}
}
