.footer {
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin: 0;
}
.footer-social a {
  width: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 20px;
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-links-title,
.footer-links-value,
.footer-links-srvc {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer-links-value,
.footer-links-srvc {
  opacity: 0.8;
}
.footer-links-value:not(:last-of-type) {
  position: relative;
  margin-right: 12px;
}
.footer-links-value:not(:last-of-type)::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
}
.footer-links-srvc {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-desktop-only {
  display: block;
}
.footer-mobile-only {
  display: none;
}
@media screen and (max-width: 992px) {
  .footer-bottom {
    margin-top: 10px;
  }
  .footer-social a {
    width: 28px;
  }
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-desktop-only {
    display: none;
  }
  .footer-mobile-only {
    display: block;
  }
  .footer-links-title {
    margin-top: 30px;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-links-value:not(:last-of-type)::after {
    content: none;
  }
  .footer-social a {
    width: 24px;
  }
}
