.custom-footer {
  background-color: #fec909;
  padding: 30px 0;
}

.custom-footer .row {
  display: flex;
  align-items: stretch;
}

@media (max-width: 767px) {
  .custom-footer .row {
    display: block;
    align-items: stretch;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.footer-column h4 {
  color: black;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: black;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-logos img {
  height: 70px;
  width: auto;
  margin-right: 50px;
}

.footer-text {
  color: black;
}

@media (max-width: 767px) {
  .footer-column {
    text-align: center !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .footer-logos img {
    display: inline-block;
    margin: 5px;
  }
}

