/* Avobe above then 768px
  ===================================================================*/
@media only screen and (min-width: 767px) {
}
/*lg= Large devices (large desktops, 1200px and up) 
    ==================================================================*/
@media (min-width: 1200px) {
}

/*md= Medium devices (desktops, 992px and up) 
    ===================================================================*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
/*sm= Small devices (tablets, 768px and up) 
    ===================================================================*/
@media only screen and (max-width: 991px) {
}
/*xs= Extra small devices (phones, less than 768px) 
    ===================================================================*/
@media only screen and (max-width: 767px) {
  .main-menu [id*="menu-main-menu"] {
    display: block;
  }
}

@media only screen and (max-width: 576px) {
}
