.footer {
  display: flex;
  flex-direction: column;
  padding: 50px 100px;
  color: var(--light-font-color);
  background-color: var(--dark-background-color);
}

.footer-section {
  display: flex;
  /* justify-content: space-between; */
  align-items: start;

  justify-content: center;
  gap: 100px;
}

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

.footer-brand {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 50px;
}

.footer-brand img {
  height: 100%;
  width: auto;
}

.footer-contact-title {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
}

.footer-nav-title {
  margin-bottom: 0;
}

.footer address {
  margin-bottom: 20px;
}

.footer-phone {
  margin-bottom: 30px;
}

.footer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: max-content;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer a {
  text-decoration: none;
}

.footer-nav-list {
  display: flex;
  flex-flow: row;
}

.footer-nav-links a {
  color: var(--light-font-color);
}

.footer-nav-links a:hover {
  color: var(--accent-hover);
}

.footer-references p {
  font-weight: 700;
}

.footer-legal {
  /* display: flex; */
  color: var(--light-font-color);
  align-items: center;
  margin-top: 40px;
}

.footer-legal p {
  margin-bottom: 0;

  text-align: center;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.footer-icon {
  color: var(--accent-color);
}


@media screen and (max-width: 1100px) {
  /* .footer {
    padding: 50px 100px;
  } */

  .footer-nav-list {
    flex-direction: column;
  }
}

@media screen and (max-width: 1100px) {
  .footer {
    padding: 50px 32px;
    text-align: center;
  }

  .footer-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-section .underline {
    margin: 10px auto;
  }

  .footer-column {
    gap: 40px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer address {
    font-size: 13px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-legal-links {
    margin-top: 10px;
    margin-left: 0;
  }
}

@media screen and (max-width: 490px) {
  .footer {
    padding: 50px 16px;
    text-align: center;
  }
}
