footer
{
    /*position: relative;*/
    width: 100%;
    height: auto;
    padding-top: 80px;
    border-radius: 10px;
    border: 2px solid rgb(255, 224, 209);
    background-color: white;
    z-index: 98 ;
}

.footer_container
{
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
    /*display: flex;
    flex-direction: column;
    align-items: center;*/
}

.footer_essentiel
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_entreprise
{
    width: calc(20% - 30px);
    margin: 0 15px 50px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/*.footer_entreprise :nth-child(1)
{
    width: 50px;
    height: 50px;
}*/


.footer_img
{
    width: 50px;
    height: 50px;
}

.footer_entreprise p
{
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 24px;
}

.footer_entreprise .footer_media
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer_entreprise .footer_media li
{
    list-style: none;
}

.footer_entreprise .footer_media li a
{
    width: 44px;
    height: 44px;
    margin-right: 10px;
    color: white;
    background-color: rgba(3, 127, 243, 0.5);
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
}

.footer_entreprise .footer_media li a :hover
{
    background-color: #037ef3;
}

.footer_service
{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.footer_service h6
{
    color: #585978;
    margin: 10px 0 35px;
    font-size: 16px;
    font-weight: 600;
}

.footer_service .liens
{
    align-items: center;
}

.footer_service .liens li 
{
    list-style: none;
}

.footer_essentiel .footer_service .liens li a
{
    color: #585978;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 32px;
    transition: all 0.3s ease-out;
}

.footer_essentiel .footer_service .liens li a:hover
{
    color: #037ef3;
}

.footer_design_by
{
    padding: 20px 0;
    border-top: 1px solid rgba(88, 89, 120, 0.3s);
}

.footer_design_by p
{   
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(88, 89, 120, 0.6s);

}

.footer_design_by p a
{   
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.footer_design_by p a :hover
{
    color: #037ef3;
}

@media (max-width: 992px)
{
    .footer_container
    {
        max-width: 960px;
    }

    .footer_entreprise,.footer_entreprise:nth-child(1)
    {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px)
{
    .footer_container
    {
        max-width: 760px;
    }

    .footer_entreprise,.footer_entreprise:nth-child(1)
    {
        width: 100%;
        margin: 0 10px 50px;
    }
}

@media (max-width: 450px)
{
    footer
    {
        
        width: 100vw;
    }
    .footer_container
    {
        max-width: 760px;
    }

    .footer_entreprise,.footer_entreprise:nth-child(1)
    {
        width: 100%;
        margin: 0 10px 50px;
    }
}