.fc_icon_grid {
  display: flex;
  flex-flow: row;
  justify-content: center;
  gap: var(--gap-xxl);
}

.fc_icon_grid img {
  max-height: 70px;
  width: auto;
}

@media (max-width: 768px) {
  .fc_icon_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .fc_icon_grid img {
    margin: 0 auto;
  }
}

@media (max-width: 400px) {
  .fc_icon_grid {
    grid-template-columns: 1fr 1fr;
  }
}