Scrolling on mobile not working

When viewing the live site on mobile it scrolls down fine but wont scroll back up the page. How do i fix that and set it so that my site will not scroll horizontally on mobile view. I set the overflow as hidden trying to make it so it doesn’t scrolls horizontally but then it doesnt scroll up or down at all. I shared the read only link below. Any help would be much appreciated


Here is my site Read-Only: Webflow - Cohere&now

Hello

Remove overflow hidden from body and add this to the project custom code.

<style>
body {
     overflow-x: hidden;
}
</style>

Do i add that code to an embed element? Where do i put the element?

I added an embed element with that code and its still scrolling horizontally. Thanks the help. i removed the hide overflow and that fixed the up and down scrolling