.footer {
  background-color: var(--motors-bg-shade);
}

.footer-container {
  max-width: 1152px;
  padding: 15px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  line-height: 1.5em;
  flex-direction: column;
}

.footer-copyright {
  min-width: 100%;
  font-size: 15px;
  color: var(--motors-text-highalpha-color);
  order: -1;
  padding: 15px;
  text-align: center;
}

.footer-socials {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin: 0;
}
.footer-socials.footer-socials-small {
  flex-wrap: wrap;
  justify-content: center;
  padding: 3px 0;
  max-width: 300px;
}
.footer-socials.footer-socials-small a {
  width: 25px;
  height: 25px;
  margin: 3px;
  font-size: 17px;
}
.footer-socials a {
  color: var(--motors-text-alpha-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.1s;
}
.footer-socials a:hover {
  color: var(--motors-accent-color);
}

@media (min-width: 1025px) {
  .footer-container {
    flex-direction: row;
  }
  .footer-copyright,
  .footer-socials {
    min-width: auto;
  }
  .footer-socials {
    justify-content: flex-end;
  }
}