/* Mobile (Small Screens) */
@media (min-width: 320px) and (max-width: 480px) {
  
}
  
  
  /* Mobile (Medium Screens) */
  @media (min-width: 481px) and (max-width: 767px) {
    
  }
  
  
  /* Tablets (Small) */
  @media (min-width: 768px) and (max-width: 1024px) {
    
  }
  
  
  /* Laptops & Small Desktops */
  @media (min-width: 1025px) and (max-width: 1200px) {
    
  }
  
  
  /* Large Screens (Desktops) */
  @media (min-width: 1201px){
   
  }
  
  