/*
Theme Name:  Customizable Child of Avada
Description: Avada child theme for making custom changes for friendsoffinland.org. Important notice: This child theme must be the active theme in order for the custom functionallity to work. It handles the custom shortcodes, styles/CSS, and related options. As well as any future customizations that may be added.
Author:      ThemeFusion
Author URI:  https://theme-fusion.com
Template:    Avada
Version:     1.0.0
Text Domain: fof-avada
*/

.local-biz-org-icons {
  display: grid;
  gap: 0.50rem;
  grid-template-columns: repeat(9, 1fr);
}
.local-biz-org-icons > div {
  text-align: center;
  overflow: hidden;
}
.local-biz-org-icons > div b {
  display: block;
  white-space: pre;
}
.local-biz-org-icons > div img {
  filter: invert(0%); /* Initial state: no inversion */
  transition: filter 0.3s ease; /* Smooth transition for the effect */
}
.local-biz-org-icons > div img:hover {
  filter: invert(100%); /* On hover: full inversion */
}

@media only screen and (max-width: 1120px) {
  .local-biz-org-icons {
    font-size: 80%;
  }
}
@media only screen and (max-width: 920px) {
  .local-biz-org-icons {
    font-size: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .local-biz-org-icons {
    font-size: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 380px) {
  .local-biz-org-icons {
    font-size: 80%;
  }
}

/* FIN */