.ni-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid rgba(87,87,86,.08);
  box-shadow: 0 1px 10px rgba(0,0,0,.025);
}
.ni-header-inner {
  max-width: var(--ni-max);
  min-height: var(--ni-header-h);
  margin: 0 auto;
  padding: 10px 30px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.ni-header-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.ni-header-logo:hover,
.ni-header-logo:focus {
  opacity: .92;
  transform: translateY(-1px);
}
.ni-header-logo img {
  width: 118px;
  height: auto;
  display: block;
}
.ni-main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ni-main-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
}
.ni-main-nav a {
  position: relative;
  display: inline-block;
  font-family: Oswald, Impact, sans-serif;
  font-weight: 600;
  font-size: 15.2px;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: var(--ni-red);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 0;
}
.ni-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--ni-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.ni-main-nav a:hover::after,
.ni-main-nav a:focus::after {
  transform: scaleX(1);
}
