#header{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: transparent;
  transition: var(--teeitup--transition--normal);

  & > .container-fluid{
    max-width: none;
  }
}

#header-nav{
  justify-content: flex-end;

  & .nav-item{
    & .nav-link{
      white-space: nowrap;
      color: #fff;
      font-family: var(--teeitup--font-family);
      font-weight: 600;
      font-size: var(--teeitup--font-size--normal);
    }

    &.active .nav-link,
    &.current-menu-item .nav-link,
    & .nav-link:hover,
    & .nav-link:focus,
    & .nav-link.active{
      color: var(--teeitup--color--red);
      text-decoration: none;
    }
  }

  & .dropdown-menu{
    & .dropdown-item{
      color: var(--teeitup--color--midnight-blue);
      font-weight: 600;
      font-family: var(--teeitup--font-family);
      font-size: var(--teeitup--font-size--normal);
    }

    & .nav-item.active,
    & .dropdown-item.active,
    & .dropdown-item:hover,
    & .dropdown-item:focus,
    & .dropdown-item:active{
      color: var(--teeitup--color--red);
      text-decoration: none;
    }
  }
}

.navbar-toggler{
  &:focus,
  &:focus:not(:focus-visible){
    outline: none;
    box-shadow: none;
  }

  & .icon-bars{
    height: 20px;
    width: 30px;
    fill: #fff;
  }
}

#header.header-scrolled{
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
              rgba(0, 0, 0, 0) 0px 0px 0px 0px, 
              rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, 
              rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;

  & #header-nav .nav-item{
    & .nav-link{
      color: var(--teeitup--color--midnight-blue);
    }

    &.active .nav-link,
    &.current-menu-item .nav-link,
    & .nav-link:hover,
    & .nav-link:focus,
    & .nav-link.active{
      color: var(--teeitup--color--red);
      text-decoration: none;
    }
  }
}

@media (min-width: 992px){
  #header{
    position: fixed;
  }

  .header-cta{
    margin-left: 25px;
  }
}

@media (max-width: 991px){
  #header-nav{
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: -.5rem;

    & .navbar-nav{
      padding-top: 40px;
    }

    & .header-cta{
      margin-bottom: 40px;
      margin-top: 25px;
    }

    & .nav-item .nav-link{
      color: var(--teeitup--color--midnight-blue);
    }
  }
}