/**********************************************************
// Footer Main
**********************************************************/

.Footer {
	background: var(--Dark);
	color: #fff;
	padding: 60px 30px;
}

.Footer-Top {
	max-width: 1200px;
	width: 100%;
	display: flex;
	gap: 3em;
	margin: 0 auto;
}

.Footer-Top a:hover { color: var(--Links); }
.Footer-Top a { color: #fff; }

.Footer-Left { flex-basis: 30%; }

.Footer-Nav li { margin: 8px 0; }
.Footer-Nav li a {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 14px; 
}

.Footer-Social { margin-top: 25px; }
.Footer-Social li a { font-size: 30px; }

.Footer-Right { flex-basis: 70%; }

.Footer-Right h2 { 
	font-size: 16px; 
	color: var(--Links); 
	font-family: var(--Body-Font);
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.Footer-Right h3 { margin-bottom: 25px; }

/**********************************************************
// Footer >> Meta
**********************************************************/
.Footer-Meta a { color: #FFF; }
.Footer-Meta a:hover { color: #999; }
.Footer-Meta {
	max-width: 1200px;
	margin: 40px auto 0;
	width: 100%;
	line-height: 1.5em;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #FFF;
	font-weight: 600;
	font-size: 10px;
	}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 48rem),
all and (max-device-width: 48rem)
{
	.Footer-Top { flex-direction: column-reverse; text-align: center; }
	.Footer-Left { flex-basis: 100%; }
	.Footer-Right { flex-basis: 100%; }
	.Footer-Meta { text-align: center; }
}

