/* Wrapper for the 3 columns */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}

/* Make each span act like a column */
.footer-row span {
  flex: 1;
}

/* Center column text */
.footer-row .col_2-3 {
  text-align: center !important;
  color: white;
}

/* Left & right images */
.footer-row img {
  max-height: 100px;
  width: auto;
}

/* Right column image alignment */
.footer-row .col_3-3 {
  text-align: right !important;
}
