:root {
  font-size: 62.5%;
}

.menu-socials-ftr {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: calc(clamp(16px, 14.7692307692px + 0.3846153846vw, 20px) / 2);
}
.menu-socials-ftr li a {
  aspect-ratio: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF10;
  border-radius: 7.29px;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.menu-socials-ftr li a:hover {
  background-color: #3E0834;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.menu-socials-ftr li a svg {
  display: block;
  height: auto;
}
