* {
  padding: 0;
  margin: 0;
}

.nav-wrapper {
  width: 100%;
  height: auto;
  overflow-x: unset;
}

.nav-wrapper>.bc {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.nav-content {
  width: 60%;
    height: 20%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 5px;
    display: flex;
    justify-content: space-between;
    background-image: url('../img/nav-topLine.png'),url('../img/nav-bottomLine.png');
    background-repeat: no-repeat;
    background-position: 0 0,0 48px;
    background-size: 100%;
}

.nav-content>li {
  list-style: none;
  padding: 0 0.5%;
  line-height: 60px;
}

.nav-content>li>a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.nav-content>li>a:hover {
  color: rgb(253, 5, 5);
}

.nav-content>li>a:hover +.nav-content>li {
    border-radius: 5px;
    background:#fff;
}

.nav-content>li> .active{
  color: rgb(253, 5, 5);
}