.footer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	float: left;
	width: 100%;
	padding: 10px 60px;
	background: var(--color-3);
	position: relative;
	z-index: 3;
}
    .footer_links{
    	display: flex;
    	flex-direction: row;
    	align-items: center;
    	float: left;
    	padding: 0 10px;
    }
        .footer_link{
        	float: left;
        	line-height: 30px;
        	margin: 0 10px;
        	color: var(--color-2);
        	font-size: 14px;
        }

@media (max-width: 1024px) {

	.footer{
		justify-content: center;
	}
    .footer_links{
    	flex-direction: column;
    }
    .footer_link{
    	line-height: 26px;
    }

}