Hey@Bridal33262 -- thanks so much for your post! Sorry to hear about this -- but I know what’s going on and have a solution for you! Yay! 🤗
I was able to inspect the code on your site and I noticed that your theme has automatically added some extra inline styles to the embed code.
Adding overflow-y:auto to this element can cause the div element itself to scroll -- this scroll is very small, so it can be hard to spot. Normally the scrolling elements are: your page and the iframe (if the height of the embed cannot contain all the content). When this style is applied, it adds another scrolling element behind the iframe which iOS especially does not handle well.
To fix this, you can add the following code directly beneath your Calendly code in the same custom code block:
<style>
.calendly-inline-widget { overflow-y: hidden !important; }
</style>
I hope this helps! Let me know if you run into any issues.