You need to remove this CSS rule that you have:
.d-header #site-logo {
max-height: 35px !important;
}
Maybe it’s something written in your theme, so you need to overwrite it.
Note that because the rule uses an !important, you’ll have to add this as well in your own rule:
.d-header #site-logo {
max-height: none !important;
}
