.nav-box {
  width: 100%;
  z-index: 3;
}

.nav-header {
  padding: 2rem 1rem;
  animation: translateYneg 400ms;
  position: relative;
  width: 100%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.171);
  background-color: white;
}

.breadcrumbs {
  padding: 2rem 1rem;
  font-size: 16px;
  z-index: 3;
  animation: translateXpos 500ms;
  background-color: var(--color-primary);
}

.breadcrumbs-link {
  font-family: var(--font-heading-secondary), sans-serif;
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 200ms;
  color: white !important;
}

.breadcrumbs-link:hover {
  color: var(--color-secondary) !important;
  transition: 200ms;
}

.breadcrumb-icon {
  color: white;
  padding: 0px 5px;
}

.breadcrumb-current-page {
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-heading-secondary), sans-serif;
  color: white;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: translateYneg 400ms;
}

/* Dropdown */
.nav-header-list-lg .dropdown {
  position: relative;
}

.nav-header-list-lg .dropdown-menu {
  display: none;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  padding: 20px 0;
  list-style: none;
  width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 3px;
}

.nav-header-list-lg .dropdown:hover .dropdown-menu {
  display: flex;
}

/* NAV HEADER LINK LG SERVICES */

.nav-header-link-lg-services {
  text-decoration: none;
  font-family: var(--font-buttons), sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 5px 10px;
  z-index: 1;
  word-spacing: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.nav-header-link-lg-services:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

/* NAV HEADER LIST LG */
.nav-header-list-lg {
  list-style-type: none;
  gap: 1.6rem;
  position: relative;
}

.nav-header-link-lg {
  text-decoration: none;
  font-family: var(--font-buttons), sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 5px 10px;
  z-index: 1;
  word-spacing: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-dark-light);
}

.nav-header-link-lg::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: var(--color-primary);
  z-index: -1;
  border-radius: 2px;
}

.nav-header-link-lg:hover,
.nav-header-link-lg:active {
  transition: 250ms ease-out;
  color: white !important;
}

.nav-header-link-lg:hover::before {
  width: 100%;
  height: 100%;
  transition: 200ms ease-in;
}

.nav-mobile-box {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;
  flex-direction: column;
  gap: 2rem;
  top: 0;
  right: 0;
  z-index: 5;
  animation: translateXpos 200ms;
  background-color: var(--color-primary);
  justify-content: center;
  align-items: center;
}

.nav-header-list-sm {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-header-link-sm {
  text-transform: uppercase;
  font-family: var(--font-buttons), sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

/* FOOTER NAV */

.nav-footer-list {
  list-style-type: none;
}

.nav-footer-list li {
  margin-bottom: 5px;
}

.nav-footer-link {
  text-decoration: none;
  font-size: 18px;
  color: var(--color-primary);
}
