.smenu_wrap {
  display: none;
  height: auto;

  animation: load_bg 1.2s both;
}
.smenu_wrap ul {
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
}
.smenu_wrap.amazing_menu ul {
}
.smenu_wrap ul li {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  margin-right: 32px;
}

.smenu_wrap ul li:last-child {
  margin: 0;
}
.smenu_wrap ul li a {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: 0.3s;

  opacity: 0.8;
  position: relative;
}
.smenu_wrap ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  transition: 0.3s;
  width: 0;
  height: 5px;
  display: block;
  background: #003e2f;
}
.smenu_wrap ul li a:hover::before {
  width: 100%;
}
.smenu_wrap ul li a:hover {
  opacity: 1;
}

.smenu_wrap ul li a.smtab_on {
  opacity: 1;
  font-weight: 700;
}
.smenu_wrap ul li a.smtab_on::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  display: block;
  background: #003e2f;
}
