#mm_footer .container{
    padding:30px 0;
}
    #mm_footer .m_footer_link,
    #mm_footer .subtitle{
        color: #dcdcdc;
        font-size: 1.1em;
        line-height: 1.5em;
    }
    #mm_footer .subtitle{
        font-family: "Open Sans", sans-serif;
        font-size: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        min-height: 40px;
    }

/**
    NAV
 */
#mm_footer .nav_links {
    display: flex;
    justify-content: flex-start;
}
    #mm_footer .nav_links .col:first-child > ul li:last-child{
        margin-top:10px;
    }
        #mm_footer .nav_links img{
            max-width: 100%;
        }
            #mm_footer a .storecommander_logo{
                width: 100%;
                max-width: 233px;
                height:auto;
            }
             #mm_footer a .storecommander_logo > *{
                 fill:#fff;
             }

/**
    LEGAL
 */
#mm_footer .legal_links ul{
    display:flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
}
    #mm_footer .legal_links li:not(:last-child){
        margin-right: 20px;
    }
        #mm_footer .legal_links li .m_footer_link:hover,
        #mm_footer .nav_links li .m_footer_link:hover{
            text-decoration:underline;
        }

            #mm_footer .legal_links li .m_footer_link{
                font-size: 0.9em;
            }

/**
    SOCIAL
 */
#mm_footer .social_links{
    background: #fff;
    padding: 30px 0;
}
    #mm_footer .social_links ul{
        display:flex;
        flex-direction: row;
        justify-content: center;
        margin-right: 0;
    }
        #mm_footer .social_links li.with_icon:not(:last-child){
            margin-right: 10px;
        }
        #mm_footer .social_links li.with_icon .m_footer_link{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: #000;
            border-radius: 50px;
            transition:300ms background ease-in-out;
            font-size: inherit;
        }
            #mm_footer .social_links li.with_icon i{
                font-size: 2.2em;
                color: #dcdcdc;
                transition:300ms color ease-in-out;
            }
                #mm_footer .social_links li.with_icon .m_footer_link:hover i{
                    color: #fff;
                }
        #mm_footer .social_links li.with_icon .m_footer_link:hover{
            background: var(--red-sc);
        }

@media screen and (max-width: 992px) {
    #mm_footer .nav_links {
        flex-direction: column;
    }
        #mm_footer .legal_links ul{
            flex-direction: row;
            justify-content: space-between;
            padding: 0 15px;
        }
}