.footer {
  background: #126FA3;
  color: white;
  padding: 15px 0;
  display: flex;
  justify-content: center;      /* centers text horizontally */
  align-items: center;
  position: relative;
  bottom: 0;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  font-size: 14px;
  text-align: center;
}

.footer-text {
  margin: 0;
  padding: 0 40px;
}

.footer .footer-logo {
  position: absolute;
  right: 15px;
}

.footer .footer-logo img {
  height: 40px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;     /* stack logo and text vertically */
    justify-content: flex-start;
    text-align: center;
    font-size: 12px;
    padding-bottom: 8px;
  }

  .footer .footer-logo {
    position: relative;
    right: auto;
    margin-top: 5px;
    align-self: center;
  }

  .footer .footer-logo img {
    height: 35px;
  }
}
