Lead #2225

Company
Moore (South) Salisbury Accountants, Auditors and Tax Services.
Website
https://moore.co.uk
Best Contact
Email
()

Override

Captured Pages

Emails:
View text

                    
Emails:
View text

                    
Emails:
View text

                    
Emails:
View text

                    
Emails:
View text

                    
Emails:
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Contact Home Contact Moore UK locations Find your nearest Moore office View locations Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/contact","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
Emails:
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Contact Home Contact Moore UK locations Find your nearest Moore office View locations Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/contact","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
Emails:
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Our People FILTER: Service Accounting, audit & assurance International services Tax Consulting & advisory Sector Food, drink & hospitality Energy, mining & renewables Financial services Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Education Location Aberdeen Albans Belfast Chichester Coleraine Corby Derry ~ Londonderry Douglas Dundee Edinburgh Enfield Glasgow Guildford Heathrow Inverness London London West End Newcastle upon Tyne Newport Newport (Isle of Wight) Northampton Perth Peterborough Redhill Romford Salisbury Sheffield Southampton St Albans St. Helier St. Peter Port Stevenage Stoke on Trent Clear All Adam Flight Director Moore Kingston Smith Adam Hardie Partner Johnston Carmichael Aileen Scott Tax Partner Johnston Carmichael Alan Hamilton Partner - Financial Services Johnston Carmichael Alex Crompton Partner Moore Kingston Smith Alex Docherty Partner Johnston Carmichael Alex Nicholson Partner Johnston Carmichael Alison Mackinnon Tax Manager Moore Northern Home Counties Allison Dalton Audit Partner Johnston Carmichael Amanda Etty Partner Moore East Midlands Andrea Wulff Managing Partner Chartered Accountants and Auditors in Chichester Andrew Bloom Partner - Head of Legal Services Moore SGD Law Andrew Coldwell Partner Chartered Accountants in Salisbury Andrew Dixon Partner Moore Dixon Andrew Ewing Partner Johnston Carmichael Andrew McMillan Tax Partner Johnston Carmichael Andrew Stickland Partner Moore Kingston Smith Andrew Tanner Associate Chartered Accountants in Salisbury Andrew Williamson Partner Moore Kingston Smith Andy Hancock Partner Moore East Midlands Anjali Kothari Partner Moore Kingston Smith Anna Matveeva Partner Moore Kingston Smith Anne Davies Associate Moore Northern Home Counties April Foster Managing Partner Moore East Midlands Asad Shah Associate Moore Northern Home Counties Barry Masson Audit Partner Johnston Carmichael Becky Shields Partner/Board Member Moore Kingston Smith Ben Leandro Partner Moore Kingston Smith Brian Anthony Mahon Director Moore Insight Brian Baker Partner Moore Kingston Smith Bridget Culverwell Partner Moore Northern Home Counties Bryan Shepka Audit Partner Johnston Carmichael Callum Wilson Tax Partner Johnston Carmichael Carolyn Rossiter Partner Moore East Midlands Chris Buckden Director – Tax Moore Kingston Smith Chris Eccles Partner Moore Northern Home Counties Chris Goodwin Partner Chartered Accountants and Auditors in Guildford Chris Hughes Partner Moore Kingston Smith Chris Purkiss Partner Moore Kingston Smith Claire Roberts Tax Partner Moore Kingston Smith 1 2 3 … 6 > Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/people","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
Emails: jgibbs@mks.co.uk
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Press enquiries Home About us Press enquiries Menu About us Contact us Our Moore experts provide regular commentary to national and international news channels and trade press. If you require input from any of our specialists, please contact our PR representatives: Jon Gibbs Chief Marketing Officer +44 (0)7753 188422 e: JGibbs@mks.co.uk Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/about-us\/press-enquiries","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Request for proposal Home About us Request for proposal Menu About us Contact us Thank you for your interest in Moore and our services. Part of our commitment to you is to provide access to the right people to meet your needs, therefore please complete the form below and upload any relevant documents. We will respond to your enquiry very shortly. Request for proposal TitleFirst Name *Last Name *Email Address *Phone NumberCompany/organisation nameJob titlePostcode *ZIP / Postal CodeType of requestInvitation to tenderRequest for informationPre-qualification questionnaireExpression of interestPlease provide more information about the services you require *0 / 180AttachmentChoose FileNo file chosenDelete uploaded fileAttachmentChoose FileNo file chosenDelete uploaded fileAttachmentChoose FileNo file chosenDelete uploaded fileRequest Quote Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "322",},success: function (response) {jQuery('#forminator-module-322 #forminator_nonce').val( response.data );}});})jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[322] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-322[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1-first-name\": \"trim\",\"name-1-first-name\": \"required\",\"name-1-last-name\": \"trim\",\"name-1-last-name\": \"required\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {},\"text-3\": {\"required\": true,},\"textarea-1\": {\"required\": true,\"maxlength\": 180,},\"upload-1\": {\n},\n\"upload-2\": {\n},\n\"upload-3\": {\n},\n","messages":"\"name-1-first-name\": \"This field is required. Please input your first name.\",\n\"name-1-last-name\": \"This field is required. Please input your last name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"textarea-1\": {\"required\": \"This field is required. Please enter text.\",\n\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"upload-1\": {\n\"extension\": \"Error saving form. Uploaded file extension is not allowed.\",\n},\n\"upload-2\": {\n\"extension\": \"Error saving form. Uploaded file extension is not allowed.\",\n},\n\"upload-3\": {\n\"extension\": \"Error saving form. Uploaded file extension is not allowed.\",\n},\n","conditions":{"fields":[],"relations":{"name-2":[],"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"address-1":[],"checkbox-1":[],"textarea-1":[],"upload-1":[],"upload-2":[],"upload-3":[],"captcha-1":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/about-us\/request-for-proposal","form_id":322},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":""}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } }); jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/about-us\/request-for-proposal","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Why ESG is important to Moore Striving to change the world Home About us Why ESG is important to Moore Menu About us Contact us The Moore Global network has always committed to help people thrive – our clients, our people and the communities they live and work in. We strongly believe that Environmental, Social and Governance (ESG) issues are some of the most important facing our world today. Our commitment to ESG is driven by our overarching Moore Social Ambition programme, where all Moore firms commit to the following: “We promise to always be a driving force for positive social impact.” Our social impact is measured against five key themes which align with the 17 Sustainability Development Goals set out by the United Nations: Quality and supply chain Our natural world Equity, diversity and inclusion Community care Education, people and development At Moore, we don’t just say it, we take action. Social Ambition is embedded into our culture and ways of working. The movement is being driven by our aspiring leaders across the world who have committed to being Social Ambition Ambassadors, making sure their firms take action and measure the impact. There are a number of network-wide initiatives, including: Moore Ambition: A program offered to aspiring leaders in the Moore network to develop their skills and knowledge. Future leaders attend virtual monthly meetings and learn from Anton Colella, CEO of Moore Global and Andy Armanino, Chair of Moore Global. Moore Heart: A central platform for Moore Social Value initiatives throughout Moore member firms. Moore Heart is about uncovering and championing the acts of kindness and good deeds performed by firms and staff across the Moore Global community. Moore Talent: A program inspired by our network of people and focused on the four pillars of Leadership Excellence, Personal Excellence, Firm Excellence and Technical Excellence. ESG Service: Our Moore Global experts have developed a unique ESG maturity framework. We report on ESG risks that matter and work alongside our clients in the delivery of their ESG priorities. Social Value & Social Impact Advisory: We have experts who support clients in understanding how best to make a positive social impact, based on their values and business type. Reporting and sharing social impact has never been more important. In addition to our network-wide activities, individual member firms have dedicated action plans and KPIs with overarching targets and goals to make a positive social impact, with progress actively monitored by the network. Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/about-us\/why-esg-is-important-to-moore","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Global network Home About us Global network Throughout our history, we’ve provided solutions to meet our clients’ international requirements. As a result, we’ve built significant experience dealing with complex international issues. Experience that’s proven invaluable to our clients with overseas interests. Our experience and expertise, coupled with the Moore Global network, enables us to help you to realise your international aspirations, particularly on issues such as business and systems assurance, tax planning and international business structures. As the world gets smaller, so it becomes more complicated. Our reach and experience afford us unique insights into that future. Find out more about Moore Global Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/about-us\/global-network","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
Emails:
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } About Us Helping you thrive in a changing world Home About us Menu Global network Press enquiries Request for proposal Why ESG is important to Moore Contact us Moore UK chartered accountants & business advisers Helping you thrive in a changing world Moore UK are accountants and business advisers comprising of ten member firms, with 38 offices and over 2,000 people, all sharing common values and goals. Each firm has a strong local presence, providing accounting and advisory services to businesses across the UK and globally from small businesses to mid-sized listed companies, the not for profit sector and private clients. You’ll have access to a range of core services, including audit, accounting, tax, outsourcing, corporate finance, restructuring, and wealth management. We ensure easy access to the right people, so decisions can be made quickly and confidently. A consistent team will partner with you to support your aspirations and contribute to your success. Moore UK firms are also members of Moore Global Network Limited. So if you need support on international matters, we can provide the support and guidance you need. Meet the executive team Mark Lance – CEO, Moore UK Mark Lance began his career with Moore Stephens in corporate recovery before joining BDO in a similar role in 1992. In 2001, he transitioned to corporate leadership with The Cornhill Group, serving as CEO for over 20 years. His extensive experience in corporate governance and compliance has equipped him with a strategic vision for growth and excellence. A long-standing member of the Moore community, Mark is dedicated to expanding the Moore brand in the UK. His focus is on enhancing the member firm experience and growing the network across various regions. Mark is committed to fostering a culture of autonomy and collaboration, ensuring the firm’s reputation for quality and integrity continues to thrive. You can contact Mark here. Matt Meadows – Chair, Moore UK As Moore Kingston Smith’s managing partner, Matt strongly believes that creating the right environment for people to realise their ambitions is fundamental—one where everyone has the opportunity to learn and grow while delivering quality and excellence to clients. Clients are firmly at the heart of the network. Our member firms share in our clients’ desire for success, and through our talented network of experts, we collaborate to find innovative solutions to help them achieve their ambitions. Through genuine understanding, built on decades of listening to clients’ challenges, Moore UK leverages capabilities to support our network of clients and people in an ever-changing world. Sharing knowledge, expertise, and best practices is key to our approach and success. As Chair, Matt looks forward to supporting Moore UK in achieving its mission to help clients, people, and communities thrive while driving positive social impact. You can contact Matt here. Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk\/about-us","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });
https://moore.co.uk/
Status: 200
Emails:
View text
.nav-menu { display: none; gap: 20px; } @media screen and (min-width: 1000px){ .nav-menu { display: flex; } } .mobile-draw-open .nav-menu { display: block; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background-color: var(--color-mks-dark-blue); z-index: 1000; } .admin-bar.mobile-draw-open .nav-menu { top: 110px; } .nav-menu a { color: #FFF; font-weight: 400; } @media screen and (min-width: 1000px){ .nav-menu a { color: var(--color-text); } } .menu-items { display: grid; list-style: none; padding: 0; } @media screen and (min-width: 1000px){ .menu-items { display: flex; } } .menu-item { position: relative; } .menu-item.has-submenu .menu-link:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .menu-item.has-submenu.open .menu-link:after { transform: rotate(-45deg); } @media screen and (min-width: 1000px){ .menu-item.has-submenu .menu-link:after { border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; } } .menu-link { display: block; padding: 10px; text-decoration: none; } .dropdown { display: none; text-transform: none; } .nav-menu .dropdown a { text-transform: none; font-weight: 300; display: inline-block; width: auto; } .open .dropdown { display: block; } @media screen and (max-width: 1000px){ .nav-menu ul li { font-size: 20px; } .nav-menu ul ul li { font-size: 16px; } } @media screen and (min-width: 1000px){ .dropdown { display: flex; visibility: hidden; opacity: 0; margin-top: 25px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); transition: all 300ms ease-in-out; z-index: 100; } .dropdown-wrap { display: flex; background: var(--color-mks-dark-blue); padding: 25px; box-shadow: 10px 0 30px rgba(0,0,0,0.25); } } .nav-menu .dropdown a { color: white; white-space: nowrap; text-decoration: none; border-bottom: 1px solid transparent; transition: all 300ms ease; } .nav-menu .dropdown--mega a { white-space: normal; } .nav-menu .dropdown a:hover { border-bottom: 1px solid var(--color-mks-blue); } .dropdown ul { list-style: none; padding: 0 0 0 25px; } @media screen and (min-width: 1000px){ .dropdown ul { margin: 0; padding: 0; } } @media screen and (min-width: 1000px){ .dropdown--mega { display: flex; position: fixed; top: 86px; width: 100%; max-width: 1440px; font-size: 16px; flex-wrap: wrap; padding: 0 25px; } .admin-bar .dropdown--mega { top: 117px; } .scrolling .dropdown--mega { top: 70px; } .admin-bar.scrolling .dropdown--mega { top: 100px; } .dropdown--mega .dropdown-wrap { display: flex; padding: 55px; gap: 55px; width: 100%; } .dropdown__column { flex: 1 1 calc(20% - 50px); } } @media screen and (max-width: 1000px) { .dropdown__column .mega-submenu { display: none; } .dropdown__column .submenu-open .mega-submenu { display: grid; } .mega-submenu { gap: 8px; margin-bottom: 25px; } .menu-title:after { content: ""; border: solid var(--color-mks-blue); border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); position: relative; top: -2px; margin-left: 8px; transition: all 300ms ease; } .submenu-open .menu-title:after { transform: rotate(-45deg); } } .dropdown__column .menu-title{ margin-bottom: 8px; display: inline-block; } .dropdown__column ul { display: grid; gap: 8px; } .menu-item.active .dropdown--mega. { display: flex; } .menu-item.active .dropdown { opacity: 1; visibility: visible; margin-top: 0; } .nav-menu a.menu-title { font-weight: 700; } Services Accounting, audit & assurance Audit Business outsourcing Cloud accounting Company secretarial Payroll services Consulting & advisory Corporate finance Dispute advisory & investigations Governance, risk & internal audit Human resources IT consultancy Legal services Restructuring & insolvency Sustainability services Wealth management Tax Business tax Capital allowances Making Tax Digital for Income Tax self assessment information hub Private client tax R&D tax relief SDLT advice Tax investigations Trusts, estates & probate VAT International Services Doing business in China Global mobility International Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Maritime Technology & media Insights About us About us Global network Global Intelligence Why ESG is important to Moore Request for proposal Press enquiries Locations People Careers Contact Us const menuItems = document.querySelectorAll('.menu-item'); function isMobileDevice() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; // Common mobile user agent patterns const isMobileUA = /android|iphone|ipod|blackberry|bb10|mini|windows\sce|palm/i.test(userAgent); // Exclude tablets and larger screens const maxMobileWidth = 768; // Adjust if needed const isSmallScreen = window.innerWidth <= maxMobileWidth; return isMobileUA && isSmallScreen; } const isTouchDevice = () => 'ontouchstart' in window || navigator.maxTouchPoints > 0; if (isMobileDevice()) { // Handle top-level menu-link taps document.querySelectorAll('.menu-link').forEach(link => { link.addEventListener('touchstart', function (e) { const menuItem = this.closest('.menu-item'); if (activeLink !== this) { e.preventDefault(); // Close all other open menus document.querySelectorAll('.menu-item').forEach(item => { if (item !== menuItem) item.classList.remove('open'); }); menuItem.classList.toggle('open'); activeLink = this; } else { // Second tap: follow link activeLink = null; } }); }); // Handle second-level menu-title taps document.querySelectorAll('.menu-title').forEach(title => { title.addEventListener('touchstart', function (e) { const megaItem = this.closest('.mega-menu-item'); if (activeTitle !== this) { e.preventDefault(); // Close other submenus in the same column // ✅ New: close all other submenus globally document.querySelectorAll('.mega-menu-item').forEach(item => { if (item !== megaItem) item.classList.remove('submenu-open'); }); megaItem.classList.toggle('submenu-open'); activeTitle = this; } else { // Second tap: follow link activeTitle = null; } }); }); // Close menus when tapping outside document.addEventListener('touchstart', function (e) { const isMenuTap = e.target.closest('.menu-items'); if (!isMenuTap) { document.querySelectorAll('.menu-item').forEach(item => item.classList.remove('open')); document.querySelectorAll('.mega-menu-item').forEach(item => item.classList.remove('submenu-open')); activeLink = null; activeTitle = null; } }); } else { // Desktop hover behaviour menuItems.forEach(item => { item.addEventListener('mouseenter', () => { menuItems.forEach(i => i.classList.remove('active')); item.classList.add('active'); }); item.addEventListener('mouseleave', () => { setTimeout(() => { if (!item.matches(':hover')) { item.classList.remove('active'); } }, 300); }); }); document.querySelector('.nav-menu').addEventListener('mouseleave', () => { menuItems.forEach(item => item.classList.remove('active')); }); } Moore UK chartered accountants and business advisers Helping you thrive in a changing world Services We offer an extensive range of specialist services from audit to advisory and outsourced accounting services. View Services Sectors We have considerable expertise in several industry sectors including manufacturing and distribution, real estate and construction, charities and media. View Sectors Why choose Moore 2000 professionals putting clients first 38 UK locations rooted in local communities Local service, global strength The OMB survey Over the last decade, Moore UK have conducted market research to measure Owner Managed Business (OMB) confidence levels. Find out more Insights OMB Report: Why businesses are holding back on investment 18.11.2025 Companies House fees are changing from February 2026 05.11.2025 How owner-managed businesses can prepare for the UK Autumn Budget 24.09.2025 New HMRC Advisory Fuel Rates for September 2025: What Employers and Employees Need to Know 24.09.2025 Act Now: Securing Business Property Relief Before the 6 April 2026 Deadline 12.09.2025 The real impact of the 2024 Autumn Budget IHT announcements 18.08.2025 View all Insights Find your local Moore firm Find your local firm Network of the year We are very proud to be the winner of Network of the Year at the International Accounting Forum & Awards 2025! How can Moore help you? Contact Us Get in touch Get in touch Name *Email Address *Phone Number *Job titleCompanyPostcode *Which office would you like to contact?Aberdeen - Johnston CarmichaelBelfast - Moore Northern IrelandChichester - Moore SouthColeraine - Moore Northern IrelandCorby - Moore East MidlandsDerry ~ Londonderry - Moore Northern IrelandIsle of Man - Moore DixonDundee - Johnston CarmichaelEdinburgh - Johnston CarmichaelEnfield - Moore Northern Home CountiesGlasgow - Johnston CarmichaelGuildford - Moore SouthLondon (Heathrow) - Moore Kingston SmithLondon - Johnston CarmichaelLondon - Moore Family OfficeLondon (City) - Moore Kingston SmithLondon (West End) - Moore Kingston SmithNewcastle upon Tyne - Johnston CarmichaelNewport (Isle of Wight) changed to Isle of Wight - Moore SouthNorthampton - Moore East MidlandsPeterborough - Moore East MidlandsRedhill - Moore Kingston SmithReading - Moore Kingston SmithRomford - Moore Kingston SmithSalisbury - Moore SouthSheffield - Moore InsightSouthampton - Moore SouthSt Albans - Moore Kingston SmithJersey - Moore Stephens JerseyGuernsey - Moore Stephens Channel IslandsStevenage - Northern Home CountiesStoke on Trent - Moore StokeServices Required *Accounting, audit & assuranceAuditBusiness outsourcingBusiness taxCapital allowancesCloud accountingCompany secretarialConsulting & advisoryCorporate financeDispute advisory & investigationsDoing business in ChinaGlobal mobilityGovernance, risk & internal auditHuman resourcesInternational ServicesInternational TaxIT consultancyLegal servicesMaking Tax Digital for Income Tax self assessment information hubPayroll servicesPrivate client taxR&D tax reliefRestructuring & insolvencySDLT adviceSustainability servicesTaxTax investigationsTrusts, estates & probateVATWealth managementMessage0 / 180I have read and accept the Moore UK privacy policy:Send Message Contact us If you have a general enquiry rather than a question for a specific partner, then please phone or email us and we will respond as quickly as possible. Services Accounting, audit & assurance Consulting & advisory International services Tax Sectors Education Energy, mining & renewables Financial services Food, drink & hospitality Manufacturing & distribution Maritime Owner managed businesses Professional practices Public sector Real estate & construction Retail & wholesale Technology & media About Our People Global network Why ESG is important to Moore Press enquiries Request for proposal Locations Contact Cookies Privacy Policy Anti-slavery and human trafficking policy Website Disclaimer © Moore UK /* <![CDATA[ */ var my_ajax_object = {"ajax_url":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php"}; /* ]]> */ /* <![CDATA[ */ var ForminatorFront = {"ajaxUrl":"https:\/\/www.moore.co.uk\/wp\/wp-admin\/admin-ajax.php","cform":{"processing":"Submitting form, please wait","error":"An error occurred while processing the form. Please try again","upload_error":"An upload error occurred while processing the form. Please try again","pagination_prev":"Previous","pagination_next":"Next","pagination_go":"Submit","gateway":{"processing":"Processing payment, please wait","paid":"Success! Payment confirmed. Submitting form, please wait","error":"Error! Something went wrong when verifying the payment"},"captcha_error":"Invalid CAPTCHA","no_file_chosen":"No file chosen","intlTelInput_utils_script":"https:\/\/www.moore.co.uk\/app\/plugins\/forminator\/assets\/js\/library\/intlTelInputUtils.js","process_error":"Please try again","payment_failed":"Payment failed. Please try again.","payment_cancelled":"Payment was cancelled"},"poll":{"processing":"Submitting vote, please wait","error":"An error occurred saving the vote. Please try again"},"quiz":{"view_results":"View Results"},"select2":{"load_more":"Loading more results\u2026","no_result_found":"No results found","searching":"Searching\u2026","loaded_error":"The results could not be loaded."}}; /* ]]> */ jQuery(function() {jQuery.ajax({url: 'https://www.moore.co.uk/wp/wp-admin/admin-ajax.php',type: "POST",data: {action: "forminator_get_nonce",form_id: "830",},success: function (response) {jQuery('#forminator-module-830 #forminator_nonce').val( response.data );}});}) jQuery(function () { window.Forminator_Cform_Paginations = window.Forminator_Cform_Paginations || []; window.Forminator_Cform_Paginations[830] = {"has-pagination":false,"pagination-header-design":"show","pagination-header":"nav","last-steps":"Finish","last-previous":"Previous","pagination-labels":"default","has-paypal":false}; var runForminatorFront = function () { jQuery('#forminator-module-830[data-forminator-render="0"]') .forminatorFront({"form_type":"custom-form","inline_validation":true,"print_value":false,"rules":"\"name-1\": \"required\",\"name-1\": \"trim\",\"email-1\": {\n\"required\": true,\"emailWP\": true,},\n\"phone-1\": {\"required\": true,\"trim\": true,},\"text-3\": {\"required\": true,},\"select-1[]\": \"required\",\"textarea-1\": {\"maxlength\": 180,},\"checkbox-1[]\": \"required\",","messages":"\"name-1\": \"This field is required. Please input your name.\",\n\"email-1\": {\n\"required\": \"This field is required. Please input a valid email.\",\n\"emailWP\": \"This is not a valid email.\",\n\"email\": \"This is not a valid email.\",\n},\n\"phone-1\": {\n\"required\": \"This field is required. Please input a phone number.\",\n\"trim\": \"This field is required. Please input a phone number.\",\n\"phone\": \"Please enter a valid phone number.\",\n},\n\"text-3\": {\"required\": \"This field is required. Please enter text.\",\n},\"select-1[]\": \"This field is required. Please select a value.\",\n\"textarea-1\": {\"maxlength\": \"You exceeded the allowed amount of characters. Please check again.\",\n},\"checkbox-1[]\": \"This field is required. Please select a value.\",\n","conditions":{"fields":[],"relations":{"name-1":[],"email-1":[],"phone-1":[],"text-1":[],"text-2":[],"text-3":[],"select-2":[],"select-1":[],"textarea-1":[],"checkbox-1":[],"captcha-1":[],"hidden-1":[],"hidden-2":[],"submit":[]}},"calendar":"{\"days\":[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],\"months\":[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]}","paypal_config":{"live_id":"","sandbox_id":"","redirect_url":"https:\/\/www.moore.co.uk","form_id":830},"forminator_fields":["address","calculation","captcha","consent","currency","custom","date","email","gdprcheckbox","group","hidden","html","checkbox","name","number","page-break","password","paypal","phone","postdata","radio","rating","section","select","slider","stripe-ocs","stripe","text","textarea","time","upload","url"],"general_messages":{"calculation_error":"Failed to calculate field.","payment_require_ssl_error":"SSL required to submit this form, please check your URL.","payment_require_amount_error":"PayPal amount must be greater than 0.","form_has_error":"Please correct the errors before submission."},"payment_require_ssl":false,"has_loader":true,"loader_label":"Submitting...","calcs_memoize_time":300,"is_reset_enabled":true,"has_stripe":false,"has_paypal":false,"submit_button_class":"btn btn--primary"}); } if (window.elementorFrontend) { if (typeof elementorFrontend.hooks !== "undefined") { elementorFrontend.hooks.addAction('frontend/element_ready/global', function () { runForminatorFront(); }); } } else { runForminatorFront(); } if (typeof ForminatorValidationErrors !== 'undefined') { var forminatorFrontSubmit = jQuery(ForminatorValidationErrors.selector).data('forminatorFrontSubmit'); if (typeof forminatorFrontSubmit !== 'undefined') { forminatorFrontSubmit.show_messages(ForminatorValidationErrors.errors); } } if (typeof ForminatorFormHider !== 'undefined') { var forminatorFront = jQuery(ForminatorFormHider.selector).data('forminatorFront'); if (typeof forminatorFront !== 'undefined') { jQuery(forminatorFront.forminator_selector).find('.forminator-row').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-steps').hide(); jQuery(forminatorFront.forminator_selector).find('.forminator-pagination-footer').hide(); } } });