.footer {
	width: 100%;
	max-width: 1300px;
	margin: 50px auto 0px auto;
	display: flex;
	justify-content: space-between;
	padding: 25px;
}
@media (max-width: 768px) {
	.footer {
		flex-direction: column;
	}
}

.footer-ul {
	list-style: none;
	display: flex;
}

@media (max-width: 768px) {
	.footer-ul {
		display: flex;
		justify-content: space-between;
		padding-bottom: 20px;
		flex-direction: column;
	}

	.footer-li {
		text-align: center;
		width: 100%;
		padding: 2px;
	}
}

.footer-link {
	text-decoration: none;
	font-size: 12px;
	color: #aaaaaa;
	font-weight: 400;
	padding-right: 35px;
	transition: all 0.2s ease;
}

@media (max-width: 768px) {
	.footer-link {
		padding-right: 0;
	}
}

.footer-link:hover {
	color: black;
}

.footer-copyright {
	font-size: 12px;
	color: #aaaaaa;
	font-weight: 400;
}
@media (max-width: 768px) {
	.footer-copyright {
		text-align: center;
	}
}

.footer-copyright-color {
	color: var(--primary-color);
	font-weight: 400;
	text-decoration: none !important;
}

.footer-copyright-color a {
	text-decoration: none;
}
