Hi dizees
I tested on IP7 and IP6 and the form shows fine
I see issue with the text below only:
It due to your custom css in the 'custom.css' file in template:
#guru-component .uk-width-1-2 {width: auto!important;}
If you want to apply this custom css to desktop view, you should use media queries like:
@media (min-width: 768px) {
#guru-component .uk-width-1-2 {width: auto!important;}
}
Regards