.footer-container {
	width: 100%;
	background: var(--primary-color);
	padding: 0 20px;
}

.centraliza-footer-container {
	position: relative;
	display: flex;
	font-family: Roboto;
	align-items: center;
	max-width: 1300px;
	min-height: 100px;
	margin: 0 auto;
}

.footer-container .copyright {
	justify-self: center;
	font-size: 14px;
	color: var(--tertiary-font-color);

}

.footer-container .footer-links-container {
	display: grid;
	grid-auto-flow: column;
	justify-self: center;
	margin-left: auto;
}

.footer-container .footer-links-container a {
	margin-left: 22px;
	padding-right: 22px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	font-family: Roboto;
	color: var(--tertiary-font-color);
	border-right: solid 1px var(--tertiary-font-color);
	cursor: pointer;
}

.footer-container .footer-links-container a:hover {
	opacity: .9;
}

.footer-container .footer-links-container a:last-child {
	border: none;
}

@media (max-width: 1024px) {
	.centraliza-footer-container{
		flex-wrap: wrap;
	}

	.copyright{
		width: 100%;
		order: 2;
		text-align: center;
	}

	.footer-container .footer-links-container{
		width: 100%;
		order: 1;
	}
}

@media (max-width: 680px) {
	.footer-container .footer-links-container {
		display: none;
	}
}