 /* Submenu MA FEEF */
.menu-moment {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: #f1f1f1;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 20px;
}
.menu-moment ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.menu-moment ul li a,
.menu-moment ul li a h3 {
  font-family: Antonio;
  line-height: 25px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 4px 8px;
}
.menu-moment ul li a h3 {
  color: #ffffff;
  background-color: #f36f21;
  text-transform: uppercase;
}
.menu-moment ul li a {
  color: #004071;
  text-decoration: none;
}
.menu-moment ul li:first-child a{
  padding: 0;
}
.menu-moment ul li a:hover {
  color: #f36f21;
}
.menu-moment h3::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  height: 17px;
  width: 17px;
  background-image: url("../../img/icons/icon-check-circle.png");
  background-size: 100%;
}
@media (max-width: 670px) {
  .menu-moment h3 {
    display: block;
    width: 100%;
    text-align: center;
  }
  .menu-moment ul {
    width: 100%;
    text-align: center;
  }
  .menu-moment ul li {
    padding-left: 0;
    text-align: start;
  }
  .menu-moment ul li a{
    color: #00B0CF;
  }
  .menu-moment ul li:first-child{
    width: 100%;
    text-align: center;
    background-color: #f36f21;
  }
}