Hi janburg,
I’m assuming you want to get rid of the second contact form on the page that doesn’t have the reCaptcha underneath it, correct?
From running Inspect Element, I notice you’ve got an ordered list with a class of “form” that seems to be hardcoded into the template file.
The CSS code for this extra form is below and is on line 731 of your stylesheet. If you can’t find the hardcoded ordered list, “display:none;” will hide it until you can find it, as I’ve shown below.
#contact-page ol.forms { 3bef2.css:731
float: left;
list-style: none;
width: 100%;
margin: 10px 0 0;
display: none;
}
LMK if this helps.