/*_________________________________________________________________________________________________ FOOTER */
#badges {
	padding-top: 1em;
	padding-bottom: 1em;
	display: flex;
	align-items: center;
}

#badges ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

#badges ul li {
	width: 50%;
	padding: 1rem;
	margin: 0.375rem 0;
	display: flex;
	justify-content: center;
}

#badges ul li img {
	margin: 0;
	max-height: 5rem;
}

/* #badges ul li img.shep-logo {
	max-height: 5em;
} */

@media (min-width: 48em) {
	#badges ul {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	#badges ul li {
		width: 20%;
		margin-left: 0.2em;
		padding: 0;
	}

	#badges ul li img {
		max-height: 4rem;
	}

	#badges ul li img.shep-logo {
		max-height: 4em;
	}
}

@media (min-width: 75em) {
	#badges ul {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	#badges ul li {
		width: calc(11.11111111111111% - 0.7rem);
		margin-left: 0.7rem;
		padding: 0;
	}

	#badges ul li:first-child {
		margin-left: 0;
	}

	#badges ul li img {
		margin: 0;
		max-height: 4.5rem;
	}
}