@charset "UTF-8";
/* CSS Document */
@media only screen and (min-width: 1440px) {
  nav.desktop ul li .item {
    font-size: 18px;
  }
  
  nav.desktop ul li .sub-menu {
    font-size: 17px;
  }
  
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  
  nav.desktop {
    margin: 0 auto;
    font-family: 'Rounded Mplus 1c Black', sans-serif;
    display: none
  }
  nav.mobile {
    margin: 0 auto;
    font-family: 'Rounded Mplus 1c Black', sans-serif;
    display: block;
    z-index: 999999
  }
  
}
@media only screen and (max-width: 768px) and (min-width: 300px) {
 
  nav.desktop {
    margin: 0 auto;
    font-family: 'Rounded Mplus 1c Black', sans-serif;
    display: none
  }
  nav.mobile {
    margin: 0 auto;
    font-family: 'Rounded Mplus 1c Black', sans-serif;
    display: block;
    z-index: 999999
  }
  
}