.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container .item .link {
  color: #2a2a2a;
  font-weight: 700;
  cursor: pointer;
  font-family: "Alata", Roboto, Arial, sans-serif;
  letter-spacing: 0.5px;
}

.nav-container .level-1-item {
  padding: 1em 2em;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-container .level-1:not(:last-child) .level-1-item:after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffb606;
}

.nav-container .level-1-item:hover + .submenu,
.nav-container .submenu:hover {
  display: block;
  position: absolute;
  z-index: 999;
  background-color: #fff;
}

.nav-container .submenu {
  display: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  left: 0;
  border: 1px solid #5a5a5a1f;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 100px;
}

.nav-container .submenu .flex-submenu {
  display: flex;
  justify-content: center;
}

.nav-container .level-2 .divider {
  width: 180px;
  height: 1px;
  background: #ffb606;
  margin-bottom: 10px;
}

.nav-container .submenu .level-3 {
  display: flex;
  flex-direction: column;
}

.nav-container .submenu .level-3-item:before {
  content: "\00BB";
  margin-right: 5px;
  color: #ffb606;
  font-weight: 100;
}
