footer.primary .columns {
  padding: 30px 0;
  color: #fff;
  font-size: 12px;
  background-image: linear-gradient(180deg, #047796 0%, #0ba5d2 100%);
}
footer.primary .columns .container {
  display: flex;
  justify-content: space-between;
}
footer.primary .columns a {
  color: #00435A;
}
footer.primary .columns a:hover, footer.primary .columns a:focus {
  color: #000;
}
footer.primary .column {
  flex: 1;
}
footer.primary .column h3 {
  margin-bottom: 10px;
  font-size: 16px;
}
footer.primary .copyright {
  padding: 12px 0;
  background-color: #000;
  color: #999;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  footer.primary .columns .container {
    flex-wrap: wrap;
  }
  footer.primary .column {
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  footer.primary .columns .container {
    flex-direction: column;
  }
  footer.primary .column {
    margin-bottom: 18px;
  }
}