/* ============================================================
   NFA FOOTER — footer.css
   ============================================================ */
.nfa-footer {
    background: #003B86;
    padding: 67px 0;
}

.nfa-footer__inner {
/*     max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nfa-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}
.nfa-footer__copy{
	display:none;
}

.nfa-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: var(--fs-18);
	font-weight:var(--fs-500);
	line-height:var(--lh-normal);
    position: relative;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

/* Separator between links */
/* .nfa-footer__links a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
} */

.nfa-footer__links a:hover {
    opacity: 0.75;
}

.nfa-footer__copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-family: var(--nfa-font, 'Open Sans', sans-serif);
    text-align: center;
}
@media only screen and (max-width:1599px){
	
}
@media only screen and (max-width:1366px){
	
}
@media only screen and (max-width:1199px){
	
}
@media only screen and (max-width:1024px){
	.nfa-footer__inner {
        max-width: 100%;
        padding: 0 10px;
    }
	.nfa-footer__links{
		gap: 1px;
	}
}

@media only screen and (max-width:767px){
	.nfa-footer__links{
		    gap: 18px;
	}
}