.bottom {position:relative;}
.products {cursor:pointer}


.megamenu {
  background:#fff;
  position:absolute;
  width:100%;
  visibility: visible; 
  opacity: 0;
  top: 100%;
  left: 0;
  transform: translateY(-2em);
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  -webkit-box-shadow: 0px 7px 23px -8px rgba(153,153,153,1);
  -moz-box-shadow: 0px 7px 23px -8px rgba(153,153,153,1);
  box-shadow: 0px 7px 23px -8px rgba(153,153,153,1);
  padding-bottom: 20px;
}
.megamenu.showMainMenu {
  visibility: visible; 
  opacity: 1;
  z-index: 9999;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s; 
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.2s, z-index 0s linear 0.01s;
}
.megamenu.hideMainMenu {
  visibility: visible;
  opacity: 0;
  z-index: 9999;
  transform: translateY(-2em);
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.01s, z-index 0s linear 0.01s, background 0.5s ease-in-out;
}
.megamenu section {
  padding: 30px 30px 10px;
}
.megamenu h2 {
  font-family: 'CircularStd-Bold';
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #5d5d5d;
  letter-spacing: 0.1em;
  padding-bottom:4px;
  border-bottom:1px solid #e5e5e5;
  margin-bottom:15px;
}
.megamenu h2 a {
  text-decoration:none;
  font-weight:normal;
  color:inherit;
  letter-spacing: 0;
  font-size: 16px;
}
.megamenu ul {
  margin:0;
}
.megamenu ul li {
  font-size:15px;
  line-height:24px;
  color:#666;
  list-style: none;
  margin-bottom: 5px;
}
.megamenu ul li a {
  color:inherit;
  text-decoration:none;
}
.megamenu ul li a:hover {
  color:#000;
}