How can I change mobile footer text color in Crave theme?

Hello! I would like to ask on how to make the footer navigation text black only on mobile, while have the header text white on mobile. On the desktop version it should stay all dark. My theme is Crave and my website is www.aromeli.com.

Thanks a lot for the help!!!

@ugneugne You will need to edit your code and add custom CSS in section-footer.css file

@media screen and (max-width: 768px){
ul.footer-block__details-content li a {
    color: #000 !important;
}
}

Thanks a lot! Works perfectly !