#menu,
#menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu {
  width: 100%;
  margin: 15px 0px 0px 0px;
 /* border: 1px solid #107677;
  background: #111;
  background: linear-gradient(#1ebdbe, #107677);
  border-radius: 6px;
  box-shadow: 0 2px 2px #ccc;*/
}
ul > li:hover > a, #nav > ul:not( :hover ) > li.active > a {
background-color: #edecec;
}
#menu:before,
#menu:after {
  content: "";
  display: block;
}

#menu:after { clear: both; }

#menu li {
  float: left;
  position: relative;
  z-index:99999;
}

#menu a {
  float: left;
  padding:10px 9px;
  color: #474337;
  text-decoration: none;
  font-size:20px;
  font-weight: 700;
  font-family: Calibri;
}
#menu ul {
  margin: 20px 0 0 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 1;
  background: linear-gradient(#EDECEC, #EDECEC);
  box-shadow: 0 -1px 0 rgba(255,255,255,.3);
  border-radius: 3px;
  transition: all .2s ease-in-out;
}

#menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
}

#menu ul ul {
  top: 0;
  left: 220px;
  margin: 0 0 0 20px;
  box-shadow: 0 -1px 0 rgba(255,255,255,.3);
}

#menu ul a {
  padding: 10px;
  width: 230px;
  display: block;
  white-space: nowrap;
  float: none;
  text-transform: none;
}

#menu ul a:hover { background: linear-gradient(#FC6401, #FC6401); color:#fff;}

#menu ul li:first-child > a:after {
  content: '';
  position: absolute;
  left: 40px;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #EDECEC;
}

#menu ul ul li:first-child > a:after {
  left: -6px;
  top: 50%;
  margin-top: -6px;
  border-left: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid #107677;
  border-bottom: 6px solid transparent;
}

#menu-trigger { /* Hide Initially */ display: none; }

#menu span:after {
width: 0;
height: 0;
border: 0.313em solid transparent; /* 5 */
border-bottom: none;
border-top-color: #02918D;
content: '';
vertical-align: middle;
display: inline-block;
position: relative;
right: -0.313em; /* 5 */
}

 @media(max-width: 700px) {

#menu-wrap { position: relative; }

#menu-wrap * { box-sizing: border-box; }

#menu-trigger {
  width:60px;
  display: block;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  padding: 0 0 0 0px;/*35px*/
  border: 1px solid #107677;
  color: #fff;
  font-weight: bold;
  background-color: #111;
  border-radius: 6px;
}

#menu {
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 99999;
  display: none;
  box-shadow: none;
  background-color:#EDECEC;
  padding:10px 10px 10px 20px;
}

#menu:after {
  content: '';
  position: absolute;
  left: 25px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #107677;
}

#menu ul {
  position: static;
  visibility: visible;
  opacity: 1;
  margin: 0;
  background: none;
  box-shadow: none;
  background-color:#EDECEC;
  
}

#menu ul ul {
  margin: 0 0 0 20px;
  box-shadow: none;
}

#menu li {
  position: static;
  display: block;
  float: none;
  border: 0;
  margin: 0px;
  box-shadow: none;
  background: none !important;
  padding-bottom:10px;
}

#menu ul li {
  margin-left: 20px;
  box-shadow: none;
}

#menu a {
  display: block;
  float: none;
  padding: 0;
  color: #000;
  background-color:#EDECEC;
  text-align:left;
}

#menu a:hover { color: #fafafa; }

#menu ul a {
  padding: 0;
  width: auto;
}

#menu ul a { background: none !important;color:#000; }
}