@charset "UTF-8";
/*
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

#nav {
  background-color: #162B49;
  top: 0;
  width: 100%;
  z-index: 5;
 color: #F8F1E0;
  white-space: nowrap;
  justify-content:flex-end; 
}
#nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
#nav li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#nav ul li a {
  color: #F8F1E0;
  transition: all 0.4s;
}
#nav ul li img {
  height: 96px;
  transition: height 0.4s;
}

/* ##################################### */


#nav.fixed {
  position: fixed;
  box-shadow: 5px 5px 19px 0px rgba(0, 0, 0, 0.5);
  z-index: 100;  
}
#nav.fixed ul li img {
  height: 36px;
}
#nav.fixed ul li a {
/*font-size: 14px;*/
  font-size: 1rem;
}

a {
    color: #F8F1E0;
    text-decoration: none;
    background-color: transparent;
}
.nav-link-add {
    color: #F8F1E0;
    display: block;
    padding: 0.5rem 1rem;
}

