Lead #2603
Best Contact
—
Email
contact@maynmoy.com (generic)
Override
Captured Pages
http://maynmoy.com/staff
Status: 404
Emails:
View text
http://maynmoy.com/our-team
Status: 404
Emails:
View text
http://maynmoy.com/meet-the-team
Status: 404
Emails:
View text
http://maynmoy.com/team
Status: 404
Emails:
View text
http://maynmoy.com/about
Status: 200
Emails: contact@maynmoy.com
View text
07535 313875 Home About Us For Individuals For Companies Contact Us 07535 313875 Home About Us For Individuals For Companies Contact Us // Initialize Carousel jQuery(function ($) { if ((jQuery(window).width() < 0)|| (jQuery(window).width() <= 480)|| (jQuery(window).width() >= 480 && jQuery(window).width() <= 980)|| (jQuery(window).width() >= 980)) { // Define media queries for different device sizes const columnClass = ".pac_dcm_column_1"; column = $(columnClass); column.navigationImages = []; slickSettings = { fade: false, centerMode: true, infinite: true, slidesToShow: 5, variableWidth: false, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, rtl: false, speed: 500, pauseOnHover: false, useCSS: true, useTransform: true, cssEase: 'ease', waitForAnimate: true, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false, responsive: [ { breakpoint: 980, settings: { fade: false, centerMode: true, variableWidth: false, infinite: true, slidesToShow: 3, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, pauseOnHover: false, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false } }, { breakpoint: 767, settings: { fade: false, centerMode: false, infinite: true, variableWidth: false, slidesToShow: 2, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, pauseOnHover: false, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false } } ] }; //====================================================================== // Carousel Navigation Images //====================================================================== column.navigationImages = jQuery(columnClass).data("slick-navigation-images"); if ('undefined' === typeof column.navigationImages) { column.navigationImages = []; } // Total Items Per Row const numberOfItemsPerRow = parseInt('5'); //====================================================================== // Slick On Init //====================================================================== column.on('init', function (event, slick, currentSlide, nextSlide) { let overlayLoading = column.prev('.loading__overlay'); if (overlayLoading.length > 0) { overlayLoading.fadeOut('slow'); column.fadeIn('slow'); } window.carouselCurrentSlide = slick.currentSlide; window.carouselTotalSlides = slick.slideCount; $(columnClass + ' .slick-current').addClass('active'); $(columnClass + ' .slick-current').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').addClass('previousSlide'); if (numberOfItemsPerRow === 3) { $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide'); $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass("prePreviousSlide"); } else if (5 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (7 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (9 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (11 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } }); //====================================================================== // Initliaze Slick //====================================================================== column.slick(slickSettings); //====================================================================== // Slick Slider Counter //====================================================================== //====================================================================== // Slick Before Change //====================================================================== column.on('beforeChange', function (event, {slideCount: count}, currentSlide, nextSlide) { let dataSlideIndex = [nextSlide, nextSlide - count, nextSlide + count].map((n) => columnClass + ` [data-slick-index="${n}"]`).join(", "); $(columnClass + ' .slick-slide') .removeClass('active') .removeClass('nextSlide') .removeClass('preNextSlide') .removeClass('previousSlide') .removeClass('prePreviousSlide'); $(dataSlideIndex).addClass('active'); $(columnClass + ' .slick-slide.active').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').addClass('previousSlide'); if (numberOfItemsPerRow === 3) { $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide'); $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass('prePreviousSlide'); } else if (5 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (7 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (9 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (11 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } }); //====================================================================== // Slick After Change //====================================================================== column.on('afterChange', function (event, slick, currentSlide) { }); //====================================================================== // Keyboard Navigation //====================================================================== //====================================================================== // RecalculateWidth: //====================================================================== // If continueous scroll is on, ovveride autoplay settings jQuery(document).ready(function () { /** * Fixed Transition */ jQuery(".pac_dcm_column_1 .slick-slide").css({ 'transition': "all 500ms ease-in-out", 'animation-duration': "500ms", 'animation-iteration-count': "1" }) /** * Fixed Smooth Cont. Scroll */ ; jQuery(".pac_dcm_column_1 .slick-track").css({'transform': 'none'}); /** * Fixed Last To First Slide Bumping * * @since 1.3 * */ column.on('beforeChange', function (event, slick, currentSlide, nextSlide) { if (0 === nextSlide) { let slideClasses = 'slick-current slick-active' + (slickSettings.centerMode ? ' slick-center' : ''); setTimeout(function () { $('[data-slick-index="' + slick.$slides.length + '"]').addClass(slideClasses).siblings().removeClass(slideClasses); for (let i = slick.options.slidesToShow - 1; i >= 0; i--) { if (i !== 0) { $('[data-slick-index="' + i + '"]').addClass('slick-current slick-active'); } else { $('[data-slick-index="' + i + '"]').addClass(slideClasses); } } }, 0); } }); }); } /** * Closes open toggle items in a slick slider column before slide change on phones with limited items. */ const itemsOnPhone = "2"; if (column.find('.et_pb_toggle_item').length > 0) { // BeforeChange column.on('beforeChange', function (event, slick, currentSlide, nextSlide) { slick.$slides.each(function (index, slide) { if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) { $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); $(slide).find('.et_pb_toggle_content').hide(); } }); // Prevent Slider To Move $('.slick-slide').find('.et_pb_toggle_item').on('click', function (e) { if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) { $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); $(slide).find('.et_pb_toggle_content').hide(); } column.slick('slickGoTo', $('.slick-slide.active.slick-current.slick-active').data('slick-index')) }); }); } }); /** * Initializes the carousel module modification script. * This script adjusts the display property of carousel modules based on their computed styles. */ document.addEventListener('DOMContentLoaded', () => { setTimeout(() => { const carouselBaseClass = 'pac_dcm_column_'; const modules = document.querySelectorAll(`div[class*="${carouselBaseClass}"] .et_pb_module`); modules.forEach(module => { const styles = window.getComputedStyle(module); if (styles.maxWidth !== 'none') { module.style.display = 'flex'; } }); }, 500); }); About Us We are based in the Bexleyheath area and provide both individual and corporate accounting and tax services. Get In Touch About Us May & Moy is a firm of Chartered Management Accountants that offers business solutions in accounting and taxation. Our approach to service delivery is unique and tailored specifically to your business needs. We listen and work in partnership with you to proffer and implement the best systems and tools for your business. You can trust us to support your business. What makes Us Your Perfect Partner Technology It has never been easier to keep your accounts up-to-date and view the status of your payments and tax liabilities instantly with our cloud software Communication We constantly update you so that you are up to date with what we are doing for your business. Essentially, we take the stress of numbers away Services We offer a range of services from accounting for VAT to completing your annual accounts. Not sure if we offer what you are looking for? Get in touch and we will answer your questions Small Business Friendly As a smaller firm we understand the specific needs of smaller companies, you will find that we dedicate more time and care and are more ‘reactive’ than larger firms Service Driven Profit is the key motive for many accountant firms, however for us as a local accountant, we are service driven. Gaining your trust and keeping you happy is our aim Reputation We never shy away from feedback and testimonials; in fact, we are proud to share them with you. We have built a great reputation with our clients, and you can see what they have to say by clicking here But Don’t Just Take Our Word For It! Get A Quote Name Company Name (optional) Email Address Phone Number Message SEND Registered Company No. 09924210 FollowFollowFollow Quick Links About UsFor IndividualsFor CompaniesContact Us Legal Privacy PolicyCookie PolicySitemap Contact M: 07535 313875E: contact@maynmoy.com Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD © May & Moy 2025 | All rights reserved Site by Robus Marketing {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Divi\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.Cookie SettingsAccept AllManage consent Close Privacy Overview This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience. Necessary Necessary Always Enabled Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. CookieDurationDescriptioncookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. Functional Functional Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. Performance Performance Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. Analytics Analytics Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. Advertisement Advertisement Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. Others Others Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. SAVE & ACCEPT (function() { var file = ["https:\/\/maynmoy.com\/wp-content\/et-cache\/11\/et-divi-dynamic-tb-21482-tb-21468-11-late.css"]; var handle = document.getElementById('divi-style-inline-inline-css'); var location = handle.parentNode; if (0===document.querySelectorAll('link[href="' + file + '"]').length) { var link = document.createElement('link'); link.rel = 'stylesheet'; link.id = 'et-dynamic-late-css'; link.href = file; location.insertBefore(link, handle.nextSibling); } })(); jQuery(function ($) { var carouselBaseClass = '.pac_dcm_column_'; var carouselObj = $('[class*=pac_dcm_carousel_]'); carouselObj.each(function (i, obj) { $(this).click(function () { carouselObj = $(this).attr("class").split(/\s+/); var allModules = null; var imageModule = null; for (let i = 0; i < carouselObj.length; i++) { let isAllModules = /^pac_dcm_carousel_(.+)/.exec(carouselObj[i]); if (isAllModules !== null) { allModules = isAllModules; } let isImageModule = /^et_pb_image_(.+)/.exec(carouselObj[i]); if (isImageModule !== null) { imageModule = isImageModule; } } if (allModules !== null && imageModule === null) { gotoSlide(allModules) } else { imageModule = imageModule[0]; let imgEle = $('.' + imageModule).find('img'); imgEle.bind('click', function () { gotoSlide(allModules) }); } }); }); function gotoSlide(elem) { let gotoClasses = elem[1].replace('goto_module_', '').split('_'); let carouselID = parseInt(gotoClasses[0]); let slideNumber = parseInt(gotoClasses[1]); if (slideNumber > 0) { $(carouselBaseClass + carouselID).slick('slickGoTo', slideNumber - 1); } } }); /* <![CDATA[ */ var DIVI = {"item_count":"%d Item","items_count":"%d Items"}; var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_custom = {"ajaxurl":"https:\/\/maynmoy.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/images","builder_images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"1b1a78b12e","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"422399072d","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"11","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/frontend-builder\/assets\/vendors","accent_color":"#7EBEC5","waypoints_options":[]}; var et_pb_box_shadow_elements = []; /* ]]> */ /* <![CDATA[ */ var et_core_api_spam_recaptcha = {"site_key":"6Ldzpe0gAAAAAI6Ac-nGwqHWP52njs7SAOHTARyI","page_action":{"action":"about_us"}}; /* ]]> */ /* <![CDATA[ */ var et_pb_sticky_elements = {"et_pb_section_0_tb_header":{"id":"et_pb_section_0_tb_header","selector":".et_pb_section_0_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}},"et_pb_section_1_tb_header":{"id":"et_pb_section_1_tb_header","selector":".et_pb_section_1_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}}}; /* ]]> */ (function ($) { $(document).ready(function () { let $head = $("head"); let prevWidth = $('.pac_dcm_column_1 span.prev-label').width(); let nextWidth = $('.pac_dcm_column_1 span.next-label').width(); prevWidth = (parseInt(prevWidth || 0) + "px"); nextWidth = (parseInt(nextWidth || 0) + "px"); let jsDevices = []; for (let device in jsDevices) { let positionData = jsDevices[device]; let leftCSS = ""; let rightCSS = ""; let mediaQuery = "min-width: 981px"; let arrowsPositionsStyle = ''; if ('tablet' === device) { mediaQuery = "max-width: 980px"; } if ('phone' === device) { mediaQuery = "max-width: 767px"; } for (let x = 0; x < positionData.prev.length; x++) { leftCSS += positionData.prev[x].position + ":" + positionData.prev[x].style.replace("__prev_text_width__", prevWidth).replace("__next_text_width__", nextWidth) + ";"; } for (let x = 0; x < positionData.next.length; x++) { rightCSS += positionData.next[x].position + ":" + positionData.next[x].style.replace("__next_text_width__", nextWidth).replace("__prev_text_width__", prevWidth) + ";"; } arrowsPositionsStyle += '<style id="pac-dcm-' + device + '-arrows-positions">'; arrowsPositionsStyle += '@media (' + mediaQuery + ') {.pac_dcm_column_1 .slick-prev.slick-arrow {' + leftCSS + '}}' arrowsPositionsStyle += '@media (' + mediaQuery + ') {.pac_dcm_column_1 .slick-next.slick-arrow {' + rightCSS + '}}' arrowsPositionsStyle += '</style>'; $head.append(arrowsPositionsStyle); } }); }(jQuery));
http://maynmoy.com/contact
Status: 200
Emails: contact@maynmoy.com
View text
07535 313875 Home About Us For Individuals For Companies Contact Us 07535 313875 Home About Us For Individuals For Companies Contact Us Contact Us Our quality accountancy services are just a phone call away. Get In Touch z Phone M: 07535 313875 EMAIL contact@maynmoy.com OPENING HOURS Mon-Fri: 8am – 5pmWeekend: Closed Address Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD Contact May & Moy Accountants Name Company Name (optional) Email Address Phone Number Message SEND Registered Company No. 09924210 FollowFollowFollow Quick Links About UsFor IndividualsFor CompaniesContact Us Legal Privacy PolicyCookie PolicySitemap Contact M: 07535 313875E: contact@maynmoy.com Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD © May & Moy 2025 | All rights reserved Site by Robus Marketing {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Divi\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.Cookie SettingsAccept AllManage consent Close Privacy Overview This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience. Necessary Necessary Always Enabled Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. CookieDurationDescriptioncookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. Functional Functional Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. Performance Performance Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. Analytics Analytics Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. Advertisement Advertisement Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. Others Others Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. SAVE & ACCEPT /* <![CDATA[ */ var DIVI = {"item_count":"%d Item","items_count":"%d Items"}; var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_custom = {"ajaxurl":"https:\/\/maynmoy.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/images","builder_images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"1b1a78b12e","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"422399072d","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"18","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/frontend-builder\/assets\/vendors","accent_color":"#7EBEC5","waypoints_options":[]}; var et_pb_box_shadow_elements = []; /* ]]> */ /* <![CDATA[ */ var et_core_api_spam_recaptcha = {"site_key":"6Ldzpe0gAAAAAI6Ac-nGwqHWP52njs7SAOHTARyI","page_action":{"action":"contact_us"}}; /* ]]> */ /* <![CDATA[ */ var et_pb_sticky_elements = {"et_pb_section_0_tb_header":{"id":"et_pb_section_0_tb_header","selector":".et_pb_section_0_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}},"et_pb_section_1_tb_header":{"id":"et_pb_section_1_tb_header","selector":".et_pb_section_1_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}}}; /* ]]> */
https://maynmoy.com/contact-us
Status: 200
Emails: contact@maynmoy.com
View text
07535 313875 Home About Us For Individuals For Companies Contact Us 07535 313875 Home About Us For Individuals For Companies Contact Us Contact Us Our quality accountancy services are just a phone call away. Get In Touch z Phone M: 07535 313875 EMAIL contact@maynmoy.com OPENING HOURS Mon-Fri: 8am – 5pmWeekend: Closed Address Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD Contact May & Moy Accountants Name Company Name (optional) Email Address Phone Number Message SEND Registered Company No. 09924210 FollowFollowFollow Quick Links About UsFor IndividualsFor CompaniesContact Us Legal Privacy PolicyCookie PolicySitemap Contact M: 07535 313875E: contact@maynmoy.com Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD © May & Moy 2025 | All rights reserved Site by Robus Marketing {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Divi\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.Cookie SettingsAccept AllManage consent Close Privacy Overview This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience. Necessary Necessary Always Enabled Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. CookieDurationDescriptioncookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. Functional Functional Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. Performance Performance Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. Analytics Analytics Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. Advertisement Advertisement Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. Others Others Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. SAVE & ACCEPT /* <![CDATA[ */ var DIVI = {"item_count":"%d Item","items_count":"%d Items"}; var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_custom = {"ajaxurl":"https:\/\/maynmoy.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/images","builder_images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"1b1a78b12e","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"422399072d","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"18","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/frontend-builder\/assets\/vendors","accent_color":"#7EBEC5","waypoints_options":[]}; var et_pb_box_shadow_elements = []; /* ]]> */ /* <![CDATA[ */ var et_core_api_spam_recaptcha = {"site_key":"6Ldzpe0gAAAAAI6Ac-nGwqHWP52njs7SAOHTARyI","page_action":{"action":"contact_us"}}; /* ]]> */ /* <![CDATA[ */ var et_pb_sticky_elements = {"et_pb_section_0_tb_header":{"id":"et_pb_section_0_tb_header","selector":".et_pb_section_0_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}},"et_pb_section_1_tb_header":{"id":"et_pb_section_1_tb_header","selector":".et_pb_section_1_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}}}; /* ]]> */
https://maynmoy.com/about-us
Status: 200
Emails: contact@maynmoy.com
View text
07535 313875 Home About Us For Individuals For Companies Contact Us 07535 313875 Home About Us For Individuals For Companies Contact Us // Initialize Carousel jQuery(function ($) { if ((jQuery(window).width() < 0)|| (jQuery(window).width() <= 480)|| (jQuery(window).width() >= 480 && jQuery(window).width() <= 980)|| (jQuery(window).width() >= 980)) { // Define media queries for different device sizes const columnClass = ".pac_dcm_column_1"; column = $(columnClass); column.navigationImages = []; slickSettings = { fade: false, centerMode: true, infinite: true, slidesToShow: 5, variableWidth: false, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, rtl: false, speed: 500, pauseOnHover: false, useCSS: true, useTransform: true, cssEase: 'ease', waitForAnimate: true, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false, responsive: [ { breakpoint: 980, settings: { fade: false, centerMode: true, variableWidth: false, infinite: true, slidesToShow: 3, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, pauseOnHover: false, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false } }, { breakpoint: 767, settings: { fade: false, centerMode: false, infinite: true, variableWidth: false, slidesToShow: 2, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, pauseOnHover: false, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false } } ] }; //====================================================================== // Carousel Navigation Images //====================================================================== column.navigationImages = jQuery(columnClass).data("slick-navigation-images"); if ('undefined' === typeof column.navigationImages) { column.navigationImages = []; } // Total Items Per Row const numberOfItemsPerRow = parseInt('5'); //====================================================================== // Slick On Init //====================================================================== column.on('init', function (event, slick, currentSlide, nextSlide) { let overlayLoading = column.prev('.loading__overlay'); if (overlayLoading.length > 0) { overlayLoading.fadeOut('slow'); column.fadeIn('slow'); } window.carouselCurrentSlide = slick.currentSlide; window.carouselTotalSlides = slick.slideCount; $(columnClass + ' .slick-current').addClass('active'); $(columnClass + ' .slick-current').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').addClass('previousSlide'); if (numberOfItemsPerRow === 3) { $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide'); $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass("prePreviousSlide"); } else if (5 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (7 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (9 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (11 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } }); //====================================================================== // Initliaze Slick //====================================================================== column.slick(slickSettings); //====================================================================== // Slick Slider Counter //====================================================================== //====================================================================== // Slick Before Change //====================================================================== column.on('beforeChange', function (event, {slideCount: count}, currentSlide, nextSlide) { let dataSlideIndex = [nextSlide, nextSlide - count, nextSlide + count].map((n) => columnClass + ` [data-slick-index="${n}"]`).join(", "); $(columnClass + ' .slick-slide') .removeClass('active') .removeClass('nextSlide') .removeClass('preNextSlide') .removeClass('previousSlide') .removeClass('prePreviousSlide'); $(dataSlideIndex).addClass('active'); $(columnClass + ' .slick-slide.active').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').addClass('previousSlide'); if (numberOfItemsPerRow === 3) { $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide'); $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass('prePreviousSlide'); } else if (5 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (7 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (9 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (11 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } }); //====================================================================== // Slick After Change //====================================================================== column.on('afterChange', function (event, slick, currentSlide) { }); //====================================================================== // Keyboard Navigation //====================================================================== //====================================================================== // RecalculateWidth: //====================================================================== // If continueous scroll is on, ovveride autoplay settings jQuery(document).ready(function () { /** * Fixed Transition */ jQuery(".pac_dcm_column_1 .slick-slide").css({ 'transition': "all 500ms ease-in-out", 'animation-duration': "500ms", 'animation-iteration-count': "1" }) /** * Fixed Smooth Cont. Scroll */ ; jQuery(".pac_dcm_column_1 .slick-track").css({'transform': 'none'}); /** * Fixed Last To First Slide Bumping * * @since 1.3 * */ column.on('beforeChange', function (event, slick, currentSlide, nextSlide) { if (0 === nextSlide) { let slideClasses = 'slick-current slick-active' + (slickSettings.centerMode ? ' slick-center' : ''); setTimeout(function () { $('[data-slick-index="' + slick.$slides.length + '"]').addClass(slideClasses).siblings().removeClass(slideClasses); for (let i = slick.options.slidesToShow - 1; i >= 0; i--) { if (i !== 0) { $('[data-slick-index="' + i + '"]').addClass('slick-current slick-active'); } else { $('[data-slick-index="' + i + '"]').addClass(slideClasses); } } }, 0); } }); }); } /** * Closes open toggle items in a slick slider column before slide change on phones with limited items. */ const itemsOnPhone = "2"; if (column.find('.et_pb_toggle_item').length > 0) { // BeforeChange column.on('beforeChange', function (event, slick, currentSlide, nextSlide) { slick.$slides.each(function (index, slide) { if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) { $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); $(slide).find('.et_pb_toggle_content').hide(); } }); // Prevent Slider To Move $('.slick-slide').find('.et_pb_toggle_item').on('click', function (e) { if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) { $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); $(slide).find('.et_pb_toggle_content').hide(); } column.slick('slickGoTo', $('.slick-slide.active.slick-current.slick-active').data('slick-index')) }); }); } }); /** * Initializes the carousel module modification script. * This script adjusts the display property of carousel modules based on their computed styles. */ document.addEventListener('DOMContentLoaded', () => { setTimeout(() => { const carouselBaseClass = 'pac_dcm_column_'; const modules = document.querySelectorAll(`div[class*="${carouselBaseClass}"] .et_pb_module`); modules.forEach(module => { const styles = window.getComputedStyle(module); if (styles.maxWidth !== 'none') { module.style.display = 'flex'; } }); }, 500); }); About Us We are based in the Bexleyheath area and provide both individual and corporate accounting and tax services. Get In Touch About Us May & Moy is a firm of Chartered Management Accountants that offers business solutions in accounting and taxation. Our approach to service delivery is unique and tailored specifically to your business needs. We listen and work in partnership with you to proffer and implement the best systems and tools for your business. You can trust us to support your business. What makes Us Your Perfect Partner Technology It has never been easier to keep your accounts up-to-date and view the status of your payments and tax liabilities instantly with our cloud software Communication We constantly update you so that you are up to date with what we are doing for your business. Essentially, we take the stress of numbers away Services We offer a range of services from accounting for VAT to completing your annual accounts. Not sure if we offer what you are looking for? Get in touch and we will answer your questions Small Business Friendly As a smaller firm we understand the specific needs of smaller companies, you will find that we dedicate more time and care and are more ‘reactive’ than larger firms Service Driven Profit is the key motive for many accountant firms, however for us as a local accountant, we are service driven. Gaining your trust and keeping you happy is our aim Reputation We never shy away from feedback and testimonials; in fact, we are proud to share them with you. We have built a great reputation with our clients, and you can see what they have to say by clicking here But Don’t Just Take Our Word For It! Get A Quote Name Company Name (optional) Email Address Phone Number Message SEND Registered Company No. 09924210 FollowFollowFollow Quick Links About UsFor IndividualsFor CompaniesContact Us Legal Privacy PolicyCookie PolicySitemap Contact M: 07535 313875E: contact@maynmoy.com Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD © May & Moy 2025 | All rights reserved Site by Robus Marketing {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Divi\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.Cookie SettingsAccept AllManage consent Close Privacy Overview This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience. Necessary Necessary Always Enabled Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. CookieDurationDescriptioncookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. Functional Functional Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. Performance Performance Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. Analytics Analytics Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. Advertisement Advertisement Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. Others Others Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. SAVE & ACCEPT (function() { var file = ["https:\/\/maynmoy.com\/wp-content\/et-cache\/11\/et-divi-dynamic-tb-21482-tb-21468-11-late.css"]; var handle = document.getElementById('divi-style-inline-inline-css'); var location = handle.parentNode; if (0===document.querySelectorAll('link[href="' + file + '"]').length) { var link = document.createElement('link'); link.rel = 'stylesheet'; link.id = 'et-dynamic-late-css'; link.href = file; location.insertBefore(link, handle.nextSibling); } })(); jQuery(function ($) { var carouselBaseClass = '.pac_dcm_column_'; var carouselObj = $('[class*=pac_dcm_carousel_]'); carouselObj.each(function (i, obj) { $(this).click(function () { carouselObj = $(this).attr("class").split(/\s+/); var allModules = null; var imageModule = null; for (let i = 0; i < carouselObj.length; i++) { let isAllModules = /^pac_dcm_carousel_(.+)/.exec(carouselObj[i]); if (isAllModules !== null) { allModules = isAllModules; } let isImageModule = /^et_pb_image_(.+)/.exec(carouselObj[i]); if (isImageModule !== null) { imageModule = isImageModule; } } if (allModules !== null && imageModule === null) { gotoSlide(allModules) } else { imageModule = imageModule[0]; let imgEle = $('.' + imageModule).find('img'); imgEle.bind('click', function () { gotoSlide(allModules) }); } }); }); function gotoSlide(elem) { let gotoClasses = elem[1].replace('goto_module_', '').split('_'); let carouselID = parseInt(gotoClasses[0]); let slideNumber = parseInt(gotoClasses[1]); if (slideNumber > 0) { $(carouselBaseClass + carouselID).slick('slickGoTo', slideNumber - 1); } } }); /* <![CDATA[ */ var DIVI = {"item_count":"%d Item","items_count":"%d Items"}; var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_custom = {"ajaxurl":"https:\/\/maynmoy.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/images","builder_images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"1b1a78b12e","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"422399072d","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"11","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/frontend-builder\/assets\/vendors","accent_color":"#7EBEC5","waypoints_options":[]}; var et_pb_box_shadow_elements = []; /* ]]> */ /* <![CDATA[ */ var et_core_api_spam_recaptcha = {"site_key":"6Ldzpe0gAAAAAI6Ac-nGwqHWP52njs7SAOHTARyI","page_action":{"action":"about_us"}}; /* ]]> */ /* <![CDATA[ */ var et_pb_sticky_elements = {"et_pb_section_0_tb_header":{"id":"et_pb_section_0_tb_header","selector":".et_pb_section_0_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}},"et_pb_section_1_tb_header":{"id":"et_pb_section_1_tb_header","selector":".et_pb_section_1_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}}}; /* ]]> */ (function ($) { $(document).ready(function () { let $head = $("head"); let prevWidth = $('.pac_dcm_column_1 span.prev-label').width(); let nextWidth = $('.pac_dcm_column_1 span.next-label').width(); prevWidth = (parseInt(prevWidth || 0) + "px"); nextWidth = (parseInt(nextWidth || 0) + "px"); let jsDevices = []; for (let device in jsDevices) { let positionData = jsDevices[device]; let leftCSS = ""; let rightCSS = ""; let mediaQuery = "min-width: 981px"; let arrowsPositionsStyle = ''; if ('tablet' === device) { mediaQuery = "max-width: 980px"; } if ('phone' === device) { mediaQuery = "max-width: 767px"; } for (let x = 0; x < positionData.prev.length; x++) { leftCSS += positionData.prev[x].position + ":" + positionData.prev[x].style.replace("__prev_text_width__", prevWidth).replace("__next_text_width__", nextWidth) + ";"; } for (let x = 0; x < positionData.next.length; x++) { rightCSS += positionData.next[x].position + ":" + positionData.next[x].style.replace("__next_text_width__", nextWidth).replace("__prev_text_width__", prevWidth) + ";"; } arrowsPositionsStyle += '<style id="pac-dcm-' + device + '-arrows-positions">'; arrowsPositionsStyle += '@media (' + mediaQuery + ') {.pac_dcm_column_1 .slick-prev.slick-arrow {' + leftCSS + '}}' arrowsPositionsStyle += '@media (' + mediaQuery + ') {.pac_dcm_column_1 .slick-next.slick-arrow {' + rightCSS + '}}' arrowsPositionsStyle += '</style>'; $head.append(arrowsPositionsStyle); } }); }(jQuery));
http://maynmoy.com/
Status: 200
Emails: contact@maynmoy.com
View text
07535 313875 Home About Us For Individuals For Companies Contact Us 07535 313875 Home About Us For Individuals For Companies Contact Us // Initialize Carousel jQuery(function ($) { if ((jQuery(window).width() < 0)|| (jQuery(window).width() <= 480)|| (jQuery(window).width() >= 480 && jQuery(window).width() <= 980)|| (jQuery(window).width() >= 980)) { // Define media queries for different device sizes const columnClass = ".pac_dcm_column_1"; column = $(columnClass); column.navigationImages = []; slickSettings = { fade: false, centerMode: true, infinite: true, slidesToShow: 5, variableWidth: false, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, rtl: false, speed: 500, pauseOnHover: false, useCSS: true, useTransform: true, cssEase: 'ease', waitForAnimate: true, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false, responsive: [ { breakpoint: 980, settings: { fade: false, centerMode: true, variableWidth: false, infinite: true, slidesToShow: 3, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, pauseOnHover: false, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false } }, { breakpoint: 767, settings: { fade: false, centerMode: false, infinite: true, variableWidth: false, slidesToShow: 2, slidesToScroll: 1, autoplay: true, autoplaySpeed: 3000, arrows: false, dots: false, pauseOnHover: false, swipe: true, touch: true, swipeToSlide: true, rows: 1, touchThreshold: 500, initialSlide: 0, adaptiveHeight: false } } ] }; //====================================================================== // Carousel Navigation Images //====================================================================== column.navigationImages = jQuery(columnClass).data("slick-navigation-images"); if ('undefined' === typeof column.navigationImages) { column.navigationImages = []; } // Total Items Per Row const numberOfItemsPerRow = parseInt('5'); //====================================================================== // Slick On Init //====================================================================== column.on('init', function (event, slick, currentSlide, nextSlide) { let overlayLoading = column.prev('.loading__overlay'); if (overlayLoading.length > 0) { overlayLoading.fadeOut('slow'); column.fadeIn('slow'); } window.carouselCurrentSlide = slick.currentSlide; window.carouselTotalSlides = slick.slideCount; $(columnClass + ' .slick-current').addClass('active'); $(columnClass + ' .slick-current').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').addClass('previousSlide'); if (numberOfItemsPerRow === 3) { $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide'); $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass("prePreviousSlide"); } else if (5 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (7 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (9 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (11 === numberOfItemsPerRow) { $(columnClass + ' .slick-current').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-current').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } }); //====================================================================== // Initliaze Slick //====================================================================== column.slick(slickSettings); //====================================================================== // Slick Slider Counter //====================================================================== //====================================================================== // Slick Before Change //====================================================================== column.on('beforeChange', function (event, {slideCount: count}, currentSlide, nextSlide) { let dataSlideIndex = [nextSlide, nextSlide - count, nextSlide + count].map((n) => columnClass + ` [data-slick-index="${n}"]`).join(", "); $(columnClass + ' .slick-slide') .removeClass('active') .removeClass('nextSlide') .removeClass('preNextSlide') .removeClass('previousSlide') .removeClass('prePreviousSlide'); $(dataSlideIndex).addClass('active'); $(columnClass + ' .slick-slide.active').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').addClass('previousSlide'); if (numberOfItemsPerRow === 3) { $(columnClass + ' .slick-slide.nextSlide').next('.slick-slide').addClass('preNextSlide'); $(columnClass + ' .slick-slide.previousSlide').prev('.slick-slide').addClass('prePreviousSlide'); } else if (5 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (7 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (9 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } else if (11 === numberOfItemsPerRow) { $(columnClass + ' .slick-slide.active').next('.slick-slide').next('.slick-slide').next('.slick-slide').addClass('nextSlide'); $(columnClass + ' .slick-slide.active').prev('.slick-slide').prev('.slick-slide').prev('.slick-slide').addClass('previousSlide'); } }); //====================================================================== // Slick After Change //====================================================================== column.on('afterChange', function (event, slick, currentSlide) { }); //====================================================================== // Keyboard Navigation //====================================================================== //====================================================================== // RecalculateWidth: //====================================================================== // If continueous scroll is on, ovveride autoplay settings jQuery(document).ready(function () { /** * Fixed Transition */ jQuery(".pac_dcm_column_1 .slick-slide").css({ 'transition': "all 500ms ease-in-out", 'animation-duration': "500ms", 'animation-iteration-count': "1" }) /** * Fixed Smooth Cont. Scroll */ ; jQuery(".pac_dcm_column_1 .slick-track").css({'transform': 'none'}); /** * Fixed Last To First Slide Bumping * * @since 1.3 * */ column.on('beforeChange', function (event, slick, currentSlide, nextSlide) { if (0 === nextSlide) { let slideClasses = 'slick-current slick-active' + (slickSettings.centerMode ? ' slick-center' : ''); setTimeout(function () { $('[data-slick-index="' + slick.$slides.length + '"]').addClass(slideClasses).siblings().removeClass(slideClasses); for (let i = slick.options.slidesToShow - 1; i >= 0; i--) { if (i !== 0) { $('[data-slick-index="' + i + '"]').addClass('slick-current slick-active'); } else { $('[data-slick-index="' + i + '"]').addClass(slideClasses); } } }, 0); } }); }); } /** * Closes open toggle items in a slick slider column before slide change on phones with limited items. */ const itemsOnPhone = "2"; if (column.find('.et_pb_toggle_item').length > 0) { // BeforeChange column.on('beforeChange', function (event, slick, currentSlide, nextSlide) { slick.$slides.each(function (index, slide) { if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) { $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); $(slide).find('.et_pb_toggle_content').hide(); } }); // Prevent Slider To Move $('.slick-slide').find('.et_pb_toggle_item').on('click', function (e) { if ($(slide).find('.et_pb_toggle_item').hasClass('et_pb_toggle_open')) { $(slide).find('.et_pb_toggle_item.et_pb_toggle_open').removeClass('et_pb_toggle_open').addClass('et_pb_toggle_close'); $(slide).find('.et_pb_toggle_content').hide(); } column.slick('slickGoTo', $('.slick-slide.active.slick-current.slick-active').data('slick-index')) }); }); } }); /** * Initializes the carousel module modification script. * This script adjusts the display property of carousel modules based on their computed styles. */ document.addEventListener('DOMContentLoaded', () => { setTimeout(() => { const carouselBaseClass = 'pac_dcm_column_'; const modules = document.querySelectorAll(`div[class*="${carouselBaseClass}"] .et_pb_module`); modules.forEach(module => { const styles = window.getComputedStyle(module); if (styles.maxWidth !== 'none') { module.style.display = 'flex'; } }); }, 500); }); The Bexleyheath Accounting Partners You Can Trust All your accountancy needs met by a forward-thinking accountancy firm. Get In Touch About Us We are an established and proactive firm of Chartered Management Accountants based in Bexleyheath with over twenty years of experience advising corporate, personal and not-for-profit clients on tax issues. We take a great deal of pride in providing a personal, advisory service to our clients, ensuring that we implement the best systems and tools for your business. We're Qualified & Experienced Confidentiality Being confidential about your information is the first and foremost quality that we practice. All information collected during the time that we work together will never be disclosed unless the client grants us permission to do so. Integrity We are professional accountants that comply with the principle of integrity, which requires us to be straightforward and honest in all professional and business relationships. We honour our duties according to the values, ethics and principles they are responsible to maintain Objectivity As Chartered Management Accountants, we don’t only take pride in but are obligated to be unbiased, completely honest as well as free of a conflict of interest. This means that accounting information must be based on research and facts, not merely an opinion. Ethical We never accept work that is against our values and ethics. Upholding integrity requires that May and Moy do not associate with information that is suspected to be materially false or misleading — or information that misleads by omission. Knowledgeable & Adaptable As Professional Accountant Technicians, we understand and validate the accounting standards for basic accounts preparation and the drafting of financial statements. We stay up to date on changing guidelines, new tech tools, and keep up with any changes that may affect our clients. Services For Individuals Employment Income Self-employment Buy-to-let Dividends Capital Gains Foreign Income Services For Companies Financial Planning Management Accounts Cashflow forecasts Bookkeeping Annual Accounts Payroll, PAYE & VAT Starling Bank Partnership We are pleased to announce a new partnership between Starling Bank and May and Moy Chartered Management Accountants. Starling Bank is considered UK’s first mobile bank that offers super-fast setup, simple money management and 24/7 support with no monthly fees. Whether with big or small businesses, the Starling business account is designed to make your business life a little easier. With this partnership, May and Moy clients who opened a business account with Starling through this platform will enjoy support for their businesses from Starling Bank. Such support includes integrating with Xero, QuickBooks and Free Agent, stay in the know with real time payment alerts, and categorised transactions for spending insights. To benefit from this partnership, please click on the button below and follow the prompts. Start Application Registered Company No. 09924210 FollowFollowFollow Quick Links About UsFor IndividualsFor CompaniesContact Us Legal Privacy PolicyCookie PolicySitemap Contact M: 07535 313875E: contact@maynmoy.com Regus House, Admirals Park, Victory Way, Dartford, DA2 6QD © May & Moy 2025 | All rights reserved Site by Robus Marketing {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Divi\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.Cookie SettingsAccept AllManage consent Close Privacy Overview This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience. Necessary Necessary Always Enabled Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. CookieDurationDescriptioncookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. Functional Functional Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features. Performance Performance Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors. Analytics Analytics Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc. Advertisement Advertisement Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads. Others Others Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet. SAVE & ACCEPT var et_animation_data = [{"class":"et_pb_image_0","style":"zoom","repeat":"once","duration":"1100ms","delay":"250ms","intensity":"50%","starting_opacity":"0%","speed_curve":"ease-in-out"},{"class":"et_pb_image_1","style":"zoom","repeat":"once","duration":"1100ms","delay":"250ms","intensity":"50%","starting_opacity":"0%","speed_curve":"ease-in-out"},{"class":"et_pb_image_2","style":"zoom","repeat":"once","duration":"1100ms","delay":"250ms","intensity":"50%","starting_opacity":"0%","speed_curve":"ease-in-out"},{"class":"et_pb_image_3","style":"zoom","repeat":"once","duration":"1100ms","delay":"250ms","intensity":"50%","starting_opacity":"0%","speed_curve":"ease-in-out"},{"class":"et_pb_image_4","style":"zoom","repeat":"once","duration":"1100ms","delay":"250ms","intensity":"50%","starting_opacity":"0%","speed_curve":"ease-in-out"}]; jQuery(function ($) { var carouselBaseClass = '.pac_dcm_column_'; var carouselObj = $('[class*=pac_dcm_carousel_]'); carouselObj.each(function (i, obj) { $(this).click(function () { carouselObj = $(this).attr("class").split(/\s+/); var allModules = null; var imageModule = null; for (let i = 0; i < carouselObj.length; i++) { let isAllModules = /^pac_dcm_carousel_(.+)/.exec(carouselObj[i]); if (isAllModules !== null) { allModules = isAllModules; } let isImageModule = /^et_pb_image_(.+)/.exec(carouselObj[i]); if (isImageModule !== null) { imageModule = isImageModule; } } if (allModules !== null && imageModule === null) { gotoSlide(allModules) } else { imageModule = imageModule[0]; let imgEle = $('.' + imageModule).find('img'); imgEle.bind('click', function () { gotoSlide(allModules) }); } }); }); function gotoSlide(elem) { let gotoClasses = elem[1].replace('goto_module_', '').split('_'); let carouselID = parseInt(gotoClasses[0]); let slideNumber = parseInt(gotoClasses[1]); if (slideNumber > 0) { $(carouselBaseClass + carouselID).slick('slickGoTo', slideNumber - 1); } } }); /* <![CDATA[ */ var DIVI = {"item_count":"%d Item","items_count":"%d Items"}; var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"}; var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"}; var et_pb_custom = {"ajaxurl":"https:\/\/maynmoy.com\/wp-admin\/admin-ajax.php","images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/images","builder_images_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"1b1a78b12e","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"422399072d","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","wrong_checkbox":"Checkbox","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"8","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https:\/\/maynmoy.com\/wp-content\/themes\/Divi\/includes\/builder\/frontend-builder\/assets\/vendors","accent_color":"#7EBEC5","waypoints_options":[]}; var et_pb_box_shadow_elements = []; /* ]]> */ /* <![CDATA[ */ var et_pb_sticky_elements = {"et_pb_section_0_tb_header":{"id":"et_pb_section_0_tb_header","selector":".et_pb_section_0_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}},"et_pb_section_1_tb_header":{"id":"et_pb_section_1_tb_header","selector":".et_pb_section_1_tb_header","position":"top","topOffset":"0px","bottomOffset":"0px","topLimit":"none","bottomLimit":"none","offsetSurrounding":"on","transition":"on","styles":{"module_alignment":{"desktop":"","tablet":"","phone":""},"positioning":"relative"},"stickyStyles":{"position_origin_r":"top_left","horizontal_offset":"","vertical_offset":""}}}; /* ]]> */ (function ($) { $(document).ready(function () { let $head = $("head"); let prevWidth = $('.pac_dcm_column_1 span.prev-label').width(); let nextWidth = $('.pac_dcm_column_1 span.next-label').width(); prevWidth = (parseInt(prevWidth || 0) + "px"); nextWidth = (parseInt(nextWidth || 0) + "px"); let jsDevices = []; for (let device in jsDevices) { let positionData = jsDevices[device]; let leftCSS = ""; let rightCSS = ""; let mediaQuery = "min-width: 981px"; let arrowsPositionsStyle = ''; if ('tablet' === device) { mediaQuery = "max-width: 980px"; } if ('phone' === device) { mediaQuery = "max-width: 767px"; } for (let x = 0; x < positionData.prev.length; x++) { leftCSS += positionData.prev[x].position + ":" + positionData.prev[x].style.replace("__prev_text_width__", prevWidth).replace("__next_text_width__", nextWidth) + ";"; } for (let x = 0; x < positionData.next.length; x++) { rightCSS += positionData.next[x].position + ":" + positionData.next[x].style.replace("__next_text_width__", nextWidth).replace("__prev_text_width__", prevWidth) + ";"; } arrowsPositionsStyle += '<style id="pac-dcm-' + device + '-arrows-positions">'; arrowsPositionsStyle += '@media (' + mediaQuery + ') {.pac_dcm_column_1 .slick-prev.slick-arrow {' + leftCSS + '}}' arrowsPositionsStyle += '@media (' + mediaQuery + ') {.pac_dcm_column_1 .slick-next.slick-arrow {' + rightCSS + '}}' arrowsPositionsStyle += '</style>'; $head.append(arrowsPositionsStyle); } }); }(jQuery));