.footer-container {
  margin: 60px 0px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

.footer-info {
  width: 100%;
  max-width: 400px;
}

@media screen and (max-width: 1024px) {
  .footer-info {
    max-width: 100%;
  }
}

.footer-content-container {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: end;
}

@media screen and (max-width: 1024px) {
  .footer-content-container {
    justify-content: center;
  }
}

@media screen and (max-width: 640px) {
  .footer-content-container {
    flex-direction: column;
    align-items: center;
  }
}
