.footer {
  display: flex;
  width: 100%;
  padding: 32px 60px;
  color: #2d3748;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.footer a {
  color: #2d3748;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
}

.footer-copyright {
  flex: 1;
  white-space: nowrap;
  order: 1;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  order: 2;
}

.footer-links a {
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom: 1px solid #2d3748;
}

.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
  order: 3;
}

.footer-socials a.linkedin {
  background-image: url("../../assets/img/linkedin.svg");
  width: 36px;
  height: 36px;
}

.footer-socials a.linkedin:hover {
  background-image: url("../../assets/img/linkedin_hover.svg");
}

@media (max-width: 935px) {
  .footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
    font-size: 16px;
    line-height: 140%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-copyright {
    order: 2;
    white-space: normal;
  }

  .footer-links {
    order: 1;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-socials {
    order: 3;
  }
}
