footer {
  background-color: #fbfbfb;
  padding: 1rem 0;
}
footer > .container {
  max-width: calc(1200px + 2rem);
  padding: 0;
}
footer > .container > .d-flex.flex-wrap.justify-between.align-center {
  margin: 0 1rem;
}
@media (max-width: 640px) {
  footer {
    padding: 2rem 0;
  }
}
footer span, footer a {
  font-family: var(--font-medium);
  font-size: 0.875rem;
  letter-spacing: -0.1px;
  color: var(--blueish-grey);
  text-decoration: none;
  transition: color 200ms ease-in-out;
}
footer .flex-wrap {
  flex-wrap: wrap;
}
footer .d-flex {
  display: flex;
}
footer .align-center {
  align-items: center;
}
footer .justify-center {
  justify-content: center;
}
footer .justify-between {
  justify-content: space-between;
}
footer .social-media {
  background: #4B5054;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 0 0.2rem;
  transition: background-color 200ms ease-in-out;
}
footer .social-media .ico {
  font-size: 1rem;
  line-height: 1;
}
footer .social-media:hover {
  background-color: var(--info-blue);
}
@media (max-width: 768px) {
  footer .mail {
    margin-top: 0.5rem;
    display: inherit;
  }
}
footer a:not(.social-media):hover {
  color: var(--info-blue);
}
footer a:not(.social-media):before {
  content: "|";
  margin-right: 0.5rem;
  font-family: var(--font-light);
  color: var(--blueish-grey) !important;
}