.buttoneffect {
	 border-radius: 5px;
	 border: 1px solid #ffec64;
	 background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%); 
	 background-color:#ffec64;
	 text-align: center;
	 display: inline-block;
	 position: relative;
	 text-decoration: none;
	 color: black;
	 font-size: 17px;
	 line-height: normal;
	 padding:9px 15px;
	 overflow: hidden;
	 transition: all 0.2s linear 0s;
	 cursor:pointer;
}
 .buttoneffect:before {
	 content: "\00bb";
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: absolute;
	 top: 0;
	 left: 0px;
	 height: 100%;
	 width: 30px;
	 background-color: rgba(255, 255, 255, 0.3);
	 border-radius: 0 50% 50% 0;
	 transform: scale(0, 1);
	 transform-origin: left center;
	 transition: all 0.2s linear 0s;
}
 .buttoneffect:hover {
	 text-indent: 30px;
}
 .buttoneffect:hover:before {
	 transform: scale(1, 1);
	 text-indent: 0;
}
.buttoneffect:after {
  content: "";
  background: #90EE90;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px!important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}

.buttoneffect:active:after {
  padding:9px 15px;
  margin: 0;
  opacity: 1;
  transition: 0s
}

/* Hamburger */
.hamburger1 {
  height: 45px;
  margin: 10px;
  display: -ms-grid;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-items: left;
  z-index: 121;
  margin-right:20px;
  position:fixed;
}

.hamburger1 div {
  background-color: rgb(61, 61, 61);
  position: relative;
  width: 40px;
  height: 5px;
  margin-top: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle1 {
  display: none;
}

#toggle1:checked + .hamburger1 .top {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 22.5px;
}

#toggle1:checked + .hamburger1 .meat {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
}

#toggle1:checked + .hamburger1 .bottom {
  -webkit-transform: scale(0);
          transform: scale(0);
}

#toggle1:checked ~ .menu1 {
  height: 100%;
}


/* Menu */
.menu1 {
  position:fixed;
  background-color: #f4f1ea;
  box-shadow: 0px 0px 80px 10px #979797;
  margin: 0;
  display: -ms-grid;
  display: grid;
  padding: 0px;
  align-content: center;
  list-style: none;
  clear: both;
  width: auto;
  text-align: left;
  height: 0px;
  overflow: hidden;
  transition: height .4s ease;
  z-index: 120;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link1 {
 padding-right:20px;
 padding-left:20px;
}

.link1:hover {
  background-color: #fff;
  color: rgb(61, 61, 61);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}