@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}



footer
{
    /*position: fixed;*/
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    box-shadow: 0 16px 70px -8px rgba(0, 0, 0, 0.25);
    border-radius: 20px 20px 0 0;
    z-index: 998;
    /*transition: background 0.3s linear;*/
}

.dark_mode
{
    --primary-color:rgb(23, 28, 57);
    --secondary-color:white;
}

.show
{
    display: inline;
}

.hide
{
    display: none;
}

li
{
    list-style: none;
}

a
{
    text-decoration: none;
}


.container_footer
{
    max-width: 1240px;
    padding: 30px 40px;
    margin: auto;
}

footer .pied
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.profil .logo
{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profil .logo span
{
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 5px;
}

.profil .logo img
{
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.logo button
{
    border: none;
    outline: none;
    background-color: transparent;
    margin-left: 10px;
    cursor: pointer;
}

.logo .sun
{
    color: white;
}

.profil .description
{
    max-width: 320px;
    margin-bottom: 1.25rem;
}

.profil .description p
{
    color: var(--secondary-color);
    font-weight: 400;
    line-height: 10px;
}

.reseau_social
{
    display: flex;
    justify-content: center;
}

.reseau_social a
{
    color: var(--secondary-color);
    margin-right: 20px;
    font-size: 20px;
}

.reseau_social a:hover
{
    color: black;
}

.services
{
    display: flex;
}

.service_liste
{
    margin-right: 40px;
}

li.service_item
{
    color: var(--secondary-color);
    font-weight: 600;
}

.service_liste li a
{
    color: #828282;
    padding-bottom: 1px;
    font-weight: 400;
}

.service_liste li a:hover
{
    color: var(--secondary-color);
}

.service_liste li
{
    margin-bottom: 10px;
}

br
{
    height: 1px;
    margin-bottom: 1rem;
    border: none;
    background-color: #828282;;
}

.pied_page
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.copyright
{
    color: #828282;
    display: flex;
    align-items: center;
}

.copyright span
{
    margin-left: 8px;
    font-weight: 400;
    letter-spacing: 0.125rem;
}

.term_use a
{
    color: #828282;
    margin-left: 1.5rem;
}

.term_use a:hover
{
    color: rgb(23, 28, 57);
}

@media screen and (max-width:835px)
{
    .pied
    {
        flex-wrap: wrap;
        justify-content: left;
    }

    .services
    {
        flex-wrap: wrap;
        justify-content: left;
    }

    .service_liste
    {
        margin-left: 0;
        margin-right: 40px;
    }

    .reseau_social
    {
        margin-bottom: 1rem;
    }

    .pied_page
    {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width:500px)
{
    .service_liste
    {
        margin-bottom: 8px;
    }

    .reseau_social
    {
        justify-content: left;
    }

    .copyright
    {
        margin-bottom: 8px;
    }


    .profil .description p
    {
        justify-content: left;
        text-align: left;
    }

    .pied_page
    {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .term_use
    {
        display: flex;
        flex-direction: column;
    }

    .term_use a
    {
        margin-bottom: 5px;
    }
}