Got rid of the before header area. It’s code said this in the child theme:
.before-header {
background-color: #fff;
line-height: 1;
width: 100%;
z-index: 99;
}
and it worked after changing it to this:
.before-header {
background-color: #fff;
display: none;
line-height: 1;
width: 100%;
z-index: 99;
}