.inner_footer{
    width: 100%;
    background-color: var(--dark-blue);
    color: #ffffff;
    height: var(--footer-height);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer_container {
    display: flex;
    align-items: center;
    gap: 8rem;
}

footer nav ul {
    gap: 1.5rem;
}

.logo_container {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    height: 48px;
}

.logo_container img {
    height: 100%;
    max-height: 40px;
    width: auto;
}

#block-ambassadeur-footer ul li a {
    color: #ffffff;
    font-size: 16px;
}

#block-ambassadeur-footer ul li a:hover {
    color: var(--light-blue);
}

.outter_footer {
    background-color: white;
    text-align: center;
}

.outter_footer p {
    font-size: 12px;
    padding: 8px;
    color: var(--dark-blue);
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .inner_footer {
        height: fit-content;
        padding: 2rem  var(--gutter-mobile);
    }
    
    .footer_container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .outter_footer p {
        text-align: left;
        padding: 8px 2rem;
    }
    footer nav ul {
        gap: 1rem;
    }
}