Lead #3827
Best Contact
—
Email
info@gdoc.co.uk (generic)
Override
Captured Pages
http://gdoc.co.uk/staff
Status: 404
Emails:
View text
http://gdoc.co.uk/our-team
Status: 404
Emails:
View text
http://gdoc.co.uk/meet-the-team
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Meet The Team Book Appointment Call 01371 502088 We're committed to delivering the best in Osteopathy, Physiotherapy, Massage & Perinatal Care, making a difference and putting you at the centre of your recovery. OUR TEAM Meet the Practitioners Delivering Your Care... Team Members Carousel * { margin: 0; padding: 0; box-sizing: border-box; } .team-carousel-container { width: 100%; position: relative; overflow: hidden; font-family: 'Montserrat', sans-serif !important; background: transparent; padding: 40px 0; } .team-carousel-container * { font-family: 'Montserrat', sans-serif !important; } .carousel-wrapper { position: relative; width: 100%; overflow: hidden; } .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 20; opacity: 0.8; padding: 0; } .nav-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.2); } .nav-arrow img { width: 30px; height: 30px; filter: brightness(0) invert(1); /* Makes the SVG white */ transition: all 0.3s ease; } .nav-arrow.prev { left: 20px; } .nav-arrow.prev img { transform: rotate(180deg); /* Flip the arrow for left direction */ } .nav-arrow.next { right: 20px; } .carousel-track { display: flex; transition: transform 0.5s ease; width: 100%; } .team-member { flex: 0 0 280px; margin: 0 10px; position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; transition: all 0.3s ease; } .team-member:hover { text-decoration: none; color: inherit; transform: translateY(-5px); } .member-image { width: 100%; height: 350px; background-size: cover; background-position: center; position: relative; border-radius: 15px; overflow: hidden; } .member-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); transition: all 0.3s ease; border-radius: 15px; } .team-member:hover .member-overlay { background: rgba(0, 0, 0, 0); } .member-info { position: absolute; bottom: 20px; left: 20px; color: white; z-index: 10; } .person-icon { position: absolute; top: 15px; left: 15px; width: 24px; height: 24px; z-index: 10; opacity: 0.9; } .member-name { font-size: 15px !important; font-weight: 500 !important; margin-bottom: 4px; color: white !important; } .member-title { font-size: 15px !important; font-weight: 300 !important; color: white !important; opacity: 0.9; } .carousel-nav { display: none; } .nav-dots { display: none; } .nav-dot { display: none; } @media (max-width: 1200px) { .team-member { flex: 0 0 250px; } } @media (max-width: 768px) { .team-member { flex: 0 0 220px; margin: 0 8px; } .member-image { height: 300px; } .nav-arrow img { width: 25px; height: 25px; } .nav-arrow.prev { left: 15px; } .nav-arrow.next { right: 15px; } } @media (max-width: 480px) { .team-member { flex: 0 0 200px; margin: 0 5px; } .member-image { height: 280px; } .member-info { bottom: 15px; left: 15px; } .person-icon { top: 12px; left: 12px; width: 20px; height: 20px; } .nav-arrow img { width: 22px; height: 22px; } .nav-arrow.prev { left: 10px; } .nav-arrow.next { right: 10px; } } /* Elementor override styles */ .elementor-html-container .team-carousel-container, .elementor-widget-html .team-carousel-container { font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-name, .elementor-widget-html .member-name { font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-title, .elementor-widget-html .member-title { font-size: 15px !important; font-weight: 300 !important; font-family: 'Montserrat', sans-serif !important; } Angus Osteopath Tegan Physiotherapist Jason Osteopath Charlotte Sports Therapist Max Osteopath Hadi Osteopath Kim Massage Scott Massage Lindsay Pre & Postnatal Consultant document.addEventListener('DOMContentLoaded', function() { const track = document.getElementById('carouselTrack'); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); const members = document.querySelectorAll('.team-member'); let currentIndex = 0; let membersToShow = getMembersToShow(); const totalMembers = members.length; // Clone members for endless scrolling const firstClones = []; const lastClones = []; function getMembersToShow() { const width = window.innerWidth; if (width >= 1200) return 4; if (width >= 768) return 3; if (width >= 480) return 2; return 1; } function setupInfiniteScroll() { // Clear existing clones firstClones.forEach(clone => clone.remove()); lastClones.forEach(clone => clone.remove()); firstClones.length = 0; lastClones.length = 0; // Create clones for smooth infinite scrolling for (let i = 0; i < membersToShow; i++) { // Clone first members and append to end const firstClone = members[i].cloneNode(true); firstClone.classList.add('clone'); track.appendChild(firstClone); firstClones.push(firstClone); // Clone last members and prepend to beginning const lastClone = members[totalMembers - 1 - i].cloneNode(true); lastClone.classList.add('clone'); track.insertBefore(lastClone, track.firstChild); lastClones.push(lastClone); } // Set initial position to show original members currentIndex = membersToShow; updateCarousel(false); // No transition for initial setup } function updateCarousel(withTransition = true) { const memberWidth = members[0] ? members[0].offsetWidth + 20 : 300; const translateX = -(currentIndex * memberWidth); if (withTransition) { track.style.transition = 'transform 0.5s ease'; } else { track.style.transition = 'none'; } track.style.transform = `translateX(${translateX}px)`; } function nextSlide() { currentIndex++; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex >= totalMembers + membersToShow) { currentIndex = membersToShow; updateCarousel(false); } }, 500); } function prevSlide() { currentIndex--; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex < 0) { currentIndex = totalMembers - 1; updateCarousel(false); } }, 500); } // Event listeners nextBtn.addEventListener('click', nextSlide); prevBtn.addEventListener('click', prevSlide); // Auto-play functionality let autoPlayInterval = setInterval(nextSlide, 4000); // Pause auto-play on hover const container = document.querySelector('.team-carousel-container'); container.addEventListener('mouseenter', () => clearInterval(autoPlayInterval)); container.addEventListener('mouseleave', () => { autoPlayInterval = setInterval(nextSlide, 4000); }); // Enhanced touch/swipe support let startX = 0; let startY = 0; let isDragging = false; let hasMoved = false; track.addEventListener('touchstart', (e) => { startX = e.touches[0].clientX; startY = e.touches[0].clientY; isDragging = true; hasMoved = false; clearInterval(autoPlayInterval); }, { passive: true }); track.addEventListener('touchmove', (e) => { if (!isDragging) return; const currentX = e.touches[0].clientX; const currentY = e.touches[0].clientY; const diffX = Math.abs(startX - currentX); const diffY = Math.abs(startY - currentY); // Only prevent default if horizontal swipe is more significant if (diffX > diffY && diffX > 10) { e.preventDefault(); hasMoved = true; } }, { passive: false }); track.addEventListener('touchend', (e) => { if (!isDragging) return; const endX = e.changedTouches[0].clientX; const diffX = startX - endX; if (hasMoved && Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isDragging = false; hasMoved = false; // Restart auto-play autoPlayInterval = setInterval(nextSlide, 4000); }, { passive: true }); // Mouse drag support for desktop let mouseStartX = 0; let isMouseDragging = false; track.addEventListener('mousedown', (e) => { mouseStartX = e.clientX; isMouseDragging = true; track.style.cursor = 'grabbing'; clearInterval(autoPlayInterval); e.preventDefault(); }); document.addEventListener('mousemove', (e) => { if (!isMouseDragging) return; e.preventDefault(); }); document.addEventListener('mouseup', (e) => { if (!isMouseDragging) return; const endX = e.clientX; const diffX = mouseStartX - endX; if (Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isMouseDragging = false; track.style.cursor = 'grab'; autoPlayInterval = setInterval(nextSlide, 4000); }); // Keyboard navigation document.addEventListener('keydown', (e) => { if (e.key === 'ArrowLeft') { prevSlide(); } else if (e.key === 'ArrowRight') { nextSlide(); } }); // Responsive handling window.addEventListener('resize', () => { const newMembersToShow = getMembersToShow(); if (newMembersToShow !== membersToShow) { membersToShow = newMembersToShow; setupInfiniteScroll(); } else { updateCarousel(false); } }); // Initialize setupInfiniteScroll(); }); Request a Free Phone Consultation * { margin: 0; padding: 0; box-sizing: border-box; } .consultation-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .consultation-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; } .main-title { font-size: 35px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; } .subtitle { font-size: 15px !important; font-weight: 400 !important; color: #666 !important; margin-bottom: 30px !important; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn { background-color: #00211B !important; color: white !important; padding: 15px 30px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; text-decoration: none !important; display: inline-block; margin-bottom: 40px; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn:hover { background-color: #003d2b !important; text-decoration: none !important; color: white !important; transform: translateY(-2px); } .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .form-group { display: flex; flex-direction: column; } .form-group.full-width { grid-column: 1 / -1; } .form-group.button-group { grid-column: 1 / -1; display: flex; justify-content: flex-end; } .form-input { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-input:focus { outline: none !important; border-color: #00211B !important; } .form-textarea { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; min-height: 120px !important; resize: vertical !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-textarea:focus { outline: none !important; border-color: #00211B !important; } .send-btn { background-color: #00211B !important; color: white !important; padding: 15px 40px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; letter-spacing: normal !important; text-transform: none !important; width: fit-content; margin-left: auto; display: block; } .send-btn:hover { background-color: #003d2b !important; color: white !important; transform: translateY(-2px); } .send-btn:disabled { background-color: #ccc !important; cursor: not-allowed; transform: none; } .right-content { flex: 1; position: relative; background-image: url('https://gdoc.co.uk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-15-at-12.53.40.jpeg'); background-size: cover; background-position: center; min-height: 500px; } .testimonial-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 40px 30px 30px; color: white; } .quote-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.9; } .testimonial-text { font-size: 17px !important; font-weight: 400 !important; line-height: 1.5 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; opacity: 0.9 !important; color: white !important; } /* Success Modal */ .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 40px; border-radius: 15px; max-width: 500px; width: 90%; position: relative; text-align: center; font-family: 'Montserrat', sans-serif !important; } .modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: #666; } .modal-close:hover { color: #333; } .modal-title { font-size: 24px; font-weight: 600; color: #00211B; margin-bottom: 15px; } .modal-text { font-size: 16px; color: #666; line-height: 1.5; } .error-message { background: #fee; color: #c33; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: none; } @media (max-width: 768px) { .consultation-section { flex-direction: column; } .left-content { padding: 40px 30px; } .main-title { font-size: 28px !important; } .contact-form { grid-template-columns: 1fr; gap: 15px; } .right-content { min-height: 400px; } .testimonial-overlay { padding: 30px 20px 20px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .main-title { font-size: 24px !important; } .form-input, .form-textarea { font-size: 16px !important; } .testimonial-overlay { padding: 25px 15px 15px; } .testimonial-text { font-size: 15px !important; } .quote-icon { width: 30px; height: 30px; } } /* Enhanced Elementor override styles */ body .elementor-html-container .consultation-section *, body .elementor-widget-html .consultation-section *, .elementor .consultation-section *, div.elementor-element .consultation-section * { font-family: 'Montserrat', sans-serif !important; } body .elementor-html-container .main-title, body .elementor-widget-html .main-title, .elementor .main-title, div.elementor-element .main-title { font-size: 35px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; } body .elementor-html-container .subtitle, body .elementor-widget-html .subtitle, .elementor .subtitle, div.elementor-element .subtitle { font-size: 15px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: #666 !important; margin-bottom: 30px !important; } body .elementor-html-container .form-input, body .elementor-html-container .form-textarea, body .elementor-widget-html .form-input, body .elementor-widget-html .form-textarea, .elementor .form-input, .elementor .form-textarea, div.elementor-element .form-input, div.elementor-element .form-textarea { font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; background: white !important; color: #333 !important; border: 2px solid #ddd !important; border-radius: 15px !important; padding: 15px !important; } body .elementor-html-container .book-appointment-btn, body .elementor-widget-html .book-appointment-btn, .elementor .book-appointment-btn, div.elementor-element .book-appointment-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; border-radius: 3px !important; } body .elementor-html-container .send-btn, body .elementor-widget-html .send-btn, .elementor .send-btn, div.elementor-element .send-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; border-radius: 3px !important; letter-spacing: normal !important; text-transform: none !important; } body .elementor-html-container .testimonial-text, body .elementor-widget-html .testimonial-text, .elementor .testimonial-text, div.elementor-element .testimonial-text { font-size: 17px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; line-height: 1.5 !important; } body .elementor-html-container .testimonial-author, body .elementor-widget-html .testimonial-author, .elementor .testimonial-author, div.elementor-element .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } Request a Free Phone Consultation In pain? Got questions? Fill in your details below to arrange a free telephone consultation with our experienced team, to find out more about you and see how we might be able to help. Request A Free Phone Consultation Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. A great team. × Message Sent Successfully! Thank you for your message. We'll get back to you as soon as possible to schedule your free phone consultation. document.addEventListener('DOMContentLoaded', function() { const form = document.getElementById('consultationForm'); const modal = document.getElementById('successModal'); const closeModalBtn = document.getElementById('closeModal'); const submitBtn = document.getElementById('submitBtn'); const errorMessage = document.getElementById('errorMessage'); // Form submission form.addEventListener('submit', function(e) { e.preventDefault(); // Disable submit button to prevent double submission submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; // Hide any previous error messages errorMessage.style.display = 'none'; // Get form data const formData = new FormData(form); const formObject = {}; // Convert FormData to regular object for (let [key, value] of formData.entries()) { formObject[key] = value; } console.log('Form data to be sent:', formObject); // Send data to webhook fetch('https://hook.eu2.make.com/iguj67plj8cegyloh7snhqbbrugs9mxe', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formObject) }) .then(response => { console.log('Response status:', response.status); if (response.ok) { return response.text(); // Make.com webhooks often return text, not JSON } else { throw new Error(`HTTP error! status: ${response.status}`); } }) .then(data => { console.log('Success:', data); showSuccessModal(); form.reset(); }) .catch((error) => { console.error('Error:', error); showErrorMessage('Sorry, there was an error sending your message. Please try again.'); }) .finally(() => { // Re-enable submit button submitBtn.disabled = false; submitBtn.textContent = 'Send Message'; }); }); function showSuccessModal() { modal.style.display = 'flex'; document.body.style.overflow = 'hidden'; } function hideSuccessModal() { modal.style.display = 'none'; document.body.style.overflow = 'auto'; } function showErrorMessage(message) { errorMessage.textContent = message; errorMessage.style.display = 'block'; // Scroll to error message errorMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); } // Close modal events closeModalBtn.addEventListener('click', hideSuccessModal); modal.addEventListener('click', function(e) { if (e.target === modal) { hideSuccessModal(); } }); // Close modal with ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && modal.style.display === 'flex') { hideSuccessModal(); } }); }); Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more Location Conveniently located in the centre of Great Dunmow, we are easily accessible for all our clients with Chequers Lane car park just 2 mins walk away. Disabled parking is available on site by prior arrangement. Please call us to book. Town Centre Location Disabled Parking On Site Minutes From The M11 "Helping You Move Better, Feel Stronger, Live Freer." Facebook-f Instagram X-twitter Tiktok Get in touch 12 Stortford Road, Great Dunmow, CM6 1DA info@gdoc.co.uk 01371 502088 Monday - Saturday : 08:00 - 20:00 More Info Meet The Team Our Values Pricing Blog Book Appointment © Great Dunmow Osteopathy & Health 2025 All rights reserved. Terms & Conditions Privacy Policy {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b6be105efd"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":8795,"title":"Our%205-Star%20Osteopathy%20%26%20Massage%20Team%20%7C%20GDOC","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"da34070fef","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"cb5148e856","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"db9f0e4dc6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/meet-the-team\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"8795\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "8795" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/7-osteopathy-techniques-to-improve-lower-back-pain-and-restore-movement\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"f0071a0873","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"7c9c745df8"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
http://gdoc.co.uk/team
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Osteopathy, Physiotherapy, Massage & Perinatal Care in Dunmow Book Appointment Call 01371 502088 Your local, family-run health clinic. Proud to serve Dunmow for over 20 years. Relieve Aches & Pains Fast Restore Natural Movement Multidisciplinary Team Personalised Care Plans Hands-On Treatment Feel Stronger, Move Better Recover With Confidence Focused Shockwave Therapy Trusted Local Clinic Relieve Aches Fast Restore Natural Movement Move Without Pain Personalised Expert Care Hands-On Treatment Feel Stronger Daily Recover With Confidence Whole Body Support Trusted Local Clinic @keyframes ar-seamless{ 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } /* move by the track’s full width */ } /* tighten spacing on very small screens */ @media (max-width:480px){ .ar-scroll > span{ padding:0 24px !important; } } /* accessibility */ @media (prefers-reduced-motion: reduce){ .ar-scroll{ animation: none !important; } } Healthcare You Can Rely On Welcome to Great Dunmow Osteopathy & Health. We’re here to help you feel your best. Whether you’re struggling with aches & pains, sports injuries, or looking for perinatal care, our friendly team provides expert support tailored to your needs. Our goal is to help you get back to feeling your best! Book Appointment Request a Free Phone Consultation Healthcare You Can Rely On Welcome to Great Dunmow Osteopathy & Health. We’re a friendly, down-to-earth clinic based in the heart of Great Dunmow, offering expert hands-on treatment for everything from long-standing back pain and postural issues to sports injuries and postnatal recovery. Book Appointment Request a Free Phone Consultation Why people choose us Trusted Locally for Over 20 Years 20+ Years of Local Care We’ve been proudly serving the Dunmow community for over 20 years, helping to relieve patients of pain across all ages, allowing them to move better and feel stronger. Trusted By The Community We’re a community based, family-run business and our experienced team works closely with local GP’s & specialists to ensure continuity of care for every patient. 5-Star Rated (100+ Reviews) Our patients consistently praise our care, with over 100x 5-Star reviews on google celebrating the difference we make to their health and wellbeing. Thousands of Happy Patients We have helped 1,000s of patients just like you to relieve their pain and recover so they can get back to doing the things they love without pain or restriction. Exceptional Hands-On Treatment We’re proud of our reputation in Dunmow for providing exceptional one-to-one, hands on treatment – you’ll never be left alone in a room on exercise equipment. The Latest Treatment Technology One of the most advanced tools we use, Focused Shockwave, tackles stubborn, long-term pain, augmenting your recovery & getting you back to feeling yourself, faster. Wide Range Of Services We offer a range of services under one roof to empower you & help you recover fast; Osteopathy, Physiotherapy, Shockwave, Massage & Perinatal Care. Convenient Opening Hours We know your time is valuable, so we’ve made it easier for you to book around work and family life by opening Monday to Saturday 08:00am to 08:00pm. Book Appointment Request A Free Phone Consultation 50+ Years of combined experience Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more HOW IT WORKS Our 3-step process to get you feeling better: Your First Appointment At your first appointment, we take the time to understand what's going on and learn more about you so that we can create a bespoke treatment plan designed specifically for you. BOOK NOW Step 1 Put Your Plan Into Motion During your treatment, we combine physical therapies and the latest technologies to relieve your pain. This multi-disciplinary care provides you faster, more effective results. BOOK NOW Step 2 Build Lasting Resilience With our care, you won’t just recover - you’ll develop lasting resilience. Our focus is on strengthening your body to reduce the risk of future setbacks & get you back to moving with confidence. BOOK NOW Step 3 Pain by Body Parts * { margin: 0; padding: 0; box-sizing: border-box; } .pain-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; background-color: #ECECE6 !important; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; } .pain-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; background-color: #ECECE6 !important; } /* Maximum specificity background color overrides */ html body .elementor-html-container .pain-section, html body .elementor-widget-html .pain-section, html body .elementor .pain-section, html body div.pain-section, html body .pain-section, .pain-section { background-color: #ECECE6 !important; background: #ECECE6 !important; } html body .elementor-html-container .left-content, html body .elementor-widget-html .left-content, html body .elementor .left-content, html body div.left-content, html body .left-content, .left-content { background-color: #ECECE6 !important; background: #ECECE6 !important; } /* Elementor override styles */ div.pain-section h2.title, .elementor-html-container .pain-section .title, .elementor-widget-html .pain-section .title { font-size: 35px !important; font-weight: 500 !important; color: #040D12 !important; font-family: 'Montserrat', sans-serif !important; line-height: 1.2 !important; margin-bottom: 40px !important; } div.pain-section span.pain-text, .elementor-html-container .pain-section .pain-text, .elementor-widget-html .pain-section .pain-text { font-size: 15px !important; font-weight: 500 !important; color: #333 !important; font-family: 'Montserrat', sans-serif !important; } .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .pain-item { background-color: white; padding: 25px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; cursor: pointer; text-decoration: none; color: inherit; } .pain-item:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); text-decoration: none; color: inherit; } .pain-content { display: flex; align-items: center; gap: 15px; } .pain-icon { width: 24px; height: 24px; object-fit: contain; } .pain-text { font-size: 15px !important; font-weight: 500 !important; color: #333; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; text-decoration-line: none !important; text-decoration-style: none !important; text-decoration-color: transparent !important; text-decoration-thickness: 0 !important; border: none !important; outline: none !important; } /* Specific fix for shoulder pain text decoration issue */ .pain-text, span.pain-text, .pain-item .pain-text, .pain-content .pain-text, .elementor .pain-text, .elementor-widget .pain-text, .elementor-html-container .pain-text, html body .pain-text, html body div .pain-text, html body span.pain-text { text-decoration: none !important; text-decoration-line: none !important; text-decoration-style: none !important; text-decoration-color: transparent !important; text-decoration-thickness: 0 !important; border-top: none !important; border-bottom: none !important; border-left: none !important; border-right: none !important; outline: none !important; box-shadow: none !important; } /* Additional overrides for any potential strikethrough */ .pain-text::before, .pain-text::after { display: none !important; content: none !important; } .arrow-icon { width: 20px; height: 20px; object-fit: contain; opacity: 0.7; } .right-image { flex: 1; position: relative; overflow: hidden; } .right-image img { width: 100%; height: 100%; object-fit: cover; border-top-right-radius: 15px; border-bottom-right-radius: 15px; } @media (max-width: 768px) { .pain-section { flex-direction: column; border-radius: 15px; } .left-content { padding: 40px 30px; } .title { font-size: 28px; margin-bottom: 30px; } .pain-grid { grid-template-columns: 1fr; gap: 15px; } .right-image img { border-radius: 0 0 15px 15px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .title { font-size: 24px; } .pain-item { padding: 20px 15px; } } Click on a condition to learn more about how we can help: Elbow Pain Back Pain Neck Pain Knee Pain Foot Pain Shoulder Pain #services-container:hover .elementor-icon, #services-container:hover .elementor-heading-title, #services-container:hover .elementor-text-editor { color: white !important; transition: color 0.3s ease; } /* For Font Awesome icons */ #services-container:hover .elementor-icon i { color: white !important; transition: color 0.3s ease; } /* For SVG icons */ #services-container:hover .elementor-icon svg { fill: white !important; transition: fill 0.3s ease; } /* For heading and text elements specifically */ #services-container:hover h1, #services-container:hover h2, #services-container:hover h3, #services-container:hover h4, #services-container:hover h5, #services-container:hover h6, #services-container:hover p { color: white !important; transition: color 0.3s ease; } AREAS OF SPECIALTY We bring together expert care from multiple disciplines to support your recovery Osteopathy Realign your body, ease daily tension. Focused Shockwave Therapy Stimulate healing, reduce chronic pain. .cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;} Physiotherapy Rebuild strength & restore movement. Sports Massage Release tightness, improve recovery. Perinatal Care Support before, during & after birth. Dry Needling Target muscle tension for faster relief. FREQUENTLY ASKED QUESTIONS We're here to help! Osteopathy, physiotherapy, massage... what's the difference? Osteopathy focuses on realigning the body, physiotherapy is all about rebuilding movement and strength and sports massage targets tight, tense muscles.At Great Dunmow Osteopathy & Health, you get the best of all worlds! Our team works together across these disciplines, combining their strengths to create a personalised treatment plan that addresses your unique needs. What can I expect at my first appointment? Your first appointment is all about understanding you and your needs. Your practitioner will discuss your symptoms, medical history, lifestyle, and goals. They’ll then perform a thorough assessment, which may include posture, movement, and muscle testing. By the end of the session, you’ll receive a personalised treatment plan outlining recommended therapies, the number of sessions, and the path forward - so you know exactly what to expect and how we can help you feel better. How many sessions will I need? The number of sessions depends on your individual needs, the condition being treated, and your goals. During your first appointment, your practitioner will assess your symptoms and provide a personalised treatment plan, outlining the recommended number of sessions and a clear path forward. This plan ensures you know what to expect and helps guide your recovery efficiently. Is treatment painful? Although most of our treatments are gentle, you may experience some mild soreness or tenderness after certain hands-on therapies, dry needling, or sports massage. This is usually short-lived and a normal part of the body responding to treatment. Your practitioner will always explain what to expect and adjust techniques to ensure you are comfortable. How is your perinatal care different from my midwife? While midwives provide essential medical care during pregnancy and birth, our pre and postnatal services focus on the extra support new parents often need but rarely receive. We offer birth preparation, including hypnobirthing techniques, breastfeeding guidance, and post-birth support similar to a doula, helping you adjust and recover at your own pace. We complement your midwife’s care, giving you the personalised attention and guidance that every parent deserves. Do you accept health insurance? All of our team are fully qualified and registered with their relevant professional bodies, and we can provide itemised receipts for every treatment, making it simple for you to submit a claim to your insurance provider. Can't Find The Answer You're Looking For? Request a Free Phone Consultation Get to Know Us Before You Visit Want a sneak peak?Download our welcome pack to learn more about us! Take A Look At Our Welcome Pack OUR TEAM Meet the Practitioners Delivering Your Care... Team Members Carousel * { margin: 0; padding: 0; box-sizing: border-box; } .team-carousel-container { width: 100%; position: relative; overflow: hidden; font-family: 'Montserrat', sans-serif !important; background: transparent; padding: 40px 0; } .team-carousel-container * { font-family: 'Montserrat', sans-serif !important; } .carousel-wrapper { position: relative; width: 100%; overflow: hidden; } .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 20; opacity: 0.8; padding: 0; } .nav-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.2); } .nav-arrow img { width: 30px; height: 30px; filter: brightness(0) invert(1); /* Makes the SVG white */ transition: all 0.3s ease; } .nav-arrow.prev { left: 20px; } .nav-arrow.prev img { transform: rotate(180deg); /* Flip the arrow for left direction */ } .nav-arrow.next { right: 20px; } .carousel-track { display: flex; transition: transform 0.5s ease; width: 100%; } .team-member { flex: 0 0 280px; margin: 0 10px; position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; transition: all 0.3s ease; } .team-member:hover { text-decoration: none; color: inherit; transform: translateY(-5px); } .member-image { width: 100%; height: 350px; background-size: cover; background-position: center; position: relative; border-radius: 15px; overflow: hidden; } .member-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); transition: all 0.3s ease; border-radius: 15px; } .team-member:hover .member-overlay { background: rgba(0, 0, 0, 0); } .member-info { position: absolute; bottom: 20px; left: 20px; color: white; z-index: 10; } .person-icon { position: absolute; top: 15px; left: 15px; width: 24px; height: 24px; z-index: 10; opacity: 0.9; } .member-name { font-size: 15px !important; font-weight: 500 !important; margin-bottom: 4px; color: white !important; } .member-title { font-size: 15px !important; font-weight: 300 !important; color: white !important; opacity: 0.9; } .carousel-nav { display: none; } .nav-dots { display: none; } .nav-dot { display: none; } @media (max-width: 1200px) { .team-member { flex: 0 0 250px; } } @media (max-width: 768px) { .team-member { flex: 0 0 220px; margin: 0 8px; } .member-image { height: 300px; } .nav-arrow img { width: 25px; height: 25px; } .nav-arrow.prev { left: 15px; } .nav-arrow.next { right: 15px; } } @media (max-width: 480px) { .team-member { flex: 0 0 200px; margin: 0 5px; } .member-image { height: 280px; } .member-info { bottom: 15px; left: 15px; } .person-icon { top: 12px; left: 12px; width: 20px; height: 20px; } .nav-arrow img { width: 22px; height: 22px; } .nav-arrow.prev { left: 10px; } .nav-arrow.next { right: 10px; } } /* Elementor override styles */ .elementor-html-container .team-carousel-container, .elementor-widget-html .team-carousel-container { font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-name, .elementor-widget-html .member-name { font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-title, .elementor-widget-html .member-title { font-size: 15px !important; font-weight: 300 !important; font-family: 'Montserrat', sans-serif !important; } Angus Osteopath Tegan Physiotherapist Jason Osteopath Charlotte Sports Therapist Max Osteopath Hadi Osteopath Kim Massage Scott Massage Lindsay Pre & Postnatal Consultant document.addEventListener('DOMContentLoaded', function() { const track = document.getElementById('carouselTrack'); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); const members = document.querySelectorAll('.team-member'); let currentIndex = 0; let membersToShow = getMembersToShow(); const totalMembers = members.length; // Clone members for endless scrolling const firstClones = []; const lastClones = []; function getMembersToShow() { const width = window.innerWidth; if (width >= 1200) return 4; if (width >= 768) return 3; if (width >= 480) return 2; return 1; } function setupInfiniteScroll() { // Clear existing clones firstClones.forEach(clone => clone.remove()); lastClones.forEach(clone => clone.remove()); firstClones.length = 0; lastClones.length = 0; // Create clones for smooth infinite scrolling for (let i = 0; i < membersToShow; i++) { // Clone first members and append to end const firstClone = members[i].cloneNode(true); firstClone.classList.add('clone'); track.appendChild(firstClone); firstClones.push(firstClone); // Clone last members and prepend to beginning const lastClone = members[totalMembers - 1 - i].cloneNode(true); lastClone.classList.add('clone'); track.insertBefore(lastClone, track.firstChild); lastClones.push(lastClone); } // Set initial position to show original members currentIndex = membersToShow; updateCarousel(false); // No transition for initial setup } function updateCarousel(withTransition = true) { const memberWidth = members[0] ? members[0].offsetWidth + 20 : 300; const translateX = -(currentIndex * memberWidth); if (withTransition) { track.style.transition = 'transform 0.5s ease'; } else { track.style.transition = 'none'; } track.style.transform = `translateX(${translateX}px)`; } function nextSlide() { currentIndex++; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex >= totalMembers + membersToShow) { currentIndex = membersToShow; updateCarousel(false); } }, 500); } function prevSlide() { currentIndex--; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex < 0) { currentIndex = totalMembers - 1; updateCarousel(false); } }, 500); } // Event listeners nextBtn.addEventListener('click', nextSlide); prevBtn.addEventListener('click', prevSlide); // Auto-play functionality let autoPlayInterval = setInterval(nextSlide, 4000); // Pause auto-play on hover const container = document.querySelector('.team-carousel-container'); container.addEventListener('mouseenter', () => clearInterval(autoPlayInterval)); container.addEventListener('mouseleave', () => { autoPlayInterval = setInterval(nextSlide, 4000); }); // Enhanced touch/swipe support let startX = 0; let startY = 0; let isDragging = false; let hasMoved = false; track.addEventListener('touchstart', (e) => { startX = e.touches[0].clientX; startY = e.touches[0].clientY; isDragging = true; hasMoved = false; clearInterval(autoPlayInterval); }, { passive: true }); track.addEventListener('touchmove', (e) => { if (!isDragging) return; const currentX = e.touches[0].clientX; const currentY = e.touches[0].clientY; const diffX = Math.abs(startX - currentX); const diffY = Math.abs(startY - currentY); // Only prevent default if horizontal swipe is more significant if (diffX > diffY && diffX > 10) { e.preventDefault(); hasMoved = true; } }, { passive: false }); track.addEventListener('touchend', (e) => { if (!isDragging) return; const endX = e.changedTouches[0].clientX; const diffX = startX - endX; if (hasMoved && Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isDragging = false; hasMoved = false; // Restart auto-play autoPlayInterval = setInterval(nextSlide, 4000); }, { passive: true }); // Mouse drag support for desktop let mouseStartX = 0; let isMouseDragging = false; track.addEventListener('mousedown', (e) => { mouseStartX = e.clientX; isMouseDragging = true; track.style.cursor = 'grabbing'; clearInterval(autoPlayInterval); e.preventDefault(); }); document.addEventListener('mousemove', (e) => { if (!isMouseDragging) return; e.preventDefault(); }); document.addEventListener('mouseup', (e) => { if (!isMouseDragging) return; const endX = e.clientX; const diffX = mouseStartX - endX; if (Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isMouseDragging = false; track.style.cursor = 'grab'; autoPlayInterval = setInterval(nextSlide, 4000); }); // Keyboard navigation document.addEventListener('keydown', (e) => { if (e.key === 'ArrowLeft') { prevSlide(); } else if (e.key === 'ArrowRight') { nextSlide(); } }); // Responsive handling window.addEventListener('resize', () => { const newMembersToShow = getMembersToShow(); if (newMembersToShow !== membersToShow) { membersToShow = newMembersToShow; setupInfiniteScroll(); } else { updateCarousel(false); } }); // Initialize setupInfiniteScroll(); }); Request a Free Phone Consultation * { margin: 0; padding: 0; box-sizing: border-box; } .consultation-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .consultation-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; } .main-title { font-size: 35px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; } .subtitle { font-size: 15px !important; font-weight: 400 !important; color: #666 !important; margin-bottom: 30px !important; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn { background-color: #00211B !important; color: white !important; padding: 15px 30px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; text-decoration: none !important; display: inline-block; margin-bottom: 40px; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn:hover { background-color: #003d2b !important; text-decoration: none !important; color: white !important; transform: translateY(-2px); } .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .form-group { display: flex; flex-direction: column; } .form-group.full-width { grid-column: 1 / -1; } .form-group.button-group { grid-column: 1 / -1; display: flex; justify-content: flex-end; } .form-input { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-input:focus { outline: none !important; border-color: #00211B !important; } .form-textarea { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; min-height: 120px !important; resize: vertical !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-textarea:focus { outline: none !important; border-color: #00211B !important; } .send-btn { background-color: #00211B !important; color: white !important; padding: 15px 40px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; letter-spacing: normal !important; text-transform: none !important; width: fit-content; margin-left: auto; display: block; } .send-btn:hover { background-color: #003d2b !important; color: white !important; transform: translateY(-2px); } .send-btn:disabled { background-color: #ccc !important; cursor: not-allowed; transform: none; } .right-content { flex: 1; position: relative; background-image: url('https://gdoc.co.uk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-15-at-12.53.40.jpeg'); background-size: cover; background-position: center; min-height: 500px; } .testimonial-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 40px 30px 30px; color: white; } .quote-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.9; } .testimonial-text { font-size: 17px !important; font-weight: 400 !important; line-height: 1.5 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; opacity: 0.9 !important; color: white !important; } /* Success Modal */ .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 40px; border-radius: 15px; max-width: 500px; width: 90%; position: relative; text-align: center; font-family: 'Montserrat', sans-serif !important; } .modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: #666; } .modal-close:hover { color: #333; } .modal-title { font-size: 24px; font-weight: 600; color: #00211B; margin-bottom: 15px; } .modal-text { font-size: 16px; color: #666; line-height: 1.5; } .error-message { background: #fee; color: #c33; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: none; } @media (max-width: 768px) { .consultation-section { flex-direction: column; } .left-content { padding: 40px 30px; } .main-title { font-size: 28px !important; } .contact-form { grid-template-columns: 1fr; gap: 15px; } .right-content { min-height: 400px; } .testimonial-overlay { padding: 30px 20px 20px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .main-title { font-size: 24px !important; } .form-input, .form-textarea { font-size: 16px !important; } .testimonial-overlay { padding: 25px 15px 15px; } .testimonial-text { font-size: 15px !important; } .quote-icon { width: 30px; height: 30px; } } /* Enhanced Elementor override styles */ body .elementor-html-container .consultation-section *, body .elementor-widget-html .consultation-section *, .elementor .consultation-section *, div.elementor-element .consultation-section * { font-family: 'Montserrat', sans-serif !important; } body .elementor-html-container .main-title, body .elementor-widget-html .main-title, .elementor .main-title, div.elementor-element .main-title { font-size: 35px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; } body .elementor-html-container .subtitle, body .elementor-widget-html .subtitle, .elementor .subtitle, div.elementor-element .subtitle { font-size: 15px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: #666 !important; margin-bottom: 30px !important; } body .elementor-html-container .form-input, body .elementor-html-container .form-textarea, body .elementor-widget-html .form-input, body .elementor-widget-html .form-textarea, .elementor .form-input, .elementor .form-textarea, div.elementor-element .form-input, div.elementor-element .form-textarea { font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; background: white !important; color: #333 !important; border: 2px solid #ddd !important; border-radius: 15px !important; padding: 15px !important; } body .elementor-html-container .book-appointment-btn, body .elementor-widget-html .book-appointment-btn, .elementor .book-appointment-btn, div.elementor-element .book-appointment-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; border-radius: 3px !important; } body .elementor-html-container .send-btn, body .elementor-widget-html .send-btn, .elementor .send-btn, div.elementor-element .send-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; border-radius: 3px !important; letter-spacing: normal !important; text-transform: none !important; } body .elementor-html-container .testimonial-text, body .elementor-widget-html .testimonial-text, .elementor .testimonial-text, div.elementor-element .testimonial-text { font-size: 17px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; line-height: 1.5 !important; } body .elementor-html-container .testimonial-author, body .elementor-widget-html .testimonial-author, .elementor .testimonial-author, div.elementor-element .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } Request a Free Phone Consultation In pain? Got questions? Fill in your details below to arrange a free telephone consultation with our experienced team, to find out more about you and see how we might be able to help. Request A Free Phone Consultation Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. A great team. × Message Sent Successfully! Thank you for your message. We'll get back to you as soon as possible to schedule your free phone consultation. document.addEventListener('DOMContentLoaded', function() { const form = document.getElementById('consultationForm'); const modal = document.getElementById('successModal'); const closeModalBtn = document.getElementById('closeModal'); const submitBtn = document.getElementById('submitBtn'); const errorMessage = document.getElementById('errorMessage'); // Form submission form.addEventListener('submit', function(e) { e.preventDefault(); // Disable submit button to prevent double submission submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; // Hide any previous error messages errorMessage.style.display = 'none'; // Get form data const formData = new FormData(form); const formObject = {}; // Convert FormData to regular object for (let [key, value] of formData.entries()) { formObject[key] = value; } console.log('Form data to be sent:', formObject); // Send data to webhook fetch('https://hook.eu2.make.com/iguj67plj8cegyloh7snhqbbrugs9mxe', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formObject) }) .then(response => { console.log('Response status:', response.status); if (response.ok) { return response.text(); // Make.com webhooks often return text, not JSON } else { throw new Error(`HTTP error! status: ${response.status}`); } }) .then(data => { console.log('Success:', data); showSuccessModal(); form.reset(); }) .catch((error) => { console.error('Error:', error); showErrorMessage('Sorry, there was an error sending your message. Please try again.'); }) .finally(() => { // Re-enable submit button submitBtn.disabled = false; submitBtn.textContent = 'Send Message'; }); }); function showSuccessModal() { modal.style.display = 'flex'; document.body.style.overflow = 'hidden'; } function hideSuccessModal() { modal.style.display = 'none'; document.body.style.overflow = 'auto'; } function showErrorMessage(message) { errorMessage.textContent = message; errorMessage.style.display = 'block'; // Scroll to error message errorMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); } // Close modal events closeModalBtn.addEventListener('click', hideSuccessModal); modal.addEventListener('click', function(e) { if (e.target === modal) { hideSuccessModal(); } }); // Close modal with ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && modal.style.display === 'flex') { hideSuccessModal(); } }); }); Location We’re conveniently located in the heart of Great Dunmow, just a 2-minute walk from Chequers Lane car park. For patients who have limited mobility, parking is available on site – simply give us a call or email in advance, and we’ll reserve a space for you. Town Centre Location Disabled Parking On Site Minutes From The M11 "Helping You Move Better, Feel Stronger, Live Freer." Facebook-f Instagram X-twitter Tiktok Get in touch 12 Stortford Road, Great Dunmow, CM6 1DA info@gdoc.co.uk 01371 502088 Monday - Saturday : 08:00 - 20:00 More Info Meet The Team Our Values Pricing Blog Book Appointment © Great Dunmow Osteopathy & Health 2025 All rights reserved. Terms & Conditions Privacy Policy {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"db9f0e4dc6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b6be105efd"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":3410,"title":"5-Star%20Osteopaths%2C%20Physiotherapists%20%26%20Massage%20%7C%20Great%20Dunmow","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"da34070fef","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"cb5148e856","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"3410\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "3410" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"f0071a0873","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"7c9c745df8"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
http://gdoc.co.uk/about
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Osteopathy, Physiotherapy, Massage & Perinatal Care in Dunmow Book Appointment Call 01371 502088 Your local, family-run health clinic. Proud to serve Dunmow for over 20 years. Relieve Aches & Pains Fast Restore Natural Movement Multidisciplinary Team Personalised Care Plans Hands-On Treatment Feel Stronger, Move Better Recover With Confidence Focused Shockwave Therapy Trusted Local Clinic Relieve Aches Fast Restore Natural Movement Move Without Pain Personalised Expert Care Hands-On Treatment Feel Stronger Daily Recover With Confidence Whole Body Support Trusted Local Clinic @keyframes ar-seamless{ 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } /* move by the track’s full width */ } /* tighten spacing on very small screens */ @media (max-width:480px){ .ar-scroll > span{ padding:0 24px !important; } } /* accessibility */ @media (prefers-reduced-motion: reduce){ .ar-scroll{ animation: none !important; } } Healthcare You Can Rely On Welcome to Great Dunmow Osteopathy & Health. We’re here to help you feel your best. Whether you’re struggling with aches & pains, sports injuries, or looking for perinatal care, our friendly team provides expert support tailored to your needs. Our goal is to help you get back to feeling your best! Book Appointment Request a Free Phone Consultation Healthcare You Can Rely On Welcome to Great Dunmow Osteopathy & Health. We’re a friendly, down-to-earth clinic based in the heart of Great Dunmow, offering expert hands-on treatment for everything from long-standing back pain and postural issues to sports injuries and postnatal recovery. Book Appointment Request a Free Phone Consultation Why people choose us Trusted Locally for Over 20 Years 20+ Years of Local Care We’ve been proudly serving the Dunmow community for over 20 years, helping to relieve patients of pain across all ages, allowing them to move better and feel stronger. Trusted By The Community We’re a community based, family-run business and our experienced team works closely with local GP’s & specialists to ensure continuity of care for every patient. 5-Star Rated (100+ Reviews) Our patients consistently praise our care, with over 100x 5-Star reviews on google celebrating the difference we make to their health and wellbeing. Thousands of Happy Patients We have helped 1,000s of patients just like you to relieve their pain and recover so they can get back to doing the things they love without pain or restriction. Exceptional Hands-On Treatment We’re proud of our reputation in Dunmow for providing exceptional one-to-one, hands on treatment – you’ll never be left alone in a room on exercise equipment. The Latest Treatment Technology One of the most advanced tools we use, Focused Shockwave, tackles stubborn, long-term pain, augmenting your recovery & getting you back to feeling yourself, faster. Wide Range Of Services We offer a range of services under one roof to empower you & help you recover fast; Osteopathy, Physiotherapy, Shockwave, Massage & Perinatal Care. Convenient Opening Hours We know your time is valuable, so we’ve made it easier for you to book around work and family life by opening Monday to Saturday 08:00am to 08:00pm. Book Appointment Request A Free Phone Consultation 50+ Years of combined experience Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more HOW IT WORKS Our 3-step process to get you feeling better: Your First Appointment At your first appointment, we take the time to understand what's going on and learn more about you so that we can create a bespoke treatment plan designed specifically for you. BOOK NOW Step 1 Put Your Plan Into Motion During your treatment, we combine physical therapies and the latest technologies to relieve your pain. This multi-disciplinary care provides you faster, more effective results. BOOK NOW Step 2 Build Lasting Resilience With our care, you won’t just recover - you’ll develop lasting resilience. Our focus is on strengthening your body to reduce the risk of future setbacks & get you back to moving with confidence. BOOK NOW Step 3 Pain by Body Parts * { margin: 0; padding: 0; box-sizing: border-box; } .pain-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; background-color: #ECECE6 !important; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; } .pain-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; background-color: #ECECE6 !important; } /* Maximum specificity background color overrides */ html body .elementor-html-container .pain-section, html body .elementor-widget-html .pain-section, html body .elementor .pain-section, html body div.pain-section, html body .pain-section, .pain-section { background-color: #ECECE6 !important; background: #ECECE6 !important; } html body .elementor-html-container .left-content, html body .elementor-widget-html .left-content, html body .elementor .left-content, html body div.left-content, html body .left-content, .left-content { background-color: #ECECE6 !important; background: #ECECE6 !important; } /* Elementor override styles */ div.pain-section h2.title, .elementor-html-container .pain-section .title, .elementor-widget-html .pain-section .title { font-size: 35px !important; font-weight: 500 !important; color: #040D12 !important; font-family: 'Montserrat', sans-serif !important; line-height: 1.2 !important; margin-bottom: 40px !important; } div.pain-section span.pain-text, .elementor-html-container .pain-section .pain-text, .elementor-widget-html .pain-section .pain-text { font-size: 15px !important; font-weight: 500 !important; color: #333 !important; font-family: 'Montserrat', sans-serif !important; } .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .pain-item { background-color: white; padding: 25px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; cursor: pointer; text-decoration: none; color: inherit; } .pain-item:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); text-decoration: none; color: inherit; } .pain-content { display: flex; align-items: center; gap: 15px; } .pain-icon { width: 24px; height: 24px; object-fit: contain; } .pain-text { font-size: 15px !important; font-weight: 500 !important; color: #333; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; text-decoration-line: none !important; text-decoration-style: none !important; text-decoration-color: transparent !important; text-decoration-thickness: 0 !important; border: none !important; outline: none !important; } /* Specific fix for shoulder pain text decoration issue */ .pain-text, span.pain-text, .pain-item .pain-text, .pain-content .pain-text, .elementor .pain-text, .elementor-widget .pain-text, .elementor-html-container .pain-text, html body .pain-text, html body div .pain-text, html body span.pain-text { text-decoration: none !important; text-decoration-line: none !important; text-decoration-style: none !important; text-decoration-color: transparent !important; text-decoration-thickness: 0 !important; border-top: none !important; border-bottom: none !important; border-left: none !important; border-right: none !important; outline: none !important; box-shadow: none !important; } /* Additional overrides for any potential strikethrough */ .pain-text::before, .pain-text::after { display: none !important; content: none !important; } .arrow-icon { width: 20px; height: 20px; object-fit: contain; opacity: 0.7; } .right-image { flex: 1; position: relative; overflow: hidden; } .right-image img { width: 100%; height: 100%; object-fit: cover; border-top-right-radius: 15px; border-bottom-right-radius: 15px; } @media (max-width: 768px) { .pain-section { flex-direction: column; border-radius: 15px; } .left-content { padding: 40px 30px; } .title { font-size: 28px; margin-bottom: 30px; } .pain-grid { grid-template-columns: 1fr; gap: 15px; } .right-image img { border-radius: 0 0 15px 15px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .title { font-size: 24px; } .pain-item { padding: 20px 15px; } } Click on a condition to learn more about how we can help: Elbow Pain Back Pain Neck Pain Knee Pain Foot Pain Shoulder Pain #services-container:hover .elementor-icon, #services-container:hover .elementor-heading-title, #services-container:hover .elementor-text-editor { color: white !important; transition: color 0.3s ease; } /* For Font Awesome icons */ #services-container:hover .elementor-icon i { color: white !important; transition: color 0.3s ease; } /* For SVG icons */ #services-container:hover .elementor-icon svg { fill: white !important; transition: fill 0.3s ease; } /* For heading and text elements specifically */ #services-container:hover h1, #services-container:hover h2, #services-container:hover h3, #services-container:hover h4, #services-container:hover h5, #services-container:hover h6, #services-container:hover p { color: white !important; transition: color 0.3s ease; } AREAS OF SPECIALTY We bring together expert care from multiple disciplines to support your recovery Osteopathy Realign your body, ease daily tension. Focused Shockwave Therapy Stimulate healing, reduce chronic pain. .cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;} Physiotherapy Rebuild strength & restore movement. Sports Massage Release tightness, improve recovery. Perinatal Care Support before, during & after birth. Dry Needling Target muscle tension for faster relief. FREQUENTLY ASKED QUESTIONS We're here to help! Osteopathy, physiotherapy, massage... what's the difference? Osteopathy focuses on realigning the body, physiotherapy is all about rebuilding movement and strength and sports massage targets tight, tense muscles.At Great Dunmow Osteopathy & Health, you get the best of all worlds! Our team works together across these disciplines, combining their strengths to create a personalised treatment plan that addresses your unique needs. What can I expect at my first appointment? Your first appointment is all about understanding you and your needs. Your practitioner will discuss your symptoms, medical history, lifestyle, and goals. They’ll then perform a thorough assessment, which may include posture, movement, and muscle testing. By the end of the session, you’ll receive a personalised treatment plan outlining recommended therapies, the number of sessions, and the path forward - so you know exactly what to expect and how we can help you feel better. How many sessions will I need? The number of sessions depends on your individual needs, the condition being treated, and your goals. During your first appointment, your practitioner will assess your symptoms and provide a personalised treatment plan, outlining the recommended number of sessions and a clear path forward. This plan ensures you know what to expect and helps guide your recovery efficiently. Is treatment painful? Although most of our treatments are gentle, you may experience some mild soreness or tenderness after certain hands-on therapies, dry needling, or sports massage. This is usually short-lived and a normal part of the body responding to treatment. Your practitioner will always explain what to expect and adjust techniques to ensure you are comfortable. How is your perinatal care different from my midwife? While midwives provide essential medical care during pregnancy and birth, our pre and postnatal services focus on the extra support new parents often need but rarely receive. We offer birth preparation, including hypnobirthing techniques, breastfeeding guidance, and post-birth support similar to a doula, helping you adjust and recover at your own pace. We complement your midwife’s care, giving you the personalised attention and guidance that every parent deserves. Do you accept health insurance? All of our team are fully qualified and registered with their relevant professional bodies, and we can provide itemised receipts for every treatment, making it simple for you to submit a claim to your insurance provider. Can't Find The Answer You're Looking For? Request a Free Phone Consultation Get to Know Us Before You Visit Want a sneak peak?Download our welcome pack to learn more about us! Take A Look At Our Welcome Pack OUR TEAM Meet the Practitioners Delivering Your Care... Team Members Carousel * { margin: 0; padding: 0; box-sizing: border-box; } .team-carousel-container { width: 100%; position: relative; overflow: hidden; font-family: 'Montserrat', sans-serif !important; background: transparent; padding: 40px 0; } .team-carousel-container * { font-family: 'Montserrat', sans-serif !important; } .carousel-wrapper { position: relative; width: 100%; overflow: hidden; } .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 20; opacity: 0.8; padding: 0; } .nav-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.2); } .nav-arrow img { width: 30px; height: 30px; filter: brightness(0) invert(1); /* Makes the SVG white */ transition: all 0.3s ease; } .nav-arrow.prev { left: 20px; } .nav-arrow.prev img { transform: rotate(180deg); /* Flip the arrow for left direction */ } .nav-arrow.next { right: 20px; } .carousel-track { display: flex; transition: transform 0.5s ease; width: 100%; } .team-member { flex: 0 0 280px; margin: 0 10px; position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; transition: all 0.3s ease; } .team-member:hover { text-decoration: none; color: inherit; transform: translateY(-5px); } .member-image { width: 100%; height: 350px; background-size: cover; background-position: center; position: relative; border-radius: 15px; overflow: hidden; } .member-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); transition: all 0.3s ease; border-radius: 15px; } .team-member:hover .member-overlay { background: rgba(0, 0, 0, 0); } .member-info { position: absolute; bottom: 20px; left: 20px; color: white; z-index: 10; } .person-icon { position: absolute; top: 15px; left: 15px; width: 24px; height: 24px; z-index: 10; opacity: 0.9; } .member-name { font-size: 15px !important; font-weight: 500 !important; margin-bottom: 4px; color: white !important; } .member-title { font-size: 15px !important; font-weight: 300 !important; color: white !important; opacity: 0.9; } .carousel-nav { display: none; } .nav-dots { display: none; } .nav-dot { display: none; } @media (max-width: 1200px) { .team-member { flex: 0 0 250px; } } @media (max-width: 768px) { .team-member { flex: 0 0 220px; margin: 0 8px; } .member-image { height: 300px; } .nav-arrow img { width: 25px; height: 25px; } .nav-arrow.prev { left: 15px; } .nav-arrow.next { right: 15px; } } @media (max-width: 480px) { .team-member { flex: 0 0 200px; margin: 0 5px; } .member-image { height: 280px; } .member-info { bottom: 15px; left: 15px; } .person-icon { top: 12px; left: 12px; width: 20px; height: 20px; } .nav-arrow img { width: 22px; height: 22px; } .nav-arrow.prev { left: 10px; } .nav-arrow.next { right: 10px; } } /* Elementor override styles */ .elementor-html-container .team-carousel-container, .elementor-widget-html .team-carousel-container { font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-name, .elementor-widget-html .member-name { font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-title, .elementor-widget-html .member-title { font-size: 15px !important; font-weight: 300 !important; font-family: 'Montserrat', sans-serif !important; } Angus Osteopath Tegan Physiotherapist Jason Osteopath Charlotte Sports Therapist Max Osteopath Hadi Osteopath Kim Massage Scott Massage Lindsay Pre & Postnatal Consultant document.addEventListener('DOMContentLoaded', function() { const track = document.getElementById('carouselTrack'); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); const members = document.querySelectorAll('.team-member'); let currentIndex = 0; let membersToShow = getMembersToShow(); const totalMembers = members.length; // Clone members for endless scrolling const firstClones = []; const lastClones = []; function getMembersToShow() { const width = window.innerWidth; if (width >= 1200) return 4; if (width >= 768) return 3; if (width >= 480) return 2; return 1; } function setupInfiniteScroll() { // Clear existing clones firstClones.forEach(clone => clone.remove()); lastClones.forEach(clone => clone.remove()); firstClones.length = 0; lastClones.length = 0; // Create clones for smooth infinite scrolling for (let i = 0; i < membersToShow; i++) { // Clone first members and append to end const firstClone = members[i].cloneNode(true); firstClone.classList.add('clone'); track.appendChild(firstClone); firstClones.push(firstClone); // Clone last members and prepend to beginning const lastClone = members[totalMembers - 1 - i].cloneNode(true); lastClone.classList.add('clone'); track.insertBefore(lastClone, track.firstChild); lastClones.push(lastClone); } // Set initial position to show original members currentIndex = membersToShow; updateCarousel(false); // No transition for initial setup } function updateCarousel(withTransition = true) { const memberWidth = members[0] ? members[0].offsetWidth + 20 : 300; const translateX = -(currentIndex * memberWidth); if (withTransition) { track.style.transition = 'transform 0.5s ease'; } else { track.style.transition = 'none'; } track.style.transform = `translateX(${translateX}px)`; } function nextSlide() { currentIndex++; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex >= totalMembers + membersToShow) { currentIndex = membersToShow; updateCarousel(false); } }, 500); } function prevSlide() { currentIndex--; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex < 0) { currentIndex = totalMembers - 1; updateCarousel(false); } }, 500); } // Event listeners nextBtn.addEventListener('click', nextSlide); prevBtn.addEventListener('click', prevSlide); // Auto-play functionality let autoPlayInterval = setInterval(nextSlide, 4000); // Pause auto-play on hover const container = document.querySelector('.team-carousel-container'); container.addEventListener('mouseenter', () => clearInterval(autoPlayInterval)); container.addEventListener('mouseleave', () => { autoPlayInterval = setInterval(nextSlide, 4000); }); // Enhanced touch/swipe support let startX = 0; let startY = 0; let isDragging = false; let hasMoved = false; track.addEventListener('touchstart', (e) => { startX = e.touches[0].clientX; startY = e.touches[0].clientY; isDragging = true; hasMoved = false; clearInterval(autoPlayInterval); }, { passive: true }); track.addEventListener('touchmove', (e) => { if (!isDragging) return; const currentX = e.touches[0].clientX; const currentY = e.touches[0].clientY; const diffX = Math.abs(startX - currentX); const diffY = Math.abs(startY - currentY); // Only prevent default if horizontal swipe is more significant if (diffX > diffY && diffX > 10) { e.preventDefault(); hasMoved = true; } }, { passive: false }); track.addEventListener('touchend', (e) => { if (!isDragging) return; const endX = e.changedTouches[0].clientX; const diffX = startX - endX; if (hasMoved && Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isDragging = false; hasMoved = false; // Restart auto-play autoPlayInterval = setInterval(nextSlide, 4000); }, { passive: true }); // Mouse drag support for desktop let mouseStartX = 0; let isMouseDragging = false; track.addEventListener('mousedown', (e) => { mouseStartX = e.clientX; isMouseDragging = true; track.style.cursor = 'grabbing'; clearInterval(autoPlayInterval); e.preventDefault(); }); document.addEventListener('mousemove', (e) => { if (!isMouseDragging) return; e.preventDefault(); }); document.addEventListener('mouseup', (e) => { if (!isMouseDragging) return; const endX = e.clientX; const diffX = mouseStartX - endX; if (Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isMouseDragging = false; track.style.cursor = 'grab'; autoPlayInterval = setInterval(nextSlide, 4000); }); // Keyboard navigation document.addEventListener('keydown', (e) => { if (e.key === 'ArrowLeft') { prevSlide(); } else if (e.key === 'ArrowRight') { nextSlide(); } }); // Responsive handling window.addEventListener('resize', () => { const newMembersToShow = getMembersToShow(); if (newMembersToShow !== membersToShow) { membersToShow = newMembersToShow; setupInfiniteScroll(); } else { updateCarousel(false); } }); // Initialize setupInfiniteScroll(); }); Request a Free Phone Consultation * { margin: 0; padding: 0; box-sizing: border-box; } .consultation-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .consultation-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; } .main-title { font-size: 35px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; } .subtitle { font-size: 15px !important; font-weight: 400 !important; color: #666 !important; margin-bottom: 30px !important; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn { background-color: #00211B !important; color: white !important; padding: 15px 30px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; text-decoration: none !important; display: inline-block; margin-bottom: 40px; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn:hover { background-color: #003d2b !important; text-decoration: none !important; color: white !important; transform: translateY(-2px); } .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .form-group { display: flex; flex-direction: column; } .form-group.full-width { grid-column: 1 / -1; } .form-group.button-group { grid-column: 1 / -1; display: flex; justify-content: flex-end; } .form-input { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-input:focus { outline: none !important; border-color: #00211B !important; } .form-textarea { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; min-height: 120px !important; resize: vertical !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-textarea:focus { outline: none !important; border-color: #00211B !important; } .send-btn { background-color: #00211B !important; color: white !important; padding: 15px 40px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; letter-spacing: normal !important; text-transform: none !important; width: fit-content; margin-left: auto; display: block; } .send-btn:hover { background-color: #003d2b !important; color: white !important; transform: translateY(-2px); } .send-btn:disabled { background-color: #ccc !important; cursor: not-allowed; transform: none; } .right-content { flex: 1; position: relative; background-image: url('https://gdoc.co.uk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-15-at-12.53.40.jpeg'); background-size: cover; background-position: center; min-height: 500px; } .testimonial-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 40px 30px 30px; color: white; } .quote-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.9; } .testimonial-text { font-size: 17px !important; font-weight: 400 !important; line-height: 1.5 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; opacity: 0.9 !important; color: white !important; } /* Success Modal */ .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 40px; border-radius: 15px; max-width: 500px; width: 90%; position: relative; text-align: center; font-family: 'Montserrat', sans-serif !important; } .modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: #666; } .modal-close:hover { color: #333; } .modal-title { font-size: 24px; font-weight: 600; color: #00211B; margin-bottom: 15px; } .modal-text { font-size: 16px; color: #666; line-height: 1.5; } .error-message { background: #fee; color: #c33; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: none; } @media (max-width: 768px) { .consultation-section { flex-direction: column; } .left-content { padding: 40px 30px; } .main-title { font-size: 28px !important; } .contact-form { grid-template-columns: 1fr; gap: 15px; } .right-content { min-height: 400px; } .testimonial-overlay { padding: 30px 20px 20px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .main-title { font-size: 24px !important; } .form-input, .form-textarea { font-size: 16px !important; } .testimonial-overlay { padding: 25px 15px 15px; } .testimonial-text { font-size: 15px !important; } .quote-icon { width: 30px; height: 30px; } } /* Enhanced Elementor override styles */ body .elementor-html-container .consultation-section *, body .elementor-widget-html .consultation-section *, .elementor .consultation-section *, div.elementor-element .consultation-section * { font-family: 'Montserrat', sans-serif !important; } body .elementor-html-container .main-title, body .elementor-widget-html .main-title, .elementor .main-title, div.elementor-element .main-title { font-size: 35px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; } body .elementor-html-container .subtitle, body .elementor-widget-html .subtitle, .elementor .subtitle, div.elementor-element .subtitle { font-size: 15px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: #666 !important; margin-bottom: 30px !important; } body .elementor-html-container .form-input, body .elementor-html-container .form-textarea, body .elementor-widget-html .form-input, body .elementor-widget-html .form-textarea, .elementor .form-input, .elementor .form-textarea, div.elementor-element .form-input, div.elementor-element .form-textarea { font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; background: white !important; color: #333 !important; border: 2px solid #ddd !important; border-radius: 15px !important; padding: 15px !important; } body .elementor-html-container .book-appointment-btn, body .elementor-widget-html .book-appointment-btn, .elementor .book-appointment-btn, div.elementor-element .book-appointment-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; border-radius: 3px !important; } body .elementor-html-container .send-btn, body .elementor-widget-html .send-btn, .elementor .send-btn, div.elementor-element .send-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; border-radius: 3px !important; letter-spacing: normal !important; text-transform: none !important; } body .elementor-html-container .testimonial-text, body .elementor-widget-html .testimonial-text, .elementor .testimonial-text, div.elementor-element .testimonial-text { font-size: 17px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; line-height: 1.5 !important; } body .elementor-html-container .testimonial-author, body .elementor-widget-html .testimonial-author, .elementor .testimonial-author, div.elementor-element .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } Request a Free Phone Consultation In pain? Got questions? Fill in your details below to arrange a free telephone consultation with our experienced team, to find out more about you and see how we might be able to help. Request A Free Phone Consultation Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. A great team. × Message Sent Successfully! Thank you for your message. We'll get back to you as soon as possible to schedule your free phone consultation. document.addEventListener('DOMContentLoaded', function() { const form = document.getElementById('consultationForm'); const modal = document.getElementById('successModal'); const closeModalBtn = document.getElementById('closeModal'); const submitBtn = document.getElementById('submitBtn'); const errorMessage = document.getElementById('errorMessage'); // Form submission form.addEventListener('submit', function(e) { e.preventDefault(); // Disable submit button to prevent double submission submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; // Hide any previous error messages errorMessage.style.display = 'none'; // Get form data const formData = new FormData(form); const formObject = {}; // Convert FormData to regular object for (let [key, value] of formData.entries()) { formObject[key] = value; } console.log('Form data to be sent:', formObject); // Send data to webhook fetch('https://hook.eu2.make.com/iguj67plj8cegyloh7snhqbbrugs9mxe', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formObject) }) .then(response => { console.log('Response status:', response.status); if (response.ok) { return response.text(); // Make.com webhooks often return text, not JSON } else { throw new Error(`HTTP error! status: ${response.status}`); } }) .then(data => { console.log('Success:', data); showSuccessModal(); form.reset(); }) .catch((error) => { console.error('Error:', error); showErrorMessage('Sorry, there was an error sending your message. Please try again.'); }) .finally(() => { // Re-enable submit button submitBtn.disabled = false; submitBtn.textContent = 'Send Message'; }); }); function showSuccessModal() { modal.style.display = 'flex'; document.body.style.overflow = 'hidden'; } function hideSuccessModal() { modal.style.display = 'none'; document.body.style.overflow = 'auto'; } function showErrorMessage(message) { errorMessage.textContent = message; errorMessage.style.display = 'block'; // Scroll to error message errorMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); } // Close modal events closeModalBtn.addEventListener('click', hideSuccessModal); modal.addEventListener('click', function(e) { if (e.target === modal) { hideSuccessModal(); } }); // Close modal with ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && modal.style.display === 'flex') { hideSuccessModal(); } }); }); Location We’re conveniently located in the heart of Great Dunmow, just a 2-minute walk from Chequers Lane car park. For patients who have limited mobility, parking is available on site – simply give us a call or email in advance, and we’ll reserve a space for you. Town Centre Location Disabled Parking On Site Minutes From The M11 "Helping You Move Better, Feel Stronger, Live Freer." Facebook-f Instagram X-twitter Tiktok Get in touch 12 Stortford Road, Great Dunmow, CM6 1DA info@gdoc.co.uk 01371 502088 Monday - Saturday : 08:00 - 20:00 More Info Meet The Team Our Values Pricing Blog Book Appointment © Great Dunmow Osteopathy & Health 2025 All rights reserved. Terms & Conditions Privacy Policy {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"db9f0e4dc6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b6be105efd"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":3410,"title":"5-Star%20Osteopaths%2C%20Physiotherapists%20%26%20Massage%20%7C%20Great%20Dunmow","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"da34070fef","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"cb5148e856","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"3410\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "3410" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"f0071a0873","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"7c9c745df8"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
http://gdoc.co.uk/contact
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Contact us. We’re always available to address your needs, discuss your personal care and explore how we can support your health journey… Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more Address 12 Stortford Road, Great Dunmow, CM6 1DA The nearest available parking is Chequer's Lane Car Park. Call Us 01371 502 088 Email info@gdoc.co.uk Facebook X-twitter Instagram Tiktok Follow Us {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"c177d13abe"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":3530,"title":"Contact%20Us","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"7d6e4ff68d","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"7c17ca447c","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"7c17ca447c","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"7c17ca447c","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"7c17ca447c","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"e5f44c9ed1","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/contact-us\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"3530\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "3530" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/7-osteopathy-techniques-to-improve-lower-back-pain-and-restore-movement\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"ac1eb95a3c","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"22ee2a2c7f"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
https://gdoc.co.uk/join-the-team
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Join The Team Call 01371 502088 Career opportunities within the practice What we can provide 6 Reasons to Join Us CPD & Mentorship Enjoy both clinical & business mentorship as well as collaborative CPD sessions with other experienced physical therapists, helping you to continually develop in a supportive environment. Trusted & Established Clinic We were the original osteopathy clinic in Great Dunmow and so you will benefit from being part of a team with a 20 year reputation and client base. Guaranteed Patient Flow Imagine turning up to work and all you had to do was treat patients! We invest as much as necessary into professional marketing & advertising to ensure you stay busy. The Latest Technology We invest into the latest technologies when we think they will complement the hands on work we do, such as the latest Focused Shockwave Therapy machine. Multidisciplinary Team Work alongside a diverse team of healthcare professionals. This approach fosters a learning-rich environment where you can collaborate on patient care, share insights, and enhance your skills through teamwork. All Ideas Are Welcome We are open to all ideas as to how to improve the clinic. You’ll be joining a collaborateive, supportive and innovative team all working together to provide the best possible support for patients 50+ Years of combined experience Get in touch If you love working with people, are passionate about health and well-being, and want to be part of building something meaningful – reach out to us with the following at info@gdoc.co.uk:Your CVA Covering Letter3 References with contact detailsWe look forward to meeting you! Call 01371 502088 Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more "Helping You Move Better, Feel Stronger, Live Freer." Facebook-f Instagram X-twitter Tiktok Get in touch 12 Stortford Road, Great Dunmow, CM6 1DA info@gdoc.co.uk 01371 502088 Monday - Saturday : 08:00 - 20:00 More Info Meet The Team Our Values Pricing Blog Book Appointment © Great Dunmow Osteopathy & Health 2025 All rights reserved. Terms & Conditions Privacy Policy {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"010ac51dd9"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":5760,"title":"Join%20The%20Team%20%7C%206%20Compelling%20Reasons%20To%20Join%20Our%20Brilliant%20Team","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"432ebacb0c","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"ea85198e03","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"ea85198e03","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"ea85198e03","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"ea85198e03","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"ddfeebe25b","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/join-the-team\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"5760\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "5760" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/7-osteopathy-techniques-to-improve-lower-back-pain-and-restore-movement\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"20966322ba","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"ca9a56815b"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
https://gdoc.co.uk/meet-the-team
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Meet The Team Book Appointment Call 01371 502088 We're committed to delivering the best in Osteopathy, Physiotherapy, Massage & Perinatal Care, making a difference and putting you at the centre of your recovery. OUR TEAM Meet the Practitioners Delivering Your Care... Team Members Carousel * { margin: 0; padding: 0; box-sizing: border-box; } .team-carousel-container { width: 100%; position: relative; overflow: hidden; font-family: 'Montserrat', sans-serif !important; background: transparent; padding: 40px 0; } .team-carousel-container * { font-family: 'Montserrat', sans-serif !important; } .carousel-wrapper { position: relative; width: 100%; overflow: hidden; } .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 20; opacity: 0.8; padding: 0; } .nav-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.2); } .nav-arrow img { width: 30px; height: 30px; filter: brightness(0) invert(1); /* Makes the SVG white */ transition: all 0.3s ease; } .nav-arrow.prev { left: 20px; } .nav-arrow.prev img { transform: rotate(180deg); /* Flip the arrow for left direction */ } .nav-arrow.next { right: 20px; } .carousel-track { display: flex; transition: transform 0.5s ease; width: 100%; } .team-member { flex: 0 0 280px; margin: 0 10px; position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; transition: all 0.3s ease; } .team-member:hover { text-decoration: none; color: inherit; transform: translateY(-5px); } .member-image { width: 100%; height: 350px; background-size: cover; background-position: center; position: relative; border-radius: 15px; overflow: hidden; } .member-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); transition: all 0.3s ease; border-radius: 15px; } .team-member:hover .member-overlay { background: rgba(0, 0, 0, 0); } .member-info { position: absolute; bottom: 20px; left: 20px; color: white; z-index: 10; } .person-icon { position: absolute; top: 15px; left: 15px; width: 24px; height: 24px; z-index: 10; opacity: 0.9; } .member-name { font-size: 15px !important; font-weight: 500 !important; margin-bottom: 4px; color: white !important; } .member-title { font-size: 15px !important; font-weight: 300 !important; color: white !important; opacity: 0.9; } .carousel-nav { display: none; } .nav-dots { display: none; } .nav-dot { display: none; } @media (max-width: 1200px) { .team-member { flex: 0 0 250px; } } @media (max-width: 768px) { .team-member { flex: 0 0 220px; margin: 0 8px; } .member-image { height: 300px; } .nav-arrow img { width: 25px; height: 25px; } .nav-arrow.prev { left: 15px; } .nav-arrow.next { right: 15px; } } @media (max-width: 480px) { .team-member { flex: 0 0 200px; margin: 0 5px; } .member-image { height: 280px; } .member-info { bottom: 15px; left: 15px; } .person-icon { top: 12px; left: 12px; width: 20px; height: 20px; } .nav-arrow img { width: 22px; height: 22px; } .nav-arrow.prev { left: 10px; } .nav-arrow.next { right: 10px; } } /* Elementor override styles */ .elementor-html-container .team-carousel-container, .elementor-widget-html .team-carousel-container { font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-name, .elementor-widget-html .member-name { font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-title, .elementor-widget-html .member-title { font-size: 15px !important; font-weight: 300 !important; font-family: 'Montserrat', sans-serif !important; } Angus Osteopath Tegan Physiotherapist Jason Osteopath Charlotte Sports Therapist Max Osteopath Hadi Osteopath Kim Massage Scott Massage Lindsay Pre & Postnatal Consultant document.addEventListener('DOMContentLoaded', function() { const track = document.getElementById('carouselTrack'); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); const members = document.querySelectorAll('.team-member'); let currentIndex = 0; let membersToShow = getMembersToShow(); const totalMembers = members.length; // Clone members for endless scrolling const firstClones = []; const lastClones = []; function getMembersToShow() { const width = window.innerWidth; if (width >= 1200) return 4; if (width >= 768) return 3; if (width >= 480) return 2; return 1; } function setupInfiniteScroll() { // Clear existing clones firstClones.forEach(clone => clone.remove()); lastClones.forEach(clone => clone.remove()); firstClones.length = 0; lastClones.length = 0; // Create clones for smooth infinite scrolling for (let i = 0; i < membersToShow; i++) { // Clone first members and append to end const firstClone = members[i].cloneNode(true); firstClone.classList.add('clone'); track.appendChild(firstClone); firstClones.push(firstClone); // Clone last members and prepend to beginning const lastClone = members[totalMembers - 1 - i].cloneNode(true); lastClone.classList.add('clone'); track.insertBefore(lastClone, track.firstChild); lastClones.push(lastClone); } // Set initial position to show original members currentIndex = membersToShow; updateCarousel(false); // No transition for initial setup } function updateCarousel(withTransition = true) { const memberWidth = members[0] ? members[0].offsetWidth + 20 : 300; const translateX = -(currentIndex * memberWidth); if (withTransition) { track.style.transition = 'transform 0.5s ease'; } else { track.style.transition = 'none'; } track.style.transform = `translateX(${translateX}px)`; } function nextSlide() { currentIndex++; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex >= totalMembers + membersToShow) { currentIndex = membersToShow; updateCarousel(false); } }, 500); } function prevSlide() { currentIndex--; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex < 0) { currentIndex = totalMembers - 1; updateCarousel(false); } }, 500); } // Event listeners nextBtn.addEventListener('click', nextSlide); prevBtn.addEventListener('click', prevSlide); // Auto-play functionality let autoPlayInterval = setInterval(nextSlide, 4000); // Pause auto-play on hover const container = document.querySelector('.team-carousel-container'); container.addEventListener('mouseenter', () => clearInterval(autoPlayInterval)); container.addEventListener('mouseleave', () => { autoPlayInterval = setInterval(nextSlide, 4000); }); // Enhanced touch/swipe support let startX = 0; let startY = 0; let isDragging = false; let hasMoved = false; track.addEventListener('touchstart', (e) => { startX = e.touches[0].clientX; startY = e.touches[0].clientY; isDragging = true; hasMoved = false; clearInterval(autoPlayInterval); }, { passive: true }); track.addEventListener('touchmove', (e) => { if (!isDragging) return; const currentX = e.touches[0].clientX; const currentY = e.touches[0].clientY; const diffX = Math.abs(startX - currentX); const diffY = Math.abs(startY - currentY); // Only prevent default if horizontal swipe is more significant if (diffX > diffY && diffX > 10) { e.preventDefault(); hasMoved = true; } }, { passive: false }); track.addEventListener('touchend', (e) => { if (!isDragging) return; const endX = e.changedTouches[0].clientX; const diffX = startX - endX; if (hasMoved && Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isDragging = false; hasMoved = false; // Restart auto-play autoPlayInterval = setInterval(nextSlide, 4000); }, { passive: true }); // Mouse drag support for desktop let mouseStartX = 0; let isMouseDragging = false; track.addEventListener('mousedown', (e) => { mouseStartX = e.clientX; isMouseDragging = true; track.style.cursor = 'grabbing'; clearInterval(autoPlayInterval); e.preventDefault(); }); document.addEventListener('mousemove', (e) => { if (!isMouseDragging) return; e.preventDefault(); }); document.addEventListener('mouseup', (e) => { if (!isMouseDragging) return; const endX = e.clientX; const diffX = mouseStartX - endX; if (Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isMouseDragging = false; track.style.cursor = 'grab'; autoPlayInterval = setInterval(nextSlide, 4000); }); // Keyboard navigation document.addEventListener('keydown', (e) => { if (e.key === 'ArrowLeft') { prevSlide(); } else if (e.key === 'ArrowRight') { nextSlide(); } }); // Responsive handling window.addEventListener('resize', () => { const newMembersToShow = getMembersToShow(); if (newMembersToShow !== membersToShow) { membersToShow = newMembersToShow; setupInfiniteScroll(); } else { updateCarousel(false); } }); // Initialize setupInfiniteScroll(); }); Request a Free Phone Consultation * { margin: 0; padding: 0; box-sizing: border-box; } .consultation-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .consultation-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; } .main-title { font-size: 35px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; } .subtitle { font-size: 15px !important; font-weight: 400 !important; color: #666 !important; margin-bottom: 30px !important; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn { background-color: #00211B !important; color: white !important; padding: 15px 30px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; text-decoration: none !important; display: inline-block; margin-bottom: 40px; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn:hover { background-color: #003d2b !important; text-decoration: none !important; color: white !important; transform: translateY(-2px); } .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .form-group { display: flex; flex-direction: column; } .form-group.full-width { grid-column: 1 / -1; } .form-group.button-group { grid-column: 1 / -1; display: flex; justify-content: flex-end; } .form-input { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-input:focus { outline: none !important; border-color: #00211B !important; } .form-textarea { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; min-height: 120px !important; resize: vertical !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-textarea:focus { outline: none !important; border-color: #00211B !important; } .send-btn { background-color: #00211B !important; color: white !important; padding: 15px 40px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; letter-spacing: normal !important; text-transform: none !important; width: fit-content; margin-left: auto; display: block; } .send-btn:hover { background-color: #003d2b !important; color: white !important; transform: translateY(-2px); } .send-btn:disabled { background-color: #ccc !important; cursor: not-allowed; transform: none; } .right-content { flex: 1; position: relative; background-image: url('https://gdoc.co.uk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-15-at-12.53.40.jpeg'); background-size: cover; background-position: center; min-height: 500px; } .testimonial-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 40px 30px 30px; color: white; } .quote-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.9; } .testimonial-text { font-size: 17px !important; font-weight: 400 !important; line-height: 1.5 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; opacity: 0.9 !important; color: white !important; } /* Success Modal */ .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 40px; border-radius: 15px; max-width: 500px; width: 90%; position: relative; text-align: center; font-family: 'Montserrat', sans-serif !important; } .modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: #666; } .modal-close:hover { color: #333; } .modal-title { font-size: 24px; font-weight: 600; color: #00211B; margin-bottom: 15px; } .modal-text { font-size: 16px; color: #666; line-height: 1.5; } .error-message { background: #fee; color: #c33; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: none; } @media (max-width: 768px) { .consultation-section { flex-direction: column; } .left-content { padding: 40px 30px; } .main-title { font-size: 28px !important; } .contact-form { grid-template-columns: 1fr; gap: 15px; } .right-content { min-height: 400px; } .testimonial-overlay { padding: 30px 20px 20px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .main-title { font-size: 24px !important; } .form-input, .form-textarea { font-size: 16px !important; } .testimonial-overlay { padding: 25px 15px 15px; } .testimonial-text { font-size: 15px !important; } .quote-icon { width: 30px; height: 30px; } } /* Enhanced Elementor override styles */ body .elementor-html-container .consultation-section *, body .elementor-widget-html .consultation-section *, .elementor .consultation-section *, div.elementor-element .consultation-section * { font-family: 'Montserrat', sans-serif !important; } body .elementor-html-container .main-title, body .elementor-widget-html .main-title, .elementor .main-title, div.elementor-element .main-title { font-size: 35px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; } body .elementor-html-container .subtitle, body .elementor-widget-html .subtitle, .elementor .subtitle, div.elementor-element .subtitle { font-size: 15px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: #666 !important; margin-bottom: 30px !important; } body .elementor-html-container .form-input, body .elementor-html-container .form-textarea, body .elementor-widget-html .form-input, body .elementor-widget-html .form-textarea, .elementor .form-input, .elementor .form-textarea, div.elementor-element .form-input, div.elementor-element .form-textarea { font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; background: white !important; color: #333 !important; border: 2px solid #ddd !important; border-radius: 15px !important; padding: 15px !important; } body .elementor-html-container .book-appointment-btn, body .elementor-widget-html .book-appointment-btn, .elementor .book-appointment-btn, div.elementor-element .book-appointment-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; border-radius: 3px !important; } body .elementor-html-container .send-btn, body .elementor-widget-html .send-btn, .elementor .send-btn, div.elementor-element .send-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; border-radius: 3px !important; letter-spacing: normal !important; text-transform: none !important; } body .elementor-html-container .testimonial-text, body .elementor-widget-html .testimonial-text, .elementor .testimonial-text, div.elementor-element .testimonial-text { font-size: 17px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; line-height: 1.5 !important; } body .elementor-html-container .testimonial-author, body .elementor-widget-html .testimonial-author, .elementor .testimonial-author, div.elementor-element .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } Request a Free Phone Consultation In pain? Got questions? Fill in your details below to arrange a free telephone consultation with our experienced team, to find out more about you and see how we might be able to help. Request A Free Phone Consultation Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. A great team. × Message Sent Successfully! Thank you for your message. We'll get back to you as soon as possible to schedule your free phone consultation. document.addEventListener('DOMContentLoaded', function() { const form = document.getElementById('consultationForm'); const modal = document.getElementById('successModal'); const closeModalBtn = document.getElementById('closeModal'); const submitBtn = document.getElementById('submitBtn'); const errorMessage = document.getElementById('errorMessage'); // Form submission form.addEventListener('submit', function(e) { e.preventDefault(); // Disable submit button to prevent double submission submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; // Hide any previous error messages errorMessage.style.display = 'none'; // Get form data const formData = new FormData(form); const formObject = {}; // Convert FormData to regular object for (let [key, value] of formData.entries()) { formObject[key] = value; } console.log('Form data to be sent:', formObject); // Send data to webhook fetch('https://hook.eu2.make.com/iguj67plj8cegyloh7snhqbbrugs9mxe', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formObject) }) .then(response => { console.log('Response status:', response.status); if (response.ok) { return response.text(); // Make.com webhooks often return text, not JSON } else { throw new Error(`HTTP error! status: ${response.status}`); } }) .then(data => { console.log('Success:', data); showSuccessModal(); form.reset(); }) .catch((error) => { console.error('Error:', error); showErrorMessage('Sorry, there was an error sending your message. Please try again.'); }) .finally(() => { // Re-enable submit button submitBtn.disabled = false; submitBtn.textContent = 'Send Message'; }); }); function showSuccessModal() { modal.style.display = 'flex'; document.body.style.overflow = 'hidden'; } function hideSuccessModal() { modal.style.display = 'none'; document.body.style.overflow = 'auto'; } function showErrorMessage(message) { errorMessage.textContent = message; errorMessage.style.display = 'block'; // Scroll to error message errorMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); } // Close modal events closeModalBtn.addEventListener('click', hideSuccessModal); modal.addEventListener('click', function(e) { if (e.target === modal) { hideSuccessModal(); } }); // Close modal with ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && modal.style.display === 'flex') { hideSuccessModal(); } }); }); Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more Location Conveniently located in the centre of Great Dunmow, we are easily accessible for all our clients with Chequers Lane car park just 2 mins walk away. Disabled parking is available on site by prior arrangement. Please call us to book. Town Centre Location Disabled Parking On Site Minutes From The M11 "Helping You Move Better, Feel Stronger, Live Freer." Facebook-f Instagram X-twitter Tiktok Get in touch 12 Stortford Road, Great Dunmow, CM6 1DA info@gdoc.co.uk 01371 502088 Monday - Saturday : 08:00 - 20:00 More Info Meet The Team Our Values Pricing Blog Book Appointment © Great Dunmow Osteopathy & Health 2025 All rights reserved. Terms & Conditions Privacy Policy {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b6be105efd"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":8795,"title":"Our%205-Star%20Osteopathy%20%26%20Massage%20Team%20%7C%20GDOC","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"da34070fef","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"cb5148e856","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"db9f0e4dc6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/meet-the-team\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"8795\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "8795" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/7-osteopathy-techniques-to-improve-lower-back-pain-and-restore-movement\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"f0071a0873","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"7c9c745df8"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
http://gdoc.co.uk/
Status: 200
Emails: info@gdoc.co.uk
View text
Skip to content Now offering focused shockwave therapy! Click here... info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Now offering focused shockwave therapy! info@gdoc.co.uk 12 Stortford Road, Great Dunmow, CM6 1DA Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Call Us 01371 502 088 Home Book Appointment About Meet The Team Join The Team Our Values Read Our Blog Conditions Back Pain Neck Pain Shoulder Pain Elbow Pain Knee Pain Foot & Heel Pain Services Osteopathy Physiotherapy Massage Focused Shockwave Therapy Private Midwifery Prices X Osteopathy, Physiotherapy, Massage & Perinatal Care in Dunmow Book Appointment Call 01371 502088 Your local, family-run health clinic. Proud to serve Dunmow for over 20 years. Relieve Aches & Pains Fast Restore Natural Movement Multidisciplinary Team Personalised Care Plans Hands-On Treatment Feel Stronger, Move Better Recover With Confidence Focused Shockwave Therapy Trusted Local Clinic Relieve Aches Fast Restore Natural Movement Move Without Pain Personalised Expert Care Hands-On Treatment Feel Stronger Daily Recover With Confidence Whole Body Support Trusted Local Clinic @keyframes ar-seamless{ 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } /* move by the track’s full width */ } /* tighten spacing on very small screens */ @media (max-width:480px){ .ar-scroll > span{ padding:0 24px !important; } } /* accessibility */ @media (prefers-reduced-motion: reduce){ .ar-scroll{ animation: none !important; } } Healthcare You Can Rely On Welcome to Great Dunmow Osteopathy & Health. We’re here to help you feel your best. Whether you’re struggling with aches & pains, sports injuries, or looking for perinatal care, our friendly team provides expert support tailored to your needs. Our goal is to help you get back to feeling your best! Book Appointment Request a Free Phone Consultation Healthcare You Can Rely On Welcome to Great Dunmow Osteopathy & Health. We’re a friendly, down-to-earth clinic based in the heart of Great Dunmow, offering expert hands-on treatment for everything from long-standing back pain and postural issues to sports injuries and postnatal recovery. Book Appointment Request a Free Phone Consultation Why people choose us Trusted Locally for Over 20 Years 20+ Years of Local Care We’ve been proudly serving the Dunmow community for over 20 years, helping to relieve patients of pain across all ages, allowing them to move better and feel stronger. Trusted By The Community We’re a community based, family-run business and our experienced team works closely with local GP’s & specialists to ensure continuity of care for every patient. 5-Star Rated (100+ Reviews) Our patients consistently praise our care, with over 100x 5-Star reviews on google celebrating the difference we make to their health and wellbeing. Thousands of Happy Patients We have helped 1,000s of patients just like you to relieve their pain and recover so they can get back to doing the things they love without pain or restriction. Exceptional Hands-On Treatment We’re proud of our reputation in Dunmow for providing exceptional one-to-one, hands on treatment – you’ll never be left alone in a room on exercise equipment. The Latest Treatment Technology One of the most advanced tools we use, Focused Shockwave, tackles stubborn, long-term pain, augmenting your recovery & getting you back to feeling yourself, faster. Wide Range Of Services We offer a range of services under one roof to empower you & help you recover fast; Osteopathy, Physiotherapy, Shockwave, Massage & Perinatal Care. Convenient Opening Hours We know your time is valuable, so we’ve made it easier for you to book around work and family life by opening Monday to Saturday 08:00am to 08:00pm. Book Appointment Request A Free Phone Consultation 50+ Years of combined experience Lorraine Love Trustindex verifies that the original source of the review is Google. Had some brilliant physio sessions after suffering knee pain. My overall balance and strength has really improved as well as my stability and confidence - would highly recommend Syed Hussain Sheik Trustindex verifies that the original source of the review is Google. Great team. Visited them for back issues. Booking was easy. Had sessions with Tegan, she has been very helpful. Explained the issues, and suggested appropriate therapy. Also sent video tools to help with practice. Josie Remzi Trustindex verifies that the original source of the review is Google. Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. My thanks to Tegan who I’m currently seeing and to Daniel who I have previously seen. A great team. Graham Maris Trustindex verifies that the original source of the review is Google. I was suffering with foot pain. Tegan diagnosed the issue and explained what was causing the issue. I have made great progress over my four sessions. Would certainly recommend. jennifer pledger Trustindex verifies that the original source of the review is Google. I have had wonderful treatment by Tegan and the team and Dunmow Osteopathy and Health Clinic. I went with a long term ankle injury and can now say I’m pain free for the first time since the damage was done. Tegan is professional, thorough, kind and has helped me every step of the way throughout my treatment. Thank you Tegan and team for all your hard work. 5* service all round, I’ll be recommending your clinic to all who needs physio and health assistance. Lou Beesley Trustindex verifies that the original source of the review is Google. So suffering back, hips & legs thinking l am falling apart, first session with Tegan absolutely feeling so much easier then follow up with Scott again walked out and felt so much easier, thinking at last my quality of life might get better, so looking forward to next appointment with Tegan. Great team many thanks. Elaine Burrell Trustindex verifies that the original source of the review is Google. Highly Recommend Jason at the Great Dunmow Osteopath and Health. My problems were sinus, neck and shoulder pain due to arthritis. This has helped tremendously and cannot fault the lovely friendly staff Verified by Trustindex Trustindex verified badge is the Universal Symbol of Trust. Only the greatest companies can get the verified badge who has a review score above 4.5, based on customer reviews over the past 12 months. Read more HOW IT WORKS Our 3-step process to get you feeling better: Your First Appointment At your first appointment, we take the time to understand what's going on and learn more about you so that we can create a bespoke treatment plan designed specifically for you. BOOK NOW Step 1 Put Your Plan Into Motion During your treatment, we combine physical therapies and the latest technologies to relieve your pain. This multi-disciplinary care provides you faster, more effective results. BOOK NOW Step 2 Build Lasting Resilience With our care, you won’t just recover - you’ll develop lasting resilience. Our focus is on strengthening your body to reduce the risk of future setbacks & get you back to moving with confidence. BOOK NOW Step 3 Pain by Body Parts * { margin: 0; padding: 0; box-sizing: border-box; } .pain-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; background-color: #ECECE6 !important; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; } .pain-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; background-color: #ECECE6 !important; } /* Maximum specificity background color overrides */ html body .elementor-html-container .pain-section, html body .elementor-widget-html .pain-section, html body .elementor .pain-section, html body div.pain-section, html body .pain-section, .pain-section { background-color: #ECECE6 !important; background: #ECECE6 !important; } html body .elementor-html-container .left-content, html body .elementor-widget-html .left-content, html body .elementor .left-content, html body div.left-content, html body .left-content, .left-content { background-color: #ECECE6 !important; background: #ECECE6 !important; } /* Elementor override styles */ div.pain-section h2.title, .elementor-html-container .pain-section .title, .elementor-widget-html .pain-section .title { font-size: 35px !important; font-weight: 500 !important; color: #040D12 !important; font-family: 'Montserrat', sans-serif !important; line-height: 1.2 !important; margin-bottom: 40px !important; } div.pain-section span.pain-text, .elementor-html-container .pain-section .pain-text, .elementor-widget-html .pain-section .pain-text { font-size: 15px !important; font-weight: 500 !important; color: #333 !important; font-family: 'Montserrat', sans-serif !important; } .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .pain-item { background-color: white; padding: 25px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; cursor: pointer; text-decoration: none; color: inherit; } .pain-item:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); text-decoration: none; color: inherit; } .pain-content { display: flex; align-items: center; gap: 15px; } .pain-icon { width: 24px; height: 24px; object-fit: contain; } .pain-text { font-size: 15px !important; font-weight: 500 !important; color: #333; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; text-decoration-line: none !important; text-decoration-style: none !important; text-decoration-color: transparent !important; text-decoration-thickness: 0 !important; border: none !important; outline: none !important; } /* Specific fix for shoulder pain text decoration issue */ .pain-text, span.pain-text, .pain-item .pain-text, .pain-content .pain-text, .elementor .pain-text, .elementor-widget .pain-text, .elementor-html-container .pain-text, html body .pain-text, html body div .pain-text, html body span.pain-text { text-decoration: none !important; text-decoration-line: none !important; text-decoration-style: none !important; text-decoration-color: transparent !important; text-decoration-thickness: 0 !important; border-top: none !important; border-bottom: none !important; border-left: none !important; border-right: none !important; outline: none !important; box-shadow: none !important; } /* Additional overrides for any potential strikethrough */ .pain-text::before, .pain-text::after { display: none !important; content: none !important; } .arrow-icon { width: 20px; height: 20px; object-fit: contain; opacity: 0.7; } .right-image { flex: 1; position: relative; overflow: hidden; } .right-image img { width: 100%; height: 100%; object-fit: cover; border-top-right-radius: 15px; border-bottom-right-radius: 15px; } @media (max-width: 768px) { .pain-section { flex-direction: column; border-radius: 15px; } .left-content { padding: 40px 30px; } .title { font-size: 28px; margin-bottom: 30px; } .pain-grid { grid-template-columns: 1fr; gap: 15px; } .right-image img { border-radius: 0 0 15px 15px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .title { font-size: 24px; } .pain-item { padding: 20px 15px; } } Click on a condition to learn more about how we can help: Elbow Pain Back Pain Neck Pain Knee Pain Foot Pain Shoulder Pain #services-container:hover .elementor-icon, #services-container:hover .elementor-heading-title, #services-container:hover .elementor-text-editor { color: white !important; transition: color 0.3s ease; } /* For Font Awesome icons */ #services-container:hover .elementor-icon i { color: white !important; transition: color 0.3s ease; } /* For SVG icons */ #services-container:hover .elementor-icon svg { fill: white !important; transition: fill 0.3s ease; } /* For heading and text elements specifically */ #services-container:hover h1, #services-container:hover h2, #services-container:hover h3, #services-container:hover h4, #services-container:hover h5, #services-container:hover h6, #services-container:hover p { color: white !important; transition: color 0.3s ease; } AREAS OF SPECIALTY We bring together expert care from multiple disciplines to support your recovery Osteopathy Realign your body, ease daily tension. Focused Shockwave Therapy Stimulate healing, reduce chronic pain. .cls-1{fill:none;stroke:#020202;stroke-miterlimit:10;stroke-width:1.91px;} Physiotherapy Rebuild strength & restore movement. Sports Massage Release tightness, improve recovery. Perinatal Care Support before, during & after birth. Dry Needling Target muscle tension for faster relief. FREQUENTLY ASKED QUESTIONS We're here to help! Osteopathy, physiotherapy, massage... what's the difference? Osteopathy focuses on realigning the body, physiotherapy is all about rebuilding movement and strength and sports massage targets tight, tense muscles.At Great Dunmow Osteopathy & Health, you get the best of all worlds! Our team works together across these disciplines, combining their strengths to create a personalised treatment plan that addresses your unique needs. What can I expect at my first appointment? Your first appointment is all about understanding you and your needs. Your practitioner will discuss your symptoms, medical history, lifestyle, and goals. They’ll then perform a thorough assessment, which may include posture, movement, and muscle testing. By the end of the session, you’ll receive a personalised treatment plan outlining recommended therapies, the number of sessions, and the path forward - so you know exactly what to expect and how we can help you feel better. How many sessions will I need? The number of sessions depends on your individual needs, the condition being treated, and your goals. During your first appointment, your practitioner will assess your symptoms and provide a personalised treatment plan, outlining the recommended number of sessions and a clear path forward. This plan ensures you know what to expect and helps guide your recovery efficiently. Is treatment painful? Although most of our treatments are gentle, you may experience some mild soreness or tenderness after certain hands-on therapies, dry needling, or sports massage. This is usually short-lived and a normal part of the body responding to treatment. Your practitioner will always explain what to expect and adjust techniques to ensure you are comfortable. How is your perinatal care different from my midwife? While midwives provide essential medical care during pregnancy and birth, our pre and postnatal services focus on the extra support new parents often need but rarely receive. We offer birth preparation, including hypnobirthing techniques, breastfeeding guidance, and post-birth support similar to a doula, helping you adjust and recover at your own pace. We complement your midwife’s care, giving you the personalised attention and guidance that every parent deserves. Do you accept health insurance? All of our team are fully qualified and registered with their relevant professional bodies, and we can provide itemised receipts for every treatment, making it simple for you to submit a claim to your insurance provider. Can't Find The Answer You're Looking For? Request a Free Phone Consultation Get to Know Us Before You Visit Want a sneak peak?Download our welcome pack to learn more about us! Take A Look At Our Welcome Pack OUR TEAM Meet the Practitioners Delivering Your Care... Team Members Carousel * { margin: 0; padding: 0; box-sizing: border-box; } .team-carousel-container { width: 100%; position: relative; overflow: hidden; font-family: 'Montserrat', sans-serif !important; background: transparent; padding: 40px 0; } .team-carousel-container * { font-family: 'Montserrat', sans-serif !important; } .carousel-wrapper { position: relative; width: 100%; overflow: hidden; } .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 20; opacity: 0.8; padding: 0; } .nav-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.2); } .nav-arrow img { width: 30px; height: 30px; filter: brightness(0) invert(1); /* Makes the SVG white */ transition: all 0.3s ease; } .nav-arrow.prev { left: 20px; } .nav-arrow.prev img { transform: rotate(180deg); /* Flip the arrow for left direction */ } .nav-arrow.next { right: 20px; } .carousel-track { display: flex; transition: transform 0.5s ease; width: 100%; } .team-member { flex: 0 0 280px; margin: 0 10px; position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; transition: all 0.3s ease; } .team-member:hover { text-decoration: none; color: inherit; transform: translateY(-5px); } .member-image { width: 100%; height: 350px; background-size: cover; background-position: center; position: relative; border-radius: 15px; overflow: hidden; } .member-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); transition: all 0.3s ease; border-radius: 15px; } .team-member:hover .member-overlay { background: rgba(0, 0, 0, 0); } .member-info { position: absolute; bottom: 20px; left: 20px; color: white; z-index: 10; } .person-icon { position: absolute; top: 15px; left: 15px; width: 24px; height: 24px; z-index: 10; opacity: 0.9; } .member-name { font-size: 15px !important; font-weight: 500 !important; margin-bottom: 4px; color: white !important; } .member-title { font-size: 15px !important; font-weight: 300 !important; color: white !important; opacity: 0.9; } .carousel-nav { display: none; } .nav-dots { display: none; } .nav-dot { display: none; } @media (max-width: 1200px) { .team-member { flex: 0 0 250px; } } @media (max-width: 768px) { .team-member { flex: 0 0 220px; margin: 0 8px; } .member-image { height: 300px; } .nav-arrow img { width: 25px; height: 25px; } .nav-arrow.prev { left: 15px; } .nav-arrow.next { right: 15px; } } @media (max-width: 480px) { .team-member { flex: 0 0 200px; margin: 0 5px; } .member-image { height: 280px; } .member-info { bottom: 15px; left: 15px; } .person-icon { top: 12px; left: 12px; width: 20px; height: 20px; } .nav-arrow img { width: 22px; height: 22px; } .nav-arrow.prev { left: 10px; } .nav-arrow.next { right: 10px; } } /* Elementor override styles */ .elementor-html-container .team-carousel-container, .elementor-widget-html .team-carousel-container { font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-name, .elementor-widget-html .member-name { font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; } .elementor-html-container .member-title, .elementor-widget-html .member-title { font-size: 15px !important; font-weight: 300 !important; font-family: 'Montserrat', sans-serif !important; } Angus Osteopath Tegan Physiotherapist Jason Osteopath Charlotte Sports Therapist Max Osteopath Hadi Osteopath Kim Massage Scott Massage Lindsay Pre & Postnatal Consultant document.addEventListener('DOMContentLoaded', function() { const track = document.getElementById('carouselTrack'); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); const members = document.querySelectorAll('.team-member'); let currentIndex = 0; let membersToShow = getMembersToShow(); const totalMembers = members.length; // Clone members for endless scrolling const firstClones = []; const lastClones = []; function getMembersToShow() { const width = window.innerWidth; if (width >= 1200) return 4; if (width >= 768) return 3; if (width >= 480) return 2; return 1; } function setupInfiniteScroll() { // Clear existing clones firstClones.forEach(clone => clone.remove()); lastClones.forEach(clone => clone.remove()); firstClones.length = 0; lastClones.length = 0; // Create clones for smooth infinite scrolling for (let i = 0; i < membersToShow; i++) { // Clone first members and append to end const firstClone = members[i].cloneNode(true); firstClone.classList.add('clone'); track.appendChild(firstClone); firstClones.push(firstClone); // Clone last members and prepend to beginning const lastClone = members[totalMembers - 1 - i].cloneNode(true); lastClone.classList.add('clone'); track.insertBefore(lastClone, track.firstChild); lastClones.push(lastClone); } // Set initial position to show original members currentIndex = membersToShow; updateCarousel(false); // No transition for initial setup } function updateCarousel(withTransition = true) { const memberWidth = members[0] ? members[0].offsetWidth + 20 : 300; const translateX = -(currentIndex * memberWidth); if (withTransition) { track.style.transition = 'transform 0.5s ease'; } else { track.style.transition = 'none'; } track.style.transform = `translateX(${translateX}px)`; } function nextSlide() { currentIndex++; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex >= totalMembers + membersToShow) { currentIndex = membersToShow; updateCarousel(false); } }, 500); } function prevSlide() { currentIndex--; updateCarousel(); // Check if we need to reset position setTimeout(() => { if (currentIndex < 0) { currentIndex = totalMembers - 1; updateCarousel(false); } }, 500); } // Event listeners nextBtn.addEventListener('click', nextSlide); prevBtn.addEventListener('click', prevSlide); // Auto-play functionality let autoPlayInterval = setInterval(nextSlide, 4000); // Pause auto-play on hover const container = document.querySelector('.team-carousel-container'); container.addEventListener('mouseenter', () => clearInterval(autoPlayInterval)); container.addEventListener('mouseleave', () => { autoPlayInterval = setInterval(nextSlide, 4000); }); // Enhanced touch/swipe support let startX = 0; let startY = 0; let isDragging = false; let hasMoved = false; track.addEventListener('touchstart', (e) => { startX = e.touches[0].clientX; startY = e.touches[0].clientY; isDragging = true; hasMoved = false; clearInterval(autoPlayInterval); }, { passive: true }); track.addEventListener('touchmove', (e) => { if (!isDragging) return; const currentX = e.touches[0].clientX; const currentY = e.touches[0].clientY; const diffX = Math.abs(startX - currentX); const diffY = Math.abs(startY - currentY); // Only prevent default if horizontal swipe is more significant if (diffX > diffY && diffX > 10) { e.preventDefault(); hasMoved = true; } }, { passive: false }); track.addEventListener('touchend', (e) => { if (!isDragging) return; const endX = e.changedTouches[0].clientX; const diffX = startX - endX; if (hasMoved && Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isDragging = false; hasMoved = false; // Restart auto-play autoPlayInterval = setInterval(nextSlide, 4000); }, { passive: true }); // Mouse drag support for desktop let mouseStartX = 0; let isMouseDragging = false; track.addEventListener('mousedown', (e) => { mouseStartX = e.clientX; isMouseDragging = true; track.style.cursor = 'grabbing'; clearInterval(autoPlayInterval); e.preventDefault(); }); document.addEventListener('mousemove', (e) => { if (!isMouseDragging) return; e.preventDefault(); }); document.addEventListener('mouseup', (e) => { if (!isMouseDragging) return; const endX = e.clientX; const diffX = mouseStartX - endX; if (Math.abs(diffX) > 50) { if (diffX > 0) { nextSlide(); } else { prevSlide(); } } isMouseDragging = false; track.style.cursor = 'grab'; autoPlayInterval = setInterval(nextSlide, 4000); }); // Keyboard navigation document.addEventListener('keydown', (e) => { if (e.key === 'ArrowLeft') { prevSlide(); } else if (e.key === 'ArrowRight') { nextSlide(); } }); // Responsive handling window.addEventListener('resize', () => { const newMembersToShow = getMembersToShow(); if (newMembersToShow !== membersToShow) { membersToShow = newMembersToShow; setupInfiniteScroll(); } else { updateCarousel(false); } }); // Initialize setupInfiniteScroll(); }); Request a Free Phone Consultation * { margin: 0; padding: 0; box-sizing: border-box; } .consultation-section { display: flex; width: 100%; max-width: 1200px; margin: 0 auto; border-radius: 15px; overflow: hidden; font-family: 'Montserrat', sans-serif !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .consultation-section * { font-family: 'Montserrat', sans-serif !important; } .left-content { flex: 1; padding: 60px 50px; } .main-title { font-size: 35px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; } .subtitle { font-size: 15px !important; font-weight: 400 !important; color: #666 !important; margin-bottom: 30px !important; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn { background-color: #00211B !important; color: white !important; padding: 15px 30px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; text-decoration: none !important; display: inline-block; margin-bottom: 40px; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; } .book-appointment-btn:hover { background-color: #003d2b !important; text-decoration: none !important; color: white !important; transform: translateY(-2px); } .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .form-group { display: flex; flex-direction: column; } .form-group.full-width { grid-column: 1 / -1; } .form-group.button-group { grid-column: 1 / -1; display: flex; justify-content: flex-end; } .form-input { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-input:focus { outline: none !important; border-color: #00211B !important; } .form-textarea { padding: 15px !important; border: 2px solid #ddd !important; border-radius: 15px !important; font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; min-height: 120px !important; resize: vertical !important; transition: border-color 0.3s ease !important; background: white !important; color: #333 !important; } .form-textarea:focus { outline: none !important; border-color: #00211B !important; } .send-btn { background-color: #00211B !important; color: white !important; padding: 15px 40px; border: none; border-radius: 3px; font-size: 15px !important; font-weight: 500 !important; cursor: pointer; transition: all 0.3s ease; font-family: 'Montserrat', sans-serif !important; letter-spacing: normal !important; text-transform: none !important; width: fit-content; margin-left: auto; display: block; } .send-btn:hover { background-color: #003d2b !important; color: white !important; transform: translateY(-2px); } .send-btn:disabled { background-color: #ccc !important; cursor: not-allowed; transform: none; } .right-content { flex: 1; position: relative; background-image: url('https://gdoc.co.uk/wp-content/uploads/2025/06/WhatsApp-Image-2025-06-15-at-12.53.40.jpeg'); background-size: cover; background-position: center; min-height: 500px; } .testimonial-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 40px 30px 30px; color: white; } .quote-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.9; } .testimonial-text { font-size: 17px !important; font-weight: 400 !important; line-height: 1.5 !important; margin-bottom: 20px !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; opacity: 0.9 !important; color: white !important; } /* Success Modal */ .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 1000; } .modal-content { background: white; padding: 40px; border-radius: 15px; max-width: 500px; width: 90%; position: relative; text-align: center; font-family: 'Montserrat', sans-serif !important; } .modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: #666; } .modal-close:hover { color: #333; } .modal-title { font-size: 24px; font-weight: 600; color: #00211B; margin-bottom: 15px; } .modal-text { font-size: 16px; color: #666; line-height: 1.5; } .error-message { background: #fee; color: #c33; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: none; } @media (max-width: 768px) { .consultation-section { flex-direction: column; } .left-content { padding: 40px 30px; } .main-title { font-size: 28px !important; } .contact-form { grid-template-columns: 1fr; gap: 15px; } .right-content { min-height: 400px; } .testimonial-overlay { padding: 30px 20px 20px; } } @media (max-width: 480px) { .left-content { padding: 30px 20px; } .main-title { font-size: 24px !important; } .form-input, .form-textarea { font-size: 16px !important; } .testimonial-overlay { padding: 25px 15px 15px; } .testimonial-text { font-size: 15px !important; } .quote-icon { width: 30px; height: 30px; } } /* Enhanced Elementor override styles */ body .elementor-html-container .consultation-section *, body .elementor-widget-html .consultation-section *, .elementor .consultation-section *, div.elementor-element .consultation-section * { font-family: 'Montserrat', sans-serif !important; } body .elementor-html-container .main-title, body .elementor-widget-html .main-title, .elementor .main-title, div.elementor-element .main-title { font-size: 35px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; color: #333 !important; line-height: 1.2 !important; margin-bottom: 20px !important; } body .elementor-html-container .subtitle, body .elementor-widget-html .subtitle, .elementor .subtitle, div.elementor-element .subtitle { font-size: 15px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: #666 !important; margin-bottom: 30px !important; } body .elementor-html-container .form-input, body .elementor-html-container .form-textarea, body .elementor-widget-html .form-input, body .elementor-widget-html .form-textarea, .elementor .form-input, .elementor .form-textarea, div.elementor-element .form-input, div.elementor-element .form-textarea { font-size: 18px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; background: white !important; color: #333 !important; border: 2px solid #ddd !important; border-radius: 15px !important; padding: 15px !important; } body .elementor-html-container .book-appointment-btn, body .elementor-widget-html .book-appointment-btn, .elementor .book-appointment-btn, div.elementor-element .book-appointment-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; text-decoration: none !important; border-radius: 3px !important; } body .elementor-html-container .send-btn, body .elementor-widget-html .send-btn, .elementor .send-btn, div.elementor-element .send-btn { background-color: #00211B !important; color: white !important; font-size: 15px !important; font-weight: 500 !important; font-family: 'Montserrat', sans-serif !important; border-radius: 3px !important; letter-spacing: normal !important; text-transform: none !important; } body .elementor-html-container .testimonial-text, body .elementor-widget-html .testimonial-text, .elementor .testimonial-text, div.elementor-element .testimonial-text { font-size: 17px !important; font-weight: 400 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; line-height: 1.5 !important; } body .elementor-html-container .testimonial-author, body .elementor-widget-html .testimonial-author, .elementor .testimonial-author, div.elementor-element .testimonial-author { font-size: 15px !important; font-weight: 600 !important; font-family: 'Montserrat', sans-serif !important; color: white !important; } Request a Free Phone Consultation In pain? Got questions? Fill in your details below to arrange a free telephone consultation with our experienced team, to find out more about you and see how we might be able to help. Request A Free Phone Consultation Professional, friendly and very helpful. I’m kept informed of appointments. I have been going for sometime and each time I have been treated respectfully and offered information on my body function and exercises that will help. A great team. × Message Sent Successfully! Thank you for your message. We'll get back to you as soon as possible to schedule your free phone consultation. document.addEventListener('DOMContentLoaded', function() { const form = document.getElementById('consultationForm'); const modal = document.getElementById('successModal'); const closeModalBtn = document.getElementById('closeModal'); const submitBtn = document.getElementById('submitBtn'); const errorMessage = document.getElementById('errorMessage'); // Form submission form.addEventListener('submit', function(e) { e.preventDefault(); // Disable submit button to prevent double submission submitBtn.disabled = true; submitBtn.textContent = 'Sending...'; // Hide any previous error messages errorMessage.style.display = 'none'; // Get form data const formData = new FormData(form); const formObject = {}; // Convert FormData to regular object for (let [key, value] of formData.entries()) { formObject[key] = value; } console.log('Form data to be sent:', formObject); // Send data to webhook fetch('https://hook.eu2.make.com/iguj67plj8cegyloh7snhqbbrugs9mxe', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(formObject) }) .then(response => { console.log('Response status:', response.status); if (response.ok) { return response.text(); // Make.com webhooks often return text, not JSON } else { throw new Error(`HTTP error! status: ${response.status}`); } }) .then(data => { console.log('Success:', data); showSuccessModal(); form.reset(); }) .catch((error) => { console.error('Error:', error); showErrorMessage('Sorry, there was an error sending your message. Please try again.'); }) .finally(() => { // Re-enable submit button submitBtn.disabled = false; submitBtn.textContent = 'Send Message'; }); }); function showSuccessModal() { modal.style.display = 'flex'; document.body.style.overflow = 'hidden'; } function hideSuccessModal() { modal.style.display = 'none'; document.body.style.overflow = 'auto'; } function showErrorMessage(message) { errorMessage.textContent = message; errorMessage.style.display = 'block'; // Scroll to error message errorMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); } // Close modal events closeModalBtn.addEventListener('click', hideSuccessModal); modal.addEventListener('click', function(e) { if (e.target === modal) { hideSuccessModal(); } }); // Close modal with ESC key document.addEventListener('keydown', function(e) { if (e.key === 'Escape' && modal.style.display === 'flex') { hideSuccessModal(); } }); }); Location We’re conveniently located in the heart of Great Dunmow, just a 2-minute walk from Chequers Lane car park. For patients who have limited mobility, parking is available on site – simply give us a call or email in advance, and we’ll reserve a space for you. Town Centre Location Disabled Parking On Site Minutes From The M11 "Helping You Move Better, Feel Stronger, Live Freer." Facebook-f Instagram X-twitter Tiktok Get in touch 12 Stortford Road, Great Dunmow, CM6 1DA info@gdoc.co.uk 01371 502088 Monday - Saturday : 08:00 - 20:00 More Info Meet The Team Our Values Pricing Blog Book Appointment © Great Dunmow Osteopathy & Health 2025 All rights reserved. Terms & Conditions Privacy Policy {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/astra\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} Manage Consent To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions. Functional Functional Always active The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network. Preferences Preferences The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user. Statistics Statistics The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you. Marketing Marketing The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes. Manage options Manage services Manage {vendor_count} vendors Read more about these purposes Accept Deny View preferences Save preferences View preferences {title} {title} {title} Manage consent document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; var eio_lazy_vars = {"exactdn_domain":"","skip_autoscale":0,"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"threshold":0,"use_dpr":1}; var localize = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"db9f0e4dc6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/gdoc.co.uk\/","cart_redirectition":"yes","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; var EAELImageMaskingConfig = {"svg_dir_url":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/essential-addons-for-elementor-lite\/assets\/front-end\/img\/image-masking\/svg-shapes\/"}; var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.33.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true},"urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/gdoc.co.uk\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b6be105efd"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":3410,"title":"5-Star%20Osteopaths%2C%20Physiotherapists%20%26%20Massage%20%7C%20Great%20Dunmow","excerpt":"","featuredImage":false}}; var elementskit = { resturl: 'https://gdoc.co.uk/wp-json/elementskit/v1/', } var chaty_settings = {"ajax_url":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","analytics":"0","capture_analytics":"1","token":"da34070fef","chaty_widgets":[{"id":0,"identifier":0,"settings":{"cta_type":"simple-view","cta_body":"","cta_head":"","cta_head_bg_color":"","cta_head_text_color":"","show_close_button":1,"position":"right","custom_position":1,"bottom_spacing":"25","side_spacing":"25","icon_view":"vertical","default_state":"click","cta_text":"Contact us","cta_text_color":"#333333","cta_bg_color":"#ffffff","show_cta":"first_click","is_pending_mesg_enabled":"off","pending_mesg_count":"1","pending_mesg_count_color":"#ffffff","pending_mesg_count_bgcolor":"#dd0000","widget_icon":"chat-bubble","widget_icon_url":"","font_family":"Montserrat","widget_size":"54","custom_widget_size":"54","is_google_analytics_enabled":0,"close_text":"Hide","widget_color":"#86CD91","widget_icon_color":"#ffffff","widget_rgb_color":"134,205,145","has_custom_css":0,"custom_css":"","widget_token":"cb5148e856","widget_index":"","attention_effect":""},"triggers":{"has_time_delay":1,"time_delay":"0","exit_intent":0,"has_display_after_page_scroll":0,"display_after_page_scroll":"0","auto_hide_widget":0,"hide_after":0,"show_on_pages_rules":[],"time_diff":0,"has_date_scheduling_rules":0,"date_scheduling_rules":{"start_date_time":"","end_date_time":""},"date_scheduling_rules_timezone":0,"day_hours_scheduling_rules_timezone":0,"has_day_hours_scheduling_rules":[],"day_hours_scheduling_rules":[],"day_time_diff":0,"show_on_direct_visit":0,"show_on_referrer_social_network":0,"show_on_referrer_search_engines":0,"show_on_referrer_google_ads":0,"show_on_referrer_urls":[],"has_show_on_specific_referrer_urls":0,"has_traffic_source":0,"has_countries":0,"countries":[],"has_target_rules":0},"channels":[{"channel":"Phone","value":"01371502088","hover_text":"Phone","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"\/><path d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Phone","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"tel:01371502088","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Whatsapp","value":"4401371502088","hover_text":"WhatsApp","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"\/><path d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"\/><path d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Whatsapp","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"<p>How can we help you? \ud83d\ude0a<\/p>","wp_popup_headline":"Let's chat on WhatsApp","wp_popup_nickname":"The GDOC Team","wp_popup_profile":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/2024\/10\/GDOC-Favicon.png","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"https:\/\/web.whatsapp.com\/send?phone=4401371502088","mobile_target":"","desktop_target":"_blank","target":"_blank","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""},{"channel":"Email","value":"info@gdoc.co.uk","hover_text":"Email","chatway_position":"","svg_icon":"<svg width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><circle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#FF485F\"\/><path d=\"M20.5379 14.2557H1.36919C0.547677 14.2557 0 13.7373 0 12.9597V1.29597C0 0.518387 0.547677 0 1.36919 0H20.5379C21.3594 0 21.9071 0.518387 21.9071 1.29597V12.9597C21.9071 13.7373 21.3594 14.2557 20.5379 14.2557ZM20.5379 12.9597V13.6077V12.9597ZM1.36919 1.29597V12.9597H20.5379V1.29597H1.36919Z\" transform=\"translate(8.48619 12.3117)\" fill=\"white\"\/><path d=\"M10.9659 8.43548C10.829 8.43548 10.692 8.43548 10.5551 8.30588L0.286184 1.17806C0.012346 0.918864 -0.124573 0.530073 0.149265 0.270879C0.423104 0.0116857 0.833862 -0.117911 1.1077 0.141283L10.9659 7.00991L20.8241 0.141283C21.0979 -0.117911 21.5087 0.0116857 21.7825 0.270879C22.0563 0.530073 21.9194 0.918864 21.6456 1.17806L11.3766 8.30588C11.2397 8.43548 11.1028 8.43548 10.9659 8.43548Z\" transform=\"translate(8.47443 12.9478)\" fill=\"white\"\/><path d=\"M9.0906 7.13951C8.95368 7.13951 8.81676 7.13951 8.67984 7.00991L0.327768 1.17806C-0.0829894 0.918864 -0.0829899 0.530073 0.190849 0.270879C0.327768 0.0116855 0.738525 -0.117911 1.14928 0.141282L9.50136 5.97314C9.7752 6.23233 9.91212 6.62112 9.63828 6.88032C9.50136 7.00991 9.36444 7.13951 9.0906 7.13951Z\" transform=\"translate(20.6183 18.7799)\" fill=\"white\"\/><path d=\"M0.696942 7.13951C0.423104 7.13951 0.286185 7.00991 0.149265 6.88032C-0.124573 6.62112 0.012346 6.23233 0.286185 5.97314L8.63826 0.141282C9.04902 -0.117911 9.45977 0.0116855 9.59669 0.270879C9.87053 0.530073 9.73361 0.918864 9.45977 1.17806L1.1077 7.00991C0.970781 7.13951 0.833862 7.13951 0.696942 7.13951Z\" transform=\"translate(8.47443 18.7799)\" fill=\"white\"\/><\/svg>","is_desktop":1,"is_mobile":1,"icon_color":"#86cd91","icon_rgb_color":"134,205,145","channel_type":"Email","custom_image_url":"","order":"","pre_set_message":"","is_use_web_version":"1","is_open_new_tab":"1","is_default_open":"0","has_welcome_message":"0","emoji_picker":"1","input_placeholder":"Write your message...","chat_welcome_message":"","wp_popup_headline":"","wp_popup_nickname":"","wp_popup_profile":"","wp_popup_head_bg_color":"#4AA485","qr_code_image_url":"","mail_subject":"","channel_account_type":"personal","contact_form_settings":[],"contact_fields":[],"url":"mailto:info@gdoc.co.uk","mobile_target":"","desktop_target":"","target":"","is_agent":0,"agent_data":[],"header_text":"","header_sub_text":"","header_bg_color":"","header_text_color":"","widget_token":"cb5148e856","widget_index":"","click_event":"","viber_url":""}]}],"data_analytics_settings":"off","lang":{"whatsapp_label":"WhatsApp Message","hide_whatsapp_form":"Hide WhatsApp Form","emoji_picker":"Show Emojis"},"has_chatway":""}; var smushLazyLoadOptions = {"autoResizingEnabled":false,"autoResizeOptions":{"precision":5,"skipAutoWidth":true}}; _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"239018600\",\"post\":\"3410\",\"tz\":\"0\",\"srv\":\"gdoc.co.uk\",\"j\":\"1:15.2\"}") ]); _stq.push([ "clickTrackerInit", "239018600", "3410" ]); var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":{"wpgmza-api-consent-given":["1",0]},"block_ajax_content":"","banner_version":"1804","version":"7.4.4","store_consent":"","do_not_track_enabled":"","consenttype":"optin","region":"uk","geoip":"","dismiss_timeout":"","disable_cookiebanner":"1","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/gdoc.co.uk\/wp-json\/complianz\/v1\/","locale":"lang=en&locale=en_GB","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"30","cookie_path":"\/","categories":{"statistics":"statistics","marketing":"marketing"},"tcf_active":"","placeholdertext":"Click to accept {category} cookies and enable this content","css_file":"https:\/\/gdoc.co.uk\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=1804","page_links":{"uk":{"cookie-statement":{"title":"","url":"https:\/\/gdoc.co.uk\/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Click to accept {category} cookies and enable this content"}; if ('undefined' != typeof window.jQuery) { jQuery(document).ready(function ($) { $(document).on('elementor/popup/show', () => { let rev_cats = cmplz_categories.reverse(); for (let key in rev_cats) { if (rev_cats.hasOwnProperty(key)) { let category = cmplz_categories[key]; if (cmplz_has_consent(category)) { document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } let services = cmplz_get_services_on_page(); for (let key in services) { if (services.hasOwnProperty(key)) { let service = services[key].service; let category = services[key].category; if (cmplz_has_service_consent(service, category)) { document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { cmplz_remove_placeholder(obj); }); } } } }); }); } document.addEventListener("cmplz_enable_category", function(consentData) { var category = consentData.detail.category; var services = consentData.detail.services; var blockedContentContainers = []; let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; for (var skey in services) { if (services.hasOwnProperty(skey)) { let service = skey; selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; } } document.querySelectorAll(selectorVideo).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; obj.classList.add('cmplz-elementor-activated'); if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); obj.classList.setAttribute('data-widget_type', attr); } if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { obj.classList.remove('cmplz-elementor-widget-video-playlist'); obj.classList.add('elementor-widget-video-playlist'); } obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); blockedContentContainers.push(obj); }); document.querySelectorAll(selectorGeneric).forEach(obj => { let elementService = obj.getAttribute('data-service'); if ( cmplz_is_service_denied(elementService) ) { return; } if (obj.classList.contains('cmplz-elementor-activated')) return; if (obj.classList.contains('cmplz-fb-video')) { obj.classList.remove('cmplz-fb-video'); obj.classList.add('fb-video'); } obj.classList.add('cmplz-elementor-activated'); obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); blockedContentContainers.push(obj.closest('.elementor-widget')); }); /** * Trigger the widgets in Elementor */ for (var key in blockedContentContainers) { if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { let blockedContentContainer = blockedContentContainers[key]; if (elementorFrontend.elementsHandler) { elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) } var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); blockedContentContainer.classList.remove('cmplz-blocked-content-container'); blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); } } }); let cmplzBlockedContent = document.querySelector('.cmplz-blocked-content-notice'); if ( cmplzBlockedContent) { cmplzBlockedContent.addEventListener('click', function(event) { event.stopPropagation(); }); } wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"f0071a0873","urls":{"assets":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/assets\/","rest":"https:\/\/gdoc.co.uk\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_GB","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/gdoc.co.uk\/wp-content\/plugins\/pro-elements\/modules\/lottie\/assets\/animations\/default.json"}}; var ekit_config = {"ajaxurl":"https:\/\/gdoc.co.uk\/wp-admin\/admin-ajax.php","nonce":"7c9c745df8"}; /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);