
/** DROPDOWN **/


  
  
.dropdown {
  display: none;
  position: fixed;
  top: 55px;
  z-index: 199;
  min-width: 10em;
  text-align: left;
  margin-left: unset;
}

.dropdown li {
  display: block;
  height: 55px;
  line-height: 38px;
}

.dropdown li a {
  display: block;
  padding: 0 1em;
  background: ;
  color: ;
}

.dropdown li a:hover {
  background: ;
}

li:hover .dropdown {
  display: block;
}
.nav-mobile{
  display: none;
}



@media screen and (max-width: 751px){
  
a.nav-mobile-link {
  background-color: #333333;
  color: #FEFD9C;
  font-family: "Function Pro Demi", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

  
  .nav-desktop{
    display: none;
  }
  
  .nav-mobile{
  display: block;
}

  .dropdown-mobile {
    display: none;
    position: fixed;
    top: 55px;
    z-index: 199;
    min-width: 10em;
    text-align: left;
    margin-left: unset;
  }
  
  .dropdown-mobile li {
    display: block;
    height: 55px;
    line-height: 38px;
  }
  
  .dropdown-mobile li a {
    display: block;
    padding: 0 1em;
    background: ;
    color: ;
  }
  
  .dropdown-mobile li a:hover {
    background: ;
  }
  
  li:hover .dropdown {
    display: block;
  }
  
  
  

}