footer {
    height: 48px;
    background: #244066;
    font-size: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer ul {
  display: flex;
  list-style: none;
}
footer ul li{
  padding: 0px 20px;
  border-right: 1px solid #ffffff;
  cursor: pointer;
}
footer ul li a{
  color: white;
  cursor: pointer;
  text-decoration: none;
}
footer ul li:last-child{
  padding: 0px 20px;
  border-right: none;
}
@media (max-width: 1300px) {
    footer {
      justify-content: center;
    }
    footer ul li{
      display: none;
    }
    footer ul li.active {
      display: inline;
    } 
  }