footer{
	width : 100%;
	height: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: var(--accent-color);
}

footer .powered{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

footer .powered span{
	color: #afbffc;
	font-weight: 12px;
}

footer .navigation{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 15px;
}
footer .navigation li{
	margin-left: 10px;
	margin-bottom: 10px;
}
footer .navigation li:first-child{
	margin-left: 0px;
}
footer .navigation li:last-child{
	margin-right: 0px;
}
footer .navigation li a,footer .navigation li{
	color: white;
	font-size: 14px;
	text-transform: uppercase;
	color :#afbffc;
	text-decoration: none;
	font-weight: 500;
}
footer .navigation li a:hover{
	text-decoration: underline;
}
@media all and (max-width: 768px) {
	footer .navigation{
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	footer .navigation li a{
		font-size: 12px;
	}
	footer .navigation li:first-child{
		margin-left: 5px;
	}
	footer .navigation li:last-child{
		margin-right: 5px;
	}
	footer .powered{
		justify-content: center;
	}