Circle follow not working on published site due to this code

Does anyone know why this code on the ‘inside <head? tag’ is stopping the ‘circle follow’ on the published site? Thanks :slight_smile:

.no-scroll {overflow:hidden;} >/style> ---------- Here is my site Read-Only: https://preview.webflow.com/preview/rm-lee-cellar-conversions?utm_medium=preview_link&utm_source=designer&utm_content=rm-lee-cellar-conversions&preview=5041d28741fae9d48e5180d870ddef05&workflow=preview

You have to close your style block.

<style>
.no-scroll {overflow:hidden;}
>/style>

Should be …

<style>
.no-scroll {overflow:hidden;}
</style>

As soon as i change that it the nav menu starts scrolling again?