How to move SVG icons on header in electro theme

Dear community, I’m using shopify electro theme, and I have added svg icons on header but they are full width I want to start them from “home menu” not from “All departments”
Store URL: https://electroshop.pro/
Explanation in image

#section-header-department {
    padding-left: 285px !important;
}

Add the above code to your theme’s CSS file.

Thanks, that worked on the desktop but it also moved on mobile site and it’s not looking good

Please replace the above code with this one.

@media screen and (min-width: 768px) {
#section-header-department {
    padding-left: 285px !important;
}
}