How to change header icons
you need to change them with own custom css
Example for cart icon
#header .fa-shopping-bag:before{
content: " code of icon" !important;
}
or with background
#header .fa-shopping-bag:before{
content: url(image.jpg) !important;
}