.page_footer {
	width: 100%;
	height: 100%;
	background: black;
	margin-top: auto;
	cursor: default;
	padding-bottom: 10px;
}
.footer_content {
	padding: 18px 30px;
	display: flex;
}
.logo_columnGroup {
	display: flex;
	width: 100%;
	justify-content: space-around;
}
.footer_logo {
	margin: auto 0;
}
.img_logo {
	width: 200px;
	height: 100%;
}
.footer_column_groop {
	display: flex;
	flex-flow: wrap;
	margin-bottom: 70px;
}
.column__info {
	/*padding: 0 3rem 0 0;*/
    display: inline-block;
    margin: 0 15px;
    
}
.column__info h4{
	color: rgb(255 87 17);
	font-size: 14px;
}
.column__info p, 
.column__info a {
	text-decoration: none;
	color: white;
	font-size: 14px;
}
.column__info p:hover {
	color: lightgrey;
	text-decoration: underline;
}
.coopyright_row p{
	text-align: center;
	font-size: 12px;
	color: white;
	line-height: 2px;
}
@media (max-width: 950px) {
	.logo_columnGroup {
		display: flex;
		flex-flow: column;
		align-items: center;
	}
	.footer_column_groop {
		margin-bottom: 20px;
	}
}
@media (max-width: 780px) {
	.footer_column_groop {
	    display: flex;
	    flex-flow: wrap;
	    justify-content: space-around;
	    margin-bottom: 20px;
	}	
	.footer_content {
    	padding: 16px 30px;
	}
}
@media (max-width: 410px) {
	.footer_column_groop {
	    display: flex;
	    flex-flow: column;
	}
}