ul.menu {
  padding: 0;
  list-style: none;
  width: 100%;
  margin: 20px auto;
  font-family: 'Century Gothic';
  /* box-shadow: 0px 0px 25px #00000070; */
  clear: both;
  display: table;
}
ul.menu .list {
  font-size: 14px;
  border-bottom: 1px solid #313131;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 50px;
  vertical-align: sub;
  background: #292929;
  clear: both;
}

ul.menu .list:before {
  content:'';
  position: absolute;
  left: 3px;
  top: 20px;
  padding: 0px 5px;
  color: #fff;
  transform: rotate(0deg);
  transition: .3s transform;
}
ul.menu .list p{
  text-decoration: none;
  color: #fff;
  padding: 17px 0px 17px 30px;
  display: block;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  /* line-height: 20px; */
  cursor: pointer;
}
ul.menu .list p:hover {
  background-color: #292929;
  transition: 300ms all;
  color: #fff;
  cursor: pointer;
}
ul.menu .list .items {
  height: 0px;
  overflow: hidden;
}

ul.menu .list:last-child {
  border-bottom: none;
}
/* \f078 */
ul.menu .active:before {
  content: '';
  font-family: FontAwesome;
  position: absolute;
  left: -11px;
  top: 26px;
  padding: 0px 5px;
  color: #fff;
  transform: rotate(90deg);
  transition: .3s transform;
}
ul.menu .active > .items {
  display: block;
  background: #292929;
  padding: 0px 0px 10px 0px;
  height: auto;
  color: #fff;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 200ms;
  clear: both;
  float: left;
  width: 100%;
}
ul.menu .active > .items li {
  padding: 15px 20px 15px 40px;
  border-bottom: 1px solid #313131;
  list-style: none;
  font-size: 16px;
}
ul.menu .active > .items li:last-child {
  border-color: transparent;
  padding-bottom: 0px;
}
ul.menu .active > .items .active > .items {
  background-color: #292929;
}
ul.menu .active > a {
  color: #46efa4;
  text-transform: uppercase;
  font-weight: bold;
}
ul.menu .active .list {
  background: #292929;
}
ul.menu .active .list a {
  padding: 17px 0px 17px 45px;
}