First, the code you pasted has a syntax error. (The curly quote “ is not valid to set an HTML attribute.) But you don't need the <script> that loads forms2.min.js here at all. You're already loading it on your page, so that <script> can be removed.
The other inline <script> and the <div> after it need to be placed after the line that loads forms2.min.js, which is line 345 of the document:
Next, you need to resolve the conflict between the onSuccess listener you have in https://www.akumina.com/s/68dad9.js and this one. You don't want both.
... View more