#footer_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #152136;
}

#footer_copyright {
    margin: 1rem 0 1rem 2rem;

    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

#footer_socials_list {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

.footer_socials_list_item_anchor {
    display: block;
}

.footer_socials_list_item_img {
    display: block;

    height: 1.5rem;
    width: auto;
}

#footer_legal_list {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

.footer_legal_list_item_anchor {
    display: block;
    position: relative;
    margin-right: 2rem;

    text-decoration: none;

    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}


/* Media Queries */
@media only screen and (min-width: 769px) {
    .footer_legal_list_item_anchor::after {
        content: "";
    
        position: absolute;
        bottom: -0.3rem;
        left: 0;
        width: 0%;
        
        border-bottom: 0.15rem solid #ffffff;
    
        transition: 200ms ease-in-out;
    }
    
    .footer_legal_list_item_anchor:hover::after {
        width: 100%;
    }
}
@media only screen and (max-width: 750px) {
    #footer_wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #footer_copyright {
        margin: 1rem 0;
    }
    .footer_legal_list_item_anchor {
        margin: 1rem 0;
    }
    .footer_legal_list_item_anchor:first-of-type {
        margin-right: 0.5rem;
    }
    .footer_legal_list_item_anchor:last-of-type {
        margin-left: 0.5rem;
    }
}
