
    :root {
        --text: #041447;
--links: #F24E4C;
--titles: #041447;
--page-background: #FFFFFF;
--highlight: #F24E4C;
--boxes-background: #FFFFFF;
--boxes-border: #C0C5CC;
--section-titles: #041447;
--section-titles-background: #F24E4C;
--header-background: #FFFFFF;
--header-links: #C0C5CC;
--footer-background: #041447;
--footer-links: #FFFFFF;
    }
    
@font-face {
    font-family: 'Raleway';
    src: url('/assets/theme_font/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('/assets/theme_font/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable font range */
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('/assets/theme_font/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable font range */
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('/assets/theme_font/Raleway-SemiBold.ttf ') format('truetype');
    font-weight: 100 700;
    font-style: normal;
}





@font-face {
    font-family: 'Bungee Inline';
    src: url('/assets/theme_font/BungeeInline-Regular.ttf') format('truetype');
    font-weight: 100 700;
    font-style: normal;
}



:root {
    --primary: RGB(4, 20, 71);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-optical-sizing: auto;
}

h1,h2,h3,h4,h5,h6,p,span,button,a, ul, li {
    font-family: 'Raleway', sans-serif;
}



.camvs-container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

@media (min-width: 75rem) {
    .camvs-container {
        max-width: 71rem;
    }
}



.ods-front-footer {
    height: auto;
    padding: 1rem 0 0 0;
    background-color: #001a4b; /* Couleur de fond pour le contraste */
}


.footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer__logo span {
    text-align: left;
    line-height: 1.5;
}


.footer__logo a {
    color: #FFF;
}

.ods-front-footer img {
    width: auto;
}

/* Version mobile */
@media screen and (max-width: 768px) {
    .ods-front-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .footer__logo {
        flex-direction: column;
        text-align: center;
    }

    .footer__logo span {
        text-align: center;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .footer__links a {
        color: white;
        font-size: 1rem;
        text-decoration: none;
    }

    .contact-link {
        color: red;
        font-weight: bold;
    }
}


.ods-front-header__menu-item-link {
    color: var(--primary);
    opacity: 1;
    font-weight: 700; 
}

.ods-front-header__menu-item-link:hover {
    border-bottom: 3px solid var(--primary);
    opacity: 1;
}