footer {
  padding: 2em max(1.5rem, 50vw - var(--max-width) / 2);
  background-color: var(--color-black);
	/* https://css-tricks.com/a-clever-sticky-footer-technique/ */
	position: sticky;
  top: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
}
footer > p {
	font-size: 1rem;
	font-family: var(--type-header);
	font-weight: 700;
}
footer a {
	text-decoration: underline;
}
footer > div {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 0 0 0;
}
footer > div > p {
	margin: 0;
	font-size: 16px;
}

footer > a > img {
	max-width: 200px;
	margin: 2em auto 0 auto;
}
footer p {
	color: white;
}

@media (min-width: 769px) {
	footer > p {
		font-size: 28px;
	}
}

.contact {
	background-color: var(--color-black);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
	border-bottom: 2px solid var(--color-mgray);
	padding-block: 2em;
}

.contact p {
	margin-block: 0.25em;
}

.contact h2 {
	color: var(--color-orange);
	font-weight: 800;
	text-align: left;
	margin-block-start: 0;
}


@media (min-width: 769px) {
	.contact {
		flex-direction: row;
		justify-content: space-between;
		gap: 6em;
		align-items: flex-start;
	}
	.contact__content {
		flex: 1 1 60%;
	}
	.contact__logo {
		flex: 1 1 40%;
	}
}

.legal {
	display: flex;
	flex-direction: column;
	gap: 0.666em;
}