/* hamburger */






#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  


background-color: #aca457;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  position: fixed;
  top: 1vw; 
  left: 90vw; 
  z-index: 1010;
  box-shadow: 0 1rem 3rem black;
  text-align: center; 
  cursor: pointer;


}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
top: 40px;
z-index: 1005;
  position: absolute;
  width: 70%;
  left:15%;
  height: 4px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
z-index: 1001;

  top: 35;
  left: -100%;
  width: 90%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: 'Arial', sans-serif;
  font-size: 1.5vw;
  font-weight: 300;
  text-decoration: none;
  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC; color: #333;

}


		


		