footer {
  background-color: #597588;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  padding: 3.75rem 0;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
footer .top {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: start;
  padding: 0 5rem;
}
footer .top div {
  display: flex;
  flex-direction: column;
}
footer .top div h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
footer .top div ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding-inline: 0;
}
footer .top .logo {
  width: 12.5rem;
}
footer .top .logo a, footer .top .logo img {
  width: 100%;
}
footer .top .follow-us ul {
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}
footer .top .follow-us ul li a img {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.9;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
footer .top .follow-us ul li a img:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 12.5px 0 rgba(0, 0, 0, 0.25);
}
footer .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  opacity: 0.825;
  font-size: 0.9rem;
}
footer .bottom .eco-conception {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
footer .bottom .eco-conception img {
  width: 1.375rem;
  height: 1.375rem;
}
footer .separation {
  display: none !important;
  background-color: #ffffff;
  width: 80vw;
  height: 0.125rem;
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  footer {
    gap: 2.5rem;
    overflow-x: hidden;
  }
  footer .top {
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  footer .top div {
    align-items: center;
  }
  footer .top .contact h4 {
    display: none;
  }
  footer .top .contact ul {
    align-items: center;
  }
  footer .separation {
    display: block !important;
  }
}