/* Mobile (Small Screens) */
@media (min-width: 320px) and (max-width: 480px) {
  .footer_top{
    display: none;
  }
  .header-menu{
    margin-bottom: 5%;
  }
}
  
  
  /* Mobile (Medium Screens) */
  @media (min-width: 481px) and (max-width: 767px) {
    .footer_top{
      display: none;
    }
    .header-menu{
      margin-bottom: 5%;
    }
  }
  
  
  /* Tablets (Small) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .footer_top{
      display: none;
    }
    .header-menu{
      margin-bottom: 5%;
    }
  }
  
  
  /* Laptops & Small Desktops */
  @media (min-width: 1025px) and (max-width: 1200px) {
    
  }
  
  
  /* Large Screens (Desktops) */
  @media (min-width: 1201px){
   
  }
  
  