#footer{
   width: 100vw;
  background-color: var(--bg);
  border-top: var(--border);
  height: var(--footer-h);
  

  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-header);

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: var(--padding-inline);
    padding-top: 0.25rem;

      font-family: var(--font-title);
  text-transform: uppercase;
  font-size: var(--fs-title-small);


}


#footer a{
  text-decoration: none;
}


#footer .contact{
    cursor: url('/assets/cursor/LeK_manicules7.png') 0 16, pointer;
}

#footer .newsletter{
    cursor: url('/assets/cursor/LeK_manicules3.png') 0 16, pointer;
}

@media screen and (max-width: 640px) {
#footer{
  font-size: 1.2rem;
}
  }