#Menu {
position: absolute;
z-index: 1000;
font-family: 'Source',arial;
font-weight: normal;
color: white;
float: left;
left: 320px;
top: 65px;
width: calc(100% - 320px);
}

#Menu .navbar-nav {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: 100%;
}

#Menu .nav-item {
position: relative;
margin: 0;
padding: 0;
display: inline-block;
}

#Menu .nav-link {
height: 32px;
padding: 0 15px;
line-height: 32px;
font-size: 14px;
text-decoration: none;
color: white !important;
display: block;
transition: all 0.3s ease;
white-space: nowrap;
}

#Menu .nav-link:hover,
#Menu .nav-link:focus {
background: #65b22e;
color: white !important;
}

#Menu .dropdown {
position: relative;
}

#Menu .dropdown-toggle::after {
margin-left: 0.5em;
vertical-align: middle;
border-top: 0.3em solid white;
border-right: 0.3em solid transparent;
border-left: 0.3em solid transparent;
}

#Menu .dropdown-menu {
position: absolute;
top: 100%;
left: 0;
margin: 0;
padding: 0;
background: #006895;
border: none;
border-radius: 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
min-width: 200px;
z-index: 1001;
display: none;
}

#Menu .dropdown-menu.show {
display: block !important;
}

#Menu .dropdown:hover .dropdown-menu {
display: block;
}

#Menu .dropdown-item {
padding: 8px 15px;
color: white;
font-size: 13px;
line-height: 1.4;
text-decoration: none;
display: block;
white-space: nowrap;
}

#Menu .dropdown-item:hover,
#Menu .dropdown-item:focus {
background: #65b22e;
color: white;
text-decoration: none;
}

#Menu .border-mnu {
border-left: 1px solid rgba(255,255,255,0.2);
}

@media screen and (max-width: 1100px) {
  #Menu {
    left: 300px;
    width: calc(100% - 300px);
  }
  
  #Menu .nav-link {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media screen and (max-width: 900px) {
  #Menu {
    left: 280px;
    width: calc(100% - 280px);
  }
  
  #Menu .nav-link {
    padding: 0 8px;
    font-size: 12px;
  }
}

@media screen and (max-width: 780px) {
  #Menu {
    display: none;
  }
} 