How can I remove the header border in the Motion theme?

Hey, im trying to completely remove the 1px white header border on this website, it only appears when you scroll/sticky header. The theme is Motion, appreciate the help!

https://focalelite.com/

PW: sheta

Hi @Anonymous
You can try follow this path:
Themes => edit code => asset => theme.css
and add this code to bottom of the file theme.css

.site-header{
border: none!important;
}

@Anonymous

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
.site-header { border-bottom: none !important;}