/*--------------------------------------------*\
    VARIABLES CSS GLOBALES
\*--------------------------------------------*/

:root {
    --font-roboto-regular: 'Roboto Regular', sans-serif;
    --font-roboto-medium: 'Roboto Medium', sans-serif;
    --font-roboto-bold: 'Roboto Bold', sans-serif;
    --font-roboto-black: 'Roboto Black', sans-serif;
    --font-poppins: 'Poppins-Medium', sans-serif;
    --color-footer-bg: #A5DEF6;
    --color-text: #000;
}

/*--------------------------------------------*\
    FONTS
\*--------------------------------------------*/

@font-face {
    font-family: 'Roboto Regular';
    src: local('Roboto'), local('Roboto-Regular'), url('/assets/font/Roboto/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}


@font-face {
    font-family: 'Roboto Medium';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('/assets/font/Roboto/Roboto-Medium.ttf') format('truetype');
    font-display: swap;

}

@font-face {
    font-family: 'Roboto Black';
    src: local('Roboto Black'), local('Roboto-Black'), url('/assets/font/Roboto/Roboto-Black.ttf') format('truetype');
    font-display: swap;

}

@font-face {
    font-family: 'Roboto Bold';
    src: local('Roboto Bold'), local('Roboto-Bold'), url('/assets/font/Roboto/Roboto-Bold.ttf') format('truetype');
    font-display: swap;

}


/*--------------------------------------------*\
                    FOOTER 
/*--------------------------------------------*/

.footer--communaute {
    background: var(--color-footer-bg) 0% 0% no-repeat padding-box;
    text-align: center;
}

.footer--communaute h2 {
    font-family: 'ClanOT-NarrowBold', sans-serif;
    font-weight: bold;
    font-size: calc(2*var(--basePX) + 5px);
    line-height: calc(2*var(--basePX) + 5px);
    letter-spacing: 0px;
}

footer nav {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}

footer nav section {
    margin: 1.5em 0 0 0;
}

footer nav section h2 {
    font-size: calc(var(--basePX) + 6px);
    margin: 0;
    font-family: var(--font-roboto-black);
    font-weight: 900;
}

footer nav section h3 {
    font-family: var(--font-poppins);
    font-size: calc(var(--basePX) + 4px);
    font-weight: 600;
    color: var(--color-text);
}


footer nav section .menu-footer-up {
    list-style: none;
    padding: 0;
    margin-bottom: 1em;
}

footer nav section .menu-footer li,
footer nav section .menu-footer-down li
{
    margin: 1rem 1rem 0;
}

footer nav section .menu-social li {
    margin: 4px 0.5rem 0;
}

footer nav section .menu-social svg {
    height: 32px;
    width: 32px;
}

footer nav section .menu-footer-up li {
    margin-top: 4px;
}

footer nav section .plateformes li {
    margin: 1rem 0 0;
    width: 25%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


footer nav section .menu-footer a,
footer nav section .menu-footer-up a,
footer nav section .section--ref p,
footer nav section .menu-footer-down a {
    font-family: var(--font-poppins);
    font-size: calc(var(--basePX) + 3px);
    text-decoration: none;
    color: var(--color-text);   
}

footer nav section .menu-footer a span {
    margin-top: 0.5rem;
}

footer nav section .plateformes svg {
    height: 25px;
    width: auto;
    flex-shrink: 0;
}

footer nav section .menu-footer a:hover,
footer nav section .menu-footer-up a:hover,
footer nav section .menu-footer-down a:hover {
    color: #0056b3;
}

footer nav section .menu-social {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
}

footer nav section .menu-footer {
    width:80%;
}

footer nav section .menu-footer,
footer nav section .menu-footer-down {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-content: center;
}

.nav-footer-up {
    display: flex;   
    justify-content: space-around;
    align-content: flex-start;
    
}

footer .copyright {
    flex: 0 0 100%;
    font-family: var(--font-poppins);
    font-size: 13px;
    margin: 0;
}


/*--------------------------------------------*\
    MEDIA QUERIES
\*--------------------------------------------*/

@media (min-width:426px){

    .nav-footer-up {
        margin-left: 65px;
        margin-right: 65px;
    }
}

@media (max-width:425px){

    .nav-footer-up {
        margin-left: 20px;
        margin-right: 20px;
    }
}


@media (max-width:991px) {
    footer .copyright {
        text-align: center;
        position: relative;
        top: 0px;
        margin: 1rem 0 ;
    }

    footer nav section .menu-footer,
    footer nav section .menu-footer-down {
        flex-flow: column wrap;
        text-align: center;
    }

    .nav-footer-up {
        flex-flow: column wrap;
    }

    footer nav section .plateformes li {
        width:100%;
    }

    footer nav.nav-footer-up section {
        width: 100%!important;
        text-align: center;
    }

}

@media (min-width:992px) {
    footer .copyright {
        text-align: left;
        position: relative;
        top: -18px;
        width: 245px;
    }

    footer nav section .menu-footer,
    footer nav section .menu-footer-down {
        flex-flow: row wrap;
    }

    .nav-footer-up {
        flex-flow: row wrap;
    }
}

@media (min-width: 992px) and (max-width:1090px) {
    footer nav section .plateformes svg {
        display: none;
    }
}

@media (min-width: 992px) and (max-width:1200px) {

    footer nav section .menu-footer a,
    footer nav section .section--ref p,
    footer nav section .menu-footer-up a {
        font-size: calc(var(--basePX) + 1px)!important;
        width: 95%;
    }

    footer nav section .plateformes svg {
        height: 20px;
        width: auto;
        flex-shrink: 0;
    }
}

@media (min-width:992px) and (max-width:1490px) {

    footer nav section .plateformes li {
        width: 25%;
    }
    
    footer nav.nav-footer-up section {
        width : 33.33%!important;
        padding: 0 0.5rem;
    }
}

@media (min-width: 1201px) and (max-width:1700px) {

    footer nav section .menu-footer a,
    footer nav section .section--ref p,
    footer nav section .menu-footer-up a {
        font-size: calc(var(--basePX) + 2px) !important;
        width: 90%;
    }

    footer nav section .plateformes svg {
        height: 23px;
        width: auto;
        flex-shrink: 0;
    }
}

@media (max-width:1490px) {

    footer nav.nav-footer-up section:first-of-type {
        flex-flow: column wrap!important;
        text-align: center;
    }

    footer nav.nav-footer-up section:first-of-type div {
        width: 100%!important;
    }

    footer nav.nav-footer-main div {
        flex-flow: column wrap!important;
    }

}

@media (min-width:992px) and (max-width:1490px) {

    footer nav section .menu-footer {
        width:100%;
    }

}

@media (min-width:426px) and (max-width:991px) {
    footer nav section .menu-footer {
        width:80%;
    }
}

@media (max-width:425px) {
    footer nav section .menu-footer {
        width:100%;
    }
}

/*--------------------------------------------*\
    FAQ
\*--------------------------------------------*/
.title--faq {
    font-size: calc(var(--basePX) + 22px);
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    line-height: calc(var(--basePX) + 22px);
}

.subtitle--faq {
    font-size: calc(var(--basePX) + 10px);
    font-family: "Poppins", sans-serif;
    line-height: calc(var(--basePX) + 10px);
}

.faq p {
    margin-bottom: 0px;
}

.title--plateforme {
    font-size: calc(var(--basePX) + 6px);
    font-family: 'Poppins-Bold', sans-serif;
    line-height: calc(var(--basePX) + 6px);
    margin: 1rem 0 0;
    text-align: center;
}
