Hi @search4f,
If I understand correctly you want to have a logo on top of the mobile menu that opens once you click Hamburger menu icon.
Theme does not have an option to place a logo there out of the box but you can use class of the sidebar menu to target it and place the desired logo using custom CSS (Appearance->Customize->Additional CSS section), something like that:
.hfg_header .header-menu-sidebar .header-menu-sidebar-bg {
background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/WordPress_blue_logo.svg/768px-WordPress_blue_logo.svg.png);
background-position: top 10px left 10px;
background-size: 50px;
background-repeat: no-repeat;
}
Of course, place the desired image somewhere on your server and use it instead of the WordPress logo that I set in the example.