/*
Custom
styles
for
hiding
text
at
smaller
screens
*/

/* Custom styles for hiding text at smaller screens */
@media (max-width: 700px) {
  /* Hide "Suivez-nous :" text but keep Facebook icon */
  .social-text {
    display: none;
  }
  
  /* Hide phone number text but keep the icon */
  .phone-text {
    display: none;
  }
}
