/* Custom CSS write here */

/* Desktop */
@media only screen and (min-width: 768px) {
  /* .desktop-header {
    display: none;
  } */
  .header-mobile {
    display: none!important;
  }
}
/* Mobile */
@media only screen and (max-width: 768px) {
    .desktop-header {
        display: none !important;
    }
  #header + .hero-banner {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .header-mobile {
    display: block;
  }
  #mobile-menu {
    padding-top: 5px;
  }
  #mobile-menu .col img {
    width: 25px;
    margin-bottom: 5px;
  }
  #mobile-menu li a {
    font-size: 14px;
  }
}
