#logos img {
 /* width: 20%;  adjust image width */
  height: 100px; /* maintain original height */
  margin: 10px 10% 10px 10px; /* adjust margin */
}

/* Mobile Styles (media query) */
@media only screen and (max-width: 768px) {
  #logos img {
   /*  width: 20%; make images wider on mobile */
    height: 100px; /* adjust height on mobile */
    margin: 10px 10% 10px 10px; /* adjust margin on mobile */
  }
}

/* Extra Mobile Styles (media query) */
@media only screen and (max-width: 480px) {
  #logos img {
    width: 20%; /* make images even wider on extra small screens */
    height: 80px; /* adjust height on extra small screens */
    margin: 3px 3% 3px 3px; /* adjust margin on extra small screens */
  }
}
/* Global Styles */


/* Desktop Styles (default) */

/* Mobile Styles (media query) */
@media only screen and (max-width: 768px) {


}

/* Extra Mobile Styles (media query) */
@media only screen and (max-width: 480px) {

  body {
    font-size: 16px;
  }

}