.footer {
    background-color: #223b53;
}

.footer .copyright {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .footer .copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
  }
  .footer .copyright > div {
    width: 100%;
    text-align: center !important;
    margin-bottom: 16px;
  }
  .footer .copyright > div:last-child {
    margin-bottom: 0;
  }
}