.nav-container {
  height: 98px;
  background: #fff;
  box-shadow: 0px 6px 20px 0px rgba(0,167,229,0.08);
}
.nav-container .container {
  height: 100%;
}
.nav-content {
  height: 100%;
}
.nav-item {
  margin-right: 60px;
  padding-bottom: 10px;
  cursor: pointer;
}
.nav-item.active {
  color: #00a7e5;
  border-bottom: 2px solid #00a7e5;
}
.logo {
  margin-right: 70px;
}
.mobile-logo {
  display: none;
}
@media screen and (max-width: 992px) {
  .nav-container {
    height: 60px;
  }
  .logo {
    margin-right: 20px;
    height: 50px;
    display: none;
  }
  .mobile-logo {
    display: block;
    height: 50px;
    margin-right: 20px;
  }
  .nav-item:not(:last-of-type) {
    margin-right: 1rem;
  }
  .nav-item:last-of-type {
    margin-right: 0;
  }
  .dropdown-menu {
    font-size: 12px;
  }
}