/*  */

.home .lm-main-menu {
    background: #000000!important;
    transition-duration: 0.5s;
}
.home .myfixed .lm-main-menu {
    background: #ffffff!important;
    background: rgba(255,255,255,0.9)!important; 
}


.lm-header {
    width: 100%;
}

.lm-header-container {
    list-style: none;
}


.lm-main-menu {
    width: 100%;
    background: #ffffff;
    background: rgba(255,255,255,0.9);
}

/* LOGO */

.lm-logo-wrapper {
    display: inline-block;
    margin-right: 60px;
    padding: 14px 0;
    vertical-align: bottom;
}

.lm-logo img {
    height: 24px!important;
    width: 57px!important;
}

.lm-logo a {
    width: fit-content;
}



ul.lm-menu-list {
    display: inline-block;
    margin-bottom: 0;
}

.lm-main-menu ul li{
    display: inline-block;
    font-size: 0.875rem;
    line-height: 3.75rem;
    color: #464646;

    margin-right: 60px;
}

.lm-main-menu a {
    color: #464646;
}

.lm-main-menu a:hover {
    color: #000000;
}

.lm-secondary-menu {
    width: 100%;
    background: #464646;
    background: rgba(0,0,0,0.8);
}

.lm-secondary-menu ul li{
    display: inline-block;
    font-size: 0.875rem;
    line-height: 3.75rem;
    color: #ffffff;

    margin-right: 60px;
}

.lm-secondary-menu a {
    color: #ffffff;
}

.lm-secondary-menu a:hover {
    color: #cccccc;
}

.lm-menu--selected {
    opacity: 0.5;
}






/* Style the navbar */
#navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  /* Navbar links */
  #navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px;
    text-decoration: none;
  }
  
  /* Page content */
  .content {
    padding: 16px;
  }
  
  /* The sticky class is added to the navbar with JS when it reaches its scroll position */
  .sticky {
    position: fixed;
    top: 0;
    width: 100%
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }