.sus-nav.fixed {
  position: fixed;
  top: 0;
  z-index: 2;
}
.sus-nav {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(0,0,0,.1);
}
.sus-nav ul {
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.sus-nav li {
  margin-right: 80px;
  display: flex;
  align-items: stretch;
}
.sus-nav li a {
  padding: 25px 0;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: normal;
  color: #3A3A3A;
  line-height: 1.5;
  text-decoration: none;
}
.sus-nav .active {
  font-weight: bold;
  pointer-events: none;
}
.sus-nav a.underline-hover-effect {
  text-decoration: none;
  color: inherit;
  position: relative;
}
.sus-nav .underline-hover-effect:hover {
  color: #000;
}
.sus-nav .underline-hover-effect::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.8px;
  background-color: rgb(0, 63, 101);
  transition: width 0.25s ease-out;
}
.sus-nav .underline-hover-effect:hover::before,
.sus-nav .active::before {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .sus-nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .sus-nav li {
    margin-right: 0;
  }
  .sus-nav li a {
    padding: 10px 2px;
    font-size: 14px;
  }
}
