footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: var(--wp--custom--spacing--content-size);
  padding: 4em 2em;
}
@media (max-width: 1600px) {
  footer .footer-content .footer-rows {
    max-width: calc(100% - 400px);
  }
}
@media (max-width: 991px) {
  footer .footer-content .footer-rows {
    max-width: 100%;
  }
}
footer .footer-content .footer-rows .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  footer .footer-content .footer-rows .row {
    flex-direction: column;
  }
}
footer .footer-content .footer-rows .row .bracket {
  text-align: center;
  border-right: solid 2px var(--wp--preset--color--black);
  margin: 0.5em 0.5em 0.5em 0;
  padding-right: 0.5em;
}
footer .footer-content .footer-rows .row .bracket.no-border {
  padding-right: 0;
  border-right: 0;
}
footer .footer-social-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  right: 0;
  top: 0;
  flex-shrink: 0;
  padding: 4em 1em;
  max-width: 200px;
}
@media (max-width: 991px) {
  footer .footer-social-media {
    position: relative;
    padding: 1em 2em 4em 2em;
    max-width: 100%;
    margin-top: -4em;
  }
}
footer .footer-social-media a {
  margin: 0.5em;
}
footer .footer-social-media a svg {
  height: 1.5em;
}