/* Footer */
footer
{
  display: flex;
  width: 100%;
  height: auto;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1em 0;
}

.footer-container
{
  width: 100%;
  font-size: var(--fs-footer);
  line-height: var(--lh-sm);
  text-wrap: nowrap;
  justify-content: space-between;
}

.footer-logo
{
  width: clamp(10rem, 15%, 2rem);

  height: 2rem;
  border-right: 2px solid var(--accent-light-color);
}
 
.footer-social
{
  height: 2rem;
  justify-content: flex-start;
  padding-left: 0.5rem;
}

.footer-logo img
{
  width: 100%;
  height: auto;
}

.footer-social svg
{
  width: 1.5em;
  height: 1.5em;
}

.footer-policy
{
  gap: 1em;
  height: 2rem;
}
