.sfw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 8px solid var(--sfw-red-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
}

.sfw-logo img {
  height: 58px !important;
  max-height: 58px !important;
  width: auto !important;
}

.sfw-nav {
  display: flex;
  gap: 34px;
}

.sfw-nav a {
  color: var(--sfw-white);
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.sfw-nav a:hover {
  opacity: .75;
}

@media (max-width: 768px) {
  .sfw-header {
    height: 70px;
    padding: 0 18px;
  }

  .sfw-logo img {
    height: 54px !important;
  }

  .sfw-nav {
    gap: 18px;
  }

  .sfw-nav a {
    font-size: 12px;
  }
}