footer {
  background: white;
  box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.1);
  padding: 40px 10px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  letter-spacing: 0;
}

footer .content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
}

footer .content .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex: 1;
}

footer .content .item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #374151;
}

footer .content .item p,
footer .content .item a {
  font-size: 12px;
  font-weight: 400;
  color: #4b5563;
}

footer .content .item a {
  transition: transform 0.2s ease-in-out;
}

footer .content .item a:hover {
  transform: scale(1.02);
  color: #2563eb;
}

footer .content .item h5 {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
}

footer .content .item h3,
footer .content .item h5 {
  margin-bottom: 5px;
}

footer hr {
  width: 100%;
  height: 1px;
  background: #9ca3af;
  border: none;
}

footer .droits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

footer .droits .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 29px;
}

footer .droits .links a {
  transition: transform 0.2s ease-in-out;
}

footer .droits .links a:hover {
  transform: scale(1.02);
}

footer .droits .links a img {
  width: 164px;
  height: auto;
}

footer .droits p {
  font-size: 12px;
  font-weight: 500;
  color: #4b5563;
}

@media screen and (max-width: 800px) {
  footer .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  footer .content .item {
    align-items: center;
    justify-content: center;
  }

  footer .content .item p,
  footer .content .item a {
    text-align: center;
  }
}

@media screen and (max-width: 400px) {
  footer .droits .links a img {
    width: 132px;
    height: auto;
  }
}
