* {
  margin: 0;
  padding: 0;
}

section.menuBar {
  width: 100%;
  height: 100vh;
  background-image: url(human-cover01.jpg);
  background-size: cover;
  background-position: center;
}
section.menuBar ul {
  display: flex;
  background-color: #fff;
  justify-content: center;
  height: 70px;
  list-style-type: none;
}
section.menuBar ul .hiLight {
  width: 120px;
  margin: 0 35px;
  padding: 15px 0;
  text-align: center;
  transition: all 0.3s;
}
section.menuBar ul .hiLight .menu {
  padding: 10px;
  border-radius: 10px;
}
section.menuBar ul .hiLight .menu a {
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}
section.menuBar ul .hiLight .menu-home {
  background-color: #ffa143;
}
section.menuBar ul .hiLight .menu-online {
  background-color: #6d6dcd;
}
section.menuBar ul .hiLight .menu-blog {
  background-color: #df644b;
}
section.menuBar ul .hiLight .menu-contact {
  background-color: #56c1dc;
}
section.menuBar ul .hiLight .menu {
  position: relative;
}
section.menuBar ul .hiLight .menu::after {
  position: absolute;
  content: "";
  bottom: -25px;
  left: 0;
  width: 120px;
  height: 40px;
}
section.menuBar ul .hiLight .menu:hover::after {
  background-color: inherit;
}

section.menuBar ul .hiLight .menu-01 {
  position: relative;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  width: 690px;
  height: 360px;
  z-index: 2;
}
section.menuBar ul .hiLight .menu-01 li {
  width: 165px;
  margin: 0;
  padding: 17px 0;
  background-color: #fff;
  text-align: center;
}
section.menuBar ul .hiLight .menu-01 li p {
  padding: 10px;
  margin: 0 15px;
  border-bottom: 1px dotted steelblue;
}
section.menuBar ul .hiLight .menu-01 li a {
  color: #000;
  transition: 0.2s ease;
  font-size: 1rem;
}
section.menuBar ul .hiLight .menu-01 li a:hover {
  color: rgba(0, 0, 0, 0.6);
}
section.menuBar ul .hiLight .base {
  border: 10px solid #ffa143;
  border-radius: 10px;
}
section.menuBar ul .hiLight .second {
  left: -190px;
  border: 10px solid #6d6dcd;
  border-radius: 10px;
}
section.menuBar ul .hiLight .third {
  left: -380px;
  border: 10px solid #df644b;
  border-radius: 10px;
}
section.menuBar ul .hiLight .fourth {
  left: -570px;
  border: 10px solid #56c1dc;
  border-radius: 10px;
}
section.menuBar ul .hiLight:hover .menu::after {
  background-color: inherit;
}

.menuBar ul .hiLight ul.menu-01 {
  display: none;
}

.menuBar ul .hiLight:hover ul.menu-01 {
  display: flex;
}/*# sourceMappingURL=widenav.css.map */