@import url(https://fonts.googleapis.com/css?family=Open+Sans|Oleo+Script);
.fadeInDown {
  opacity: 1 !important;
  transform: translateY(40px) !important;
}

.menu-btn {
  position: absolute;
  top: 70px;
  right: 20px;
  padding: 10px 20px;
  border: 1px solid transparent;
  /* To avoid icon movement on hover */
  font-size: 35px;
  font-weight: 300;
  user-select: none;
  transition: border-color 0.3s;
  transform: translateY(-50%);
}
.menu-btn i {
  margin-left: 10px;
}
.menu-btn:hover {
  cursor: pointer;
  border-color: transparent;
}

#menu__panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  z-index: 9999;
  background-color: #d4e694;
  box-shadow: -2px 2px 20px rgba(0, 0, 0, 0);
  user-select: none;
  transform: translateX(300px);
  transition: transform 0.5s;
}

.menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  top: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  width: 100%;
  height: 60px;
  opacity: 0;
  transform: translateY(0);
  transition: all 0.3s;
}
.menu-item:hover {
  background-color: #3e7e25;
}
.menu-item i {
  margin: 0 10px;
}
.menu-item a {
  display: inline-block;
  width: 100%;
  height: 70px;
  padding-left: 50px;
  line-height: 70px;
  font-size: 20px;
}

.menu-item a:hover {
  color: #fff;
}

.menu__close {
  color: #000;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  transition: transform 0.5s;
}
.menu__close:hover {
  cursor: pointer;
}


/* Menú scroll */
@import url(https://fonts.googleapis.com/css?family=Open+Sans|Oleo+Script);
.fadeInDownTwo {
  opacity: 1 !important;
  transform: translateY(40px) !important;
}

.menu-btnTwo {
  position: absolute;
  top: 70px;
  right: 20px;
  padding: 10px 20px;
  border: 1px solid transparent;
  /* To avoid icon movement on hover */
  font-size: 35px;
  font-weight: 300;
  user-select: none;
  transition: border-color 0.3s;
  transform: translateY(-50%);
}
.menu-btnTwo i {
  margin-left: 10px;
}
.menu-btnTwo:hover {
  cursor: pointer;
  border-color: transparent;
}

#menu__panelTwo {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  z-index: 9999;
  background-color: #d4e694;
  box-shadow: -2px 2px 20px rgba(0, 0, 0, 0);
  user-select: none;
  transform: translateX(300px);
  transition: transform 0.5s;
}

.menuTwo {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  top: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-itemTwo {
  width: 100%;
  height: 60px;
  opacity: 0;
  transform: translateY(0);
  transition: all 0.3s;
}
.menu-itemTwo:hover {
  background-color: #3e7e25;
}
.menu-itemTwo i {
  margin: 0 10px;
}
.menu-itemTwo a {
  display: inline-block;
  width: 100%;
  height: 70px;
  padding-left: 50px;
  line-height: 70px;
  font-size: 20px;  
}

.menu-itemTwo a:hover {
  color: #fff;
}

.menu__closeTwo {
  color: #000;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  transition: transform 0.5s;
}
.menu__closeTwo:hover {
  cursor: pointer;
}

