/*footer*/
#footer {
	--azure: rgb(0,170,230);
	position: relative;
	background:black;
	width:100%;
	border-top:1px solid var(--azure);
}

footer {
	--contentwidth: 1280px;
	--hover: rgb(0, 204, 197);
	
	display:grid;
	grid-template-rows:auto auto auto;
	grid-template-areas:
		"strapline"
		"links"
		"copyright";
	row-gap:1rem;
	align-items:center;
	justify-items:start;

	max-width:var(--contentwidth);
	margin:0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
	min-height:30vh;
	font-size:1rem;
	color:gray;
	
}

footer h5 {
	grid-area:strapline;
	color:#bfbfbf;
	line-height:1;
	margin:0;
	margin-top:3rem;
	margin-bottom:.5rem;
	font-size:1.25rem;
	font-weight:400;
}

footer a {
	text-decoration:none;
	color:inherit;
}

footer .links {
	display:grid;
	width: 100%;
	grid-template-columns:auto;
	grid-template-rows: auto auto auto;
	row-gap:2rem;
	align-items:start;
}

footer .links ul {
	list-style: none;
	margin-block-start: 0;
	margin-block-end: 0;
}

footer .links ul a:hover {
	border-bottom: 1px dotted var(--hover);
	cursor: pointer;
}
footer .links ul:first-of-type {
	margin-left: 1.3ch;
}
footer .links ul:first-of-type li {
	list-style-image: url('/i/i/marker.svg');
}

footer .links ul:first-of-type {
	column-count: 2;
	column-gap: 0;
	column-rule: 0 solid transparent;
	text-align:left;
}

footer .links h6 {
	font-size: 1.2rem;
	text-transform: uppercase;
	font-weight: 400;
	text-align:right;
	color: var(--azure);
}

footer .social-links > a {
	margin: 0 0 1rem .75rem;
	text-align: center;
	font-size: 1.65rem;
	color: gray;
}
footer .social-links > a:hover {
	color:var(--hover);
}
footer .social-links > a > svg {height:2rem;width:2rem;}

/* footer .social-links > a:hover > svg {filter: invert(9%) sepia(65%) saturate(7338%) hue-rotate(322deg) brightness(96%) contrast(86%);} */

footer .copyright {
	grid-area:copyright;
	font-weight:300;
	font-size:0.875rem;
	margin:2rem 0 .5rem 0;
	line-height:1;
}
footer .copyright > a {border:none;}

@media (min-width:993px) {
	footer .links {
		grid-template-columns: 2fr 1fr 2fr;
		grid-template-rows: auto;
		row-gap:0;		
	}
}
