#footer_container{
    display: flex;
    align-items: stretch;

    height: 43px;
    margin-top: auto;    
    z-index: 999;
}
#footer_left{
    display: flex;
    align-items: center;
    justify-content: start;

    width: 55.5%;
}
#footer{
    display: flex;
    align-items: center;
    justify-content: start;

    padding-left: 100px;
}   
#exeltis_logo_mobile {
    display: none;
}

#footer_right{
    display: flex;
    align-items: center;
    justify-content: end;

    width: 44.5%;
    padding-right: 100px;

    -webkit-transition: background-color 0.7s ease;
    transition: background-color 0.7s ease;
}
#politic_footer{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}        
#politic_footer span{    
    color: #0071BB;
    font-weight: 400;
}
#politic_footer a{
    width: fit-content;
    margin: 0;
    cursor: pointer;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #061D41;
    text-decoration: none; 

}


/*RESPONSIVE*/
@media (max-width: 520px) {
    #footer_container{
        flex-wrap: wrap;
        gap: 20px;

        height: auto;
    }
    #footer_left{
        width: 100%;
    }
    #footer{
        flex-direction: column;
        gap: 20px;

        padding: 20px 20px 0 20px;
        margin: auto;
    }
    #exeltis_logo_mobile {
        display: block;
        width: 151px;
    }
    #footer p{
        margin: auto;

        font-size: 12px;        
    }

    #footer_right{
        width: 100%;
        background-color: #FFFFFF !important;
        padding: 0 20px;
    }
    #politic_footer{
        gap: 10px;
    }
    #politic_footer a{
        width: max-content;
        font-size: 12px;
    }
}