.footer-links {
  display: flex;
  gap: 1rem;
}

footer {
  width: 100%;
  background-color: #036;
  padding: 2rem 0;
}

.footer-elements {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  gap: 1rem;
}

.footer-elements p {
  color: #a7c6e5;
  line-height: 1.3rem;
}

.footer-elements p span {
  color: #fff;
}

.footer-logo {
  opacity: 0.1;
}

.footer-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex: 3;
}

.footer-links-list {
  display: flex;
}

.footer-social {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}

.footer-social div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001d3a;
  border-radius: 100px;
  width: 30px;
  height: 30px;
}

.footer-social div svg {
  height: 16px;
  width: 16px;
}

@media screen and (max-width: 1025px) {
  .footer-elements {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-info {
    order: 1;
  }

  .footer-social {
    order: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 769px) {
  .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media screen and (max-width: 430px) {
  .footer-info,
  .footer-social {
    flex: unset;
  }

  .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 281px;
  }
}
