Hi There,
Thanks for writing in! We need to reduce the width of the logo when the site is viewed in certain screen size. You can add this under Custom > CSS in the Customizer.
@media (min-width: 979px) and (max-width: 1105px) {
.x-brand {
max-width: 300px;
}
}
Hope it helps, Cheers!