/* Styles pour le footer */
footer {
	font-family: 'Helvetica', sans-serif;
    background-color: #f2f2f2;
    color: #2e2e2e;
    padding: 0px;
    text-align: center;
	position: fixed;
	bottom: 0;
    left: 0;
    width: 100%;
	z-index: 1000;
}

.footer-col a {
	color: #2e2e2e;
}

.footer-col a:hover {
	text-decoration: none;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col {
    flex: 1;
    text-align: center;
}

.footer-col p {
    margin: 0;
}

.footer-col:last-child {
    text-align: right;
	padding: 5px;
	padding-right: 10%;
}

@media screen and (max-width: 768px) {
	.footer-columns {
		flex-direction: column;
		align-items: center;
	}
}