.footer {
  width: 100%;
  padding: 4rem 4rem;
}

.footer .container {
  width: 100%;
  border-top: 1px solid lightgray;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}

.footer .footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer .section-one {
  display: flex;
  align-items: center;
}

.footer .section-two {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.footer .section-three {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}

.footer .social-icons-container {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: end;
  gap: 15px;
}

.footer .social-icon {
  aspect-ratio: 1;
  cursor: pointer;
}

.footer .social-icon img {
  height: 30px;
  aspect-ratio: 1;
}

@media only screen and (max-width: 1000px) {
  .footer {
    width: 100%;
    padding: 4rem 1rem;
  }

  .footer .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 25px;
  }

  .footer .section-three {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  .footer .section-two {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
