+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time (currently 5:40am in the UK)
A - A - A

Cookie Policy

Our website uses cookies to distinguish you from other users of our website. This helps us to provide you with a good experience when you browse our website and also allows us to improve our site.

A cookie is a small binary file that we store on your browser or your computer or device if you agree. Cookies contain information that is transferred to your computer’s hard drive or device hardware.

We use the following cookies:

  • Essential cookies. These are cookies that are required for the operation of our website. They include, for example, cookies that enable you to log into secure areas of our website, use a shopping cart or make use of e-billing services.
  • Analytics/Tracking cookies. These allow us to recognise and count the number of visitors and to see how visitors move around our website and how they are using it. This helps us to improve the way our website works, for example, by ensuring that users are finding what they are looking for easily.
  • Functional cookies. These are used to recognise you when you return to our website. This enables us to personalise our content for you, greet you by name and remember your preferences (for example, your choice of language or region).

You can find more information about the individual cookies we use and the purposes for which we use them in the table below:

Cookie Purpose More information
XSRF XSRF (Cross-site Request Forgery) cookie used to confirm the interaction between the web server and the clients browser to prevent malicious intervention by unauthorised software on the clients machine.

Cookie lifetime, 1 hour from last activity

The cookie employs AES256 encryption.

Does not store any personally identifiable information.

Session Cookie This cookie keeps track of details regarding the user’s session and where they are in the process flow due to HTTP being a stateless method.

Cookie lifetime, 1 hour from last activity.

The cookie employs AES256 encryption.

Does not store any personally identifiable information

_li_id This cookie only provides insights into the behaviour on the website. Cookie lifetime may be two years from last activity.
_li_ses This cookie only provides insights into the behaviour on the website, whilst you are on the website. Cookie lifetime is only for the current session

Please note that the following third parties may also use cookies, over which we have no control. These named third parties may include, for example, advertising networks and providers of external services like web traffic analysis services. These third-party cookies are likely to be analytical cookies or performance cookies or targeting cookies:

  • Leadinfo B.V.

You can choose to disable analytics cookies that we can set by clicking on the button in our Cookie Settings tool.

However, if you use your browser settings to block all cookies (including essential cookies) you may not be able to access all or parts of our website.


Policy last updated/issued: 24/02/2025. V1.0

function submitForm(formId) { event.preventDefault(); var originalButtonText = document.getElementById("submitButton").innerHTML; document.getElementById("submitButton").innerHTML = ' Sending...'; document.getElementById("submitButton").disabled = true; const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { document.getElementById("submitButton").innerHTML = originalButtonText; document.getElementById("submitButton").disabled = false; if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status === 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }); }