﻿.secondary-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #e5ecef;
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}

.secondary-nav-wrapper.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.secondary-nav__frame {
  display: flex;
  gap: 1.875rem;
  padding: 1rem 0.9375rem;
  align-items: center;
  text-wrap-mode: nowrap;
  margin: 0 auto;
  max-width: 77.5rem;
  width: 100%;
}

.secondary-nav__navitem {
  font-weight: 600;
  color: #003b5c;
  transition: transform .2s;
  text-decoration: none !important;
}

.secondary-nav__navitem:hover {
  transform: scale(1.1);
  border-bottom: none;
}

.secondary-nav__navbutton {
  background-color: #009639;
  border-radius: 0.325rem;
  padding: 1rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-bottom: none !important;
  text-decoration: none !important;
}

.secondary-nav__navbutton:hover {
  border-bottom: 0;
  background-color: #009E58;
}