/*************** MENU ***************/
.hamburger {
	position: absolute;
	width: 50px;
	height: 45px;
	top: 30px;
	right: 40px;
	z-index: 5;
    cursor: default;
}

.hamburger div {
  position: relative;
  width: 50px;
  height: 5px;
  background-color: #fff;
  margin-top: 7px;
  transition: all 0.3s ease-in-out;
}

#toggle {
  display: none;
    cursor: default;
}

#toggle:checked + .hamburger .top {
  transform: rotate(-45deg);
  margin-top: 22.5px;
}
#toggle:checked + .hamburger .mid {
  transform: rotate(45deg);
  margin-top: -5px;
}
#toggle:checked + .hamburger .bottom {
  transform: scale(0);
}
#toggle:checked + .hamburger + .nav {
  top: 0;
}

.nav {
  position: fixed;
  z-index: 4;
  width: 100%;
  height: auto;
  background-color: #ccc;
  top: -130%;
  transition: all 0.3s ease-in-out;
  
}

.nav .nav-wrapper {
  position: relative;
  overflow-y: auto;
  height: 100%;
}

nav {
  height: 100vh;
  width: 100%;
  text-align: center;
  padding-top: 50px;
  border-bottom: thin solid #333;

}

nav a {
  margin-top: 500px;
  color: #012639;
  opacity: 0;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 150%;
  font-weight: 800;
  transition: all 0.1s ease;
  cursor: default;
  width: 100%;
  line-height: .6; 
}

nav a:first-child {
  margin-top: 0;
}

#toggle:checked + .hamburger + .nav .nav-wrapper nav a {
  opacity: 0.9;
  transform: scale(1);
}
#toggle:checked + .hamburger + .nav .nav-wrapper nav a:hover {
  opacity: 1;
  color: white;
  transform: scale(1.2);
}

/******************** MOBILE ********************/
@media screen and (max-width: 768px) {
.hamburger {
	top: 8px;
	right: 20px;
}

nav a {
  font-size: 125%; 
}
	
nav {
  padding-top: 0;
}