/* ----------------------------------
   NAVBAR
---------------------------------- */

nav.navbar {
  --bs-navbar-color: var(--grey);
  --bs-navbar-hover-color: var(--grey);
  --bs-navbar-active-color: var(--grey);
  --bs-navbar-brand-color: var(--grey);
}


#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
}

.sky-pos-logo {
  width: 113px;
  height: 60px;
}

.navbar {
  height: 124px;
}

.navbar .navbar-collapse {
  background-color: var(--white) !important;
}

.navbar-nav {
  gap: 2.5rem;
}

.navbar-expand-lg .navbar-nav .nav-link{
  padding-left:0;
  padding-right:0;
}

.navbar-nav .nav-item a {
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing:.1em;
}

.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding-top:0;
  padding-bottom:.625rem
}

.nav-link {
  position: relative;
  text-decoration: none;
}


.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--accent);
  
  /* Start with 0 width for the animation */
  width: 0%;
  transition: width 0.3s ease-in-out;
}

/* On hover/active, grow to 100% of the NEW (smaller) element width */
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}



.custom-toggler-icon {
  width: 56px;
  height: 40px;
}

.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
  }

  .navbar .sky-pos-logo {
    width: 90px;
    height: 45px;
  }

  header .content {
    padding: 0 16px;
  }
  
}
@media (max-width: 1440px) {
  .sky-pos-logo {
    width: 100px;
    height: 50px;
  }

  .navbar {
    height: auto;
  }

  .navbar-nav .nav-item a {
    font-size: var(--fs-sm);
  }
}

@media(max-width:990px){
  .navbar-expand-lg .navbar-nav .nav-link{
    width:fit-content;
    margin:auto;
  }
}