.container_footer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  overflow: hidden;
}
.container_footer > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  height: 100%;
  padding: 2%;
}
.container_footer > div > picture {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container_footer > div > picture > img {
  width: 10dvw;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.container_footer > div > h3 {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  font-weight: 200 !important;
}
