.footer {
  background: var(--light-blue-color);
  color: white;
  font-family: "Exo2-Regular";
  padding: 3em;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img {
  height: 15vh;
  width:auto;
}

.footer-menu{
  border-right: 1px solid white;
  padding-right: 2em;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 8px;
}

.footer-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s;
}

.footer-infos{
  border-right: 1px solid white;
  padding-right: 2em;
}

.footer-menu ul li a:hover {
  color: var(--dark-blue-color);
}

.footer-infos p,
.footer-copy p {
  margin: 5px 0;
  font-size: 0.95em;
}

.footer-infos a,
.footer-copy a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-infos a:hover,
.footer-copy a:hover {
  color: var(--dark-blue-color);
}

/* =======================
   Responsive
======================= */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:0;
  }

  .footer-logo img {
    width:100%;
    margin: 0 auto 10px;
  }

  .footer-menu{
    border-right: 0;
    padding-right: 0;
  }

  .footer-menu ul li {
    display: block;
    margin: 0 10px;
  }

  .footer-infos{
    border-right: 0;
    padding-right: 0;
  }

  .footer-infos p{
    text-align: center;
  }

  .footer-copy
    p{
      text-align: center;
    }

  .footer-infos, .footer-copy {
    margin-top: 15px;
  }
}
