.footer {
	background-color: #363537;
	padding: 20px;
}

.footer__content {
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	max-width: 1024px;
	margin: 0 auto;
}

.footer__logo {
	flex: 0 0 auto;
	width: 154px;
}

.footer__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
				
.footer__list-wrap {
	flex: 0 0 auto;
	margin: 0 auto;
}

.footer__list {
	display: flex;
	flex-flow: row;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__link {
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 200ms linear;
}

.footer__link:hover {
	opacity: 1;
}

.footer__socials {
	flex: 0 0 auto;
}

.footer__socials-list {
	display: flex;
	flex-flow: row;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__socials-item {
	width: 32px;
	height: 32px;
	background-color: #008081;
	border-radius: 3px;
	transition: all 200ms linear;
}

.footer__socials-item:hover {
	background-color: #016061;
}

.footer__socials-link {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
}

.footer__socials-link img {
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	bottom: auto;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-page .footer__link[href="/"] {
	color: #ffb20f;
	opacity: 1;
}

.about-us .footer__link[href="/about-us/"] {
	color: #ffb20f;
	opacity: 1;
}

.book-a-demo .footer__link[href="/book-a-demo/"] {
	color: #ffb20f;
	opacity: 1;
}

.cookie-page .footer__link[href="/cookies/"] {
	color: #ffb20f;
	opacity: 1;
}

.toolbox-page .footer__link[href="/features/"] {
	color: #ffb20f;
	opacity: 1;
}

.privacy-policy .footer__link[href="/privacy-policy/"] {
	color: #ffb20f;
	opacity: 1;
}

.support-page .footer__link[href="/support/"] {
	color: #ffb20f;
	opacity: 1;
}

/*
<link data-optimized="2" rel="stylesheet" href="/styles/footer.css" />
<div id="footer"></div>
<script>
	document.getElementById("footer").innerHTML = fetch('/footer.html')
		.then(response => response.text())
		.then(data => document.getElementById("footer").innerHTML = data);
</script>
*/