.parent-menu {
  display: block;
  position: relative;
  float: left;
  line-height: 30px;
  color: #8e8e8e;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  padding: 5px 0px;
}
.parent-menu a {
  text-decoration: none;
  color: #8e8e8e !important;
  font-weight: 700;
  /* padding: inherit; */
  margin-right: 60px;
  margin-left: 10px;
}
.parent-menu:hover > ul {
  display: block;
  position: absolute;
  z-index: 1;
}
.child-menu {
  display: none;
  padding: inherit;
  animation: growDown 0.3s ease-in-out forwards;
  transform-origin: top center;
}
.child-menu li {
  background-color: #fbfbfb;
  line-height: 30px;
  width: 264px;
  padding: inherit;
}
.child-menu li a {
  color: #8e8e8e;
  font-family: Raleway;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  padding: inherit;
  margin-right: 60px;
}
ul {
  list-style: none;
  margin: 0;
  padding: inherit;
  white-space: normal;
}
ul ul ul {
  left: 100%;
  top: 0;
  padding: inherit;
}
li:hover {
  background-color: #fbfbfb;
  color: #000;
}
.child-menu a:hover {
  font-weight: bolder;
}

.parent-menu li:hover {
  background-color: #f1f1f1;
}
.expand {
  font-size: 20px;
  float: right;
  margin-right: 5px;
}
@-moz-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@-o-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
