HI! Thanks for replying. Yes I solved the logo problem because I created 2 sections one for mobile and another one for desktop.
In case someone comes across this topic, you can hide a desktop section with this code:
@media only screen and (max-width:767px) {
section[data-section-id="Your Section ID here"]
{display:none}
}
And you can hide a mobile section with this code:
@media screen and (min-width: 768px) {
section[data-section-id=“Your Section ID here”] {
display:none !important;
}
}