.navigation{
    z-index: 2;
    position: fixed;
    width: 100%;
}
.navigation .container{
    display: flex;
    align-items: center;
}
.navigation .left{
    width: 50%;
}
.navigation .left a{
    text-decoration: none !important;
}
.navigation .right{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.navigation .logo{
    display: flex;
    align-items: center;
}
.navigation .logo img{
    object-fit: contain;
    margin-left: 2px;
    filter: brightness(0) invert(1);
    min-width: 50px;
    max-width: 200px;
    height: 44px;
}

/* Style for the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}
  
  /* Style the dropdown button */
  .dropbtn {
    background-color: transparent;
    color: white;
    padding: 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .dropbtn span{
    margin-left: 5px;
  }
  
  /* Dropdown content (hidden by default) */
  .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;
    padding: 10px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content div {
    color: black;
    padding: 5px 0px 5px 0px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content div:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  

  