/* this style is only for the logo box on the home page */

/* Flexbox styling for logo bar */
.logo-bar {
  display: flex;
  justify-content: space-around; /* Ensures even spacing between logos */
  align-items: center;
  max-width: 1200px; /* Aligns with typical page width; adjust if needed */
  margin: 0 auto; /* Centers the logo bar within the page */
  padding: 20px 0;
}
.logo-image {
  max-width: 100px; /* Keeps logos uniform in size */
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}
.logo-image:hover {
  opacity: 1;
  filter: grayscale(0%);
}
