.footer {
    display: flex;
    padding: 25px;
    background-color: var(--green);
    position: relative;
	color: white;
	-webkit-font-feature-settings: 'lnum' on;
}

.footer-contact-mobile span {
  position: absolute;
  right: 0;
}

.footer-contact-desktop{
  margin-right: auto;
}

.footer-contact-mobile{
  position: relative;
  width: 50%;
}

@media screen and (min-width:1920px) {
	.footer-background {
	position: absolute;
	bottom: 0;
	left: -100%;
	height: 130px;
	background-color: var(--green);
	z-index: -1;
	right: -100%;
	}
}

.menu-item-legal {color: white}
.menu-item-legal:hover {color: var(--orange);}


@media screen and (max-width:960px) {
	.footer {
	flex-direction: column;
	}
  .footer-contact-mobile span {
    position: absolute;
    bottom: 0;

  }
  .footer-contact-mobile {
    width: 100%;
  }
  .footer-contact-desktop {
    margin: 0;
  }

}