footer {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	position: relative;
	left: 0;
    background-color: #f0f0f0;
    padding: 20px 0;
	margin: 0;
	color: black;
	width: 100%;
	border-top: 4px solid #0d274a;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
	z-index: 999;
	font-size: clamp(12px, .9vw, 18px);
}
	
.footer-section {
    display: flex;
    flex-direction: column;
}

footer a {
    color: black;
    text-decoration: none;
	cursor: pointer;
}

footer a:hover {
    text-decoration: underline;
}

.footer-section li:not(.footer-nal) {
	text-indent: 25px;
}

.footer-nal {
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li {
    list-style: none;
    padding: 0;
}

@media (max-width: 768px) {
	footer {
		flex-direction: column;
	}
	
	.footer-section li:not(.footer-nal) {
		text-indent: 0px;
	}
	
	.footer-section ul {
		margin: 10px 0;
		text-align: center;
	}
}