#footer_Wrapper{
	width: calc(100% - 10px);
	max-width:1080px;
	height: auto;
	text-align: center;
	background-image: none;
	background-color: var(--sec_clr);
	padding: 0px 5px;
	margin: 0px auto;
	border-radius: 0px 0px 30px 30px;
}
#footer_Wrapper span{
	color: #696969;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer_Wrapper a:link, #footer_Wrapper a:visited{
	color:#393939;
	text-decoration: none;
}

.foot_logo{
	width:25px;
	height: 25px;
	/*vertical-align: middle;*/
}
.foot_links{
	display:flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.foot_links ul{
	display: block;
	font-weight: bolder;
	font-size: 1.2rem;
}
.foot_links ul li{
	display: block;
	font-weight: normal;
	font-size: 1rem;
}
.foot_links a{
	display: block;
	transition: color 0.25s;
	text-align: center;
}
.foot_links a:hover, .foot_links a:active{
	color: var(--prim_clr);
}
.foot_links .spacr{
	content: " ";
	height: 60px;
	width:1px;
	margin: auto 20px;
	color: var(--3rd_clr);
	background-color: var(--3rd_clr);
}

@media only screen and (max-width:678px){
	#footer_Wrapper{
		width: 100%;
	}
}