.footer-socials-bg {
  background-color: var(--theme-ui-colors-altBackground);
  color: var(--theme-ui-colors-altText);
  width: 100%;
  display: block;
}

.footer-socials-wrapper {
  width: 100%;
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 782px) {
  .footer-socials-wrapper {
    justify-content: flex-end;
    position: relative;
    padding-bottom: 40px;
  }
}

.footer-socials {
  width: 360px;
  display: grid;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  text-align: center;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
}
.footer-socials svg,
.footer-socials path {
  fill: var(--theme-ui-colors-white);
}
@media screen and (min-width: 782px) {
  .footer-socials {
    position: absolute;
    height: 40px;
    z-index: 1;
    right: 0;
    top: calc(1dvw + 20px);
    right: 1rem;
  }
}
@media screen and (min-width: 1600px) {
  .footer-socials {
    top: 30px;
  }
}