/* =========================
   Footer
========================= */
.\:root,
html,
body {
  height: 100%;
}

/* Make the page a column flex layout so footer can sit at the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* The main content area should expand to fill available space */
.content-wrapper {
  flex: 1 0 auto;
}

.site-footer {
  background: #FFF;
  color: #000;
  font-size: 13px;
}

.site-footer .container {
  max-width: 1140px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.footer-item img {
  width: 18px;
  height: auto;
  display: block;
}

.footer-item span {
  line-height: 1.4;
}

/* Facebook icon */
.footer-facebook img {
  width: 26px;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 991.98px) {
  .footer-row {
    justify-content: center;
    row-gap: 12px;
  }

  .footer-facebook {
    margin-top: 6px;
  }
}
