Измените CSS
для заголовка с
#text-7 {
position: relative;
top: -210px;
}
На
@media only screen and (max-width: 768px) {
#text-7 {
position: absolute;
width: 100%;
top: 0;
left: 50%;
transform: translateX(-50%);
} }
И измените отступы на полях для следующего элемента для учета меню:
@media only screen and (max-width: 768px) {
.business-template .widget.widget_call_to_action_block .call-to-action-content-wrapper {
padding: 25px 0;
margin: 200px 0 0;
} }