footer {
	background-color: black;
	z-index: 3;
	width: 100%;
	z-index: 2;
	padding: 5px;
	position: relative;
	box-sizing: border-box;
	color: white;
	border: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 0.1fr 2fr 2fr;
	gap: 10px;
	margin: 0;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	padding: 5rem 0 2rem 0;
}

.footer-grid img {
	height: 100%;
/*	grid-row: 2 span;
	align-items: center;
	margin: 0 auto;*/
}

.footer-grid h2 {
	text-align: center;

}

.footer-grid ul {
	list-style: none;
	text-align: center;	
}

.footer-grid a {
	display: block;
	line-height: 2rem;
}

.footer-grid p{
	display: block;
	line-height: 2rem;
	margin: 0;
}

.footer-grid .list {
	grid-row: 2 span;
}

.footer-logo {
	display: block;
	grid-row: span 2;
	margin: 0 auto;
}

.footer-logo img {
	height: 100%;
	display: block;
}




hr {
	margin: 0 auto;
	max-width: 900px;
	background-color: var(--orange);
	height: 2px;
	border: none;
	
}

footer .bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.bottom p {
	width: 95%;
	margin: 5rem 1rem;
}

.bottom p:last-child {
	text-align: right;
}

.footer .quote {
	width: fit-content;
	color: white;
}

.list a:hover {
	color: var(--orange);
}

.list p:hover, .bottom a:hover {
	color: var(--orange);
}

