/* Nav bar */

.navbar {
    overflow: hidden;
    background-color: #084C61;
    /* Problems with the dropdown*/
    /*position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;*/
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a, .navbar div {
  border-radius: 10px;
  margin: 4px;
} 
/*
.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    border-radius: 10px;
    background-color: #1E667C;
}

.navbar > a.active {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background-color: #165E73;
}*/

.navbar a.logo  {
  margin-right: -12px;
  padding: 9px 10px 4px 16px;
}

/* https://codepen.io/sosuke/pen/Pjoqqp */
.logo-image {
  width: 30px;
  height: 100%;  
  /*orange*/
  /*filter: invert(82%) sepia(52%) saturate(6045%) hue-rotate(11deg) brightness(114%) contrast(112%);*/
  /*white*/
  filter: invert(96%) sepia(0%) saturate(0%) hue-rotate(151deg) brightness(105%) contrast(104%);
}

/* Drop-down */

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}