<!doctype html>
<html lang="en-US">
<head>
	<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="http://gmpg.org/xfn/11">
	<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
	<script id="rogiq-consent-mode">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {"ad_storage":"denied","ad_user_data":"denied","ad_personalization":"denied","analytics_storage":"denied","functionality_storage":"denied","personalization_storage":"denied","security_storage":"granted","wait_for_update":500});
</script>
        <meta name='robots' content='noindex, follow' />
      <script type='text/javascript'>
        var wpdk_i18n = {"ajaxURL":"https:\/\/www.doherty.com\/wp-admin\/admin-ajax.php","messageUnLockField":"Please confirm before unlock this form field.\nDo you want unlock this form field?","timeOnlyTitle":"Choose Time","timeText":"Time","hourText":"Hour","minuteText":"Minute","secondText":"Seconds","currentText":"Now","dayNamesMin":"Su,Mo,Tu,We,Th,Fr,Sa","monthNames":"January,February,March,April,May,June,July,August,September,October,November,December","monthNamesShort":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","closeText":"Close","dateFormat":"d M yy","timeFormat":"HH:mm"};
      </script>
    <script id="rogiq-consent-blocker">
(function () {
    if (document.cookie.indexOf('rogiq_consent=accepted') !== -1) {
        return;
    }

    var patterns = ["googletagmanager.com","google-analytics.com","googleadservices.com","gtag\/js","analytics.js","facebook.net","connect.facebook.net","clarity.ms","hotjar.com","hubspot.com\/hs-scripts","hs-analytics","linkedin.com\/px","doubleclick.net","stats.g.doubleclick.net","api.rogiq.ai\/tracker.js","apiv2-staging.rogiq.ai\/tracker.js"];

    function matchesTracking(value) {
        if (!value) {
            return false;
        }
        var hay = String(value).toLowerCase();
        for (var i = 0; i < patterns.length; i++) {
            if (hay.indexOf(String(patterns[i]).toLowerCase()) !== -1) {
                return true;
            }
        }
        return false;
    }

    var queue = [];
    window.rogiqConsent = {
        granted: false,
        queue: queue,
        matchesTracking: matchesTracking,
        enqueue: function (entry) {
            queue.push(entry);
        },
        replay: function () {
            var i;
            for (i = 0; i < queue.length; i++) {
                var item = queue[i];
                var script = document.createElement('script');
                if (item.src) {
                    script.src = item.src;
                    if (item.async) {
                        script.async = true;
                    }
                } else if (item.content) {
                    script.text = item.content;
                }
                (document.head || document.documentElement).appendChild(script);
            }
            queue.length = 0;
        }
    };

    function isConsentInfrastructureScript(node) {
        if (!node || node.tagName !== 'SCRIPT') {
            return true;
        }
        var scriptType = (node.getAttribute('type') || '').toLowerCase();
        if (scriptType === 'application/json' || scriptType === 'application/ld+json') {
            return true;
        }
        var scriptId = node.id || '';
        if (scriptId === 'rogiq-consent-mode' ||
            scriptId === 'rogiq-consent-blocker' ||
            scriptId === 'rogiq-consent-config' ||
            scriptId === 'rogiq-consent-deferred-data' ||
            scriptId === 'rogiq-consent-ui' ||
            scriptId === 'rogiq-suppress-hmg-cookies') {
            return true;
        }
        return false;
    }

    function neutralizeScript(node) {
        if (!node || node.tagName !== 'SCRIPT') {
            return;
        }
        if (window.rogiqConsent && window.rogiqConsent.granted) {
            return;
        }
        if (isConsentInfrastructureScript(node)) {
            return;
        }
        if (node.type === 'text/plain' && node.getAttribute('data-rogiq-consent') === 'pending') {
            return;
        }

        var src = node.getAttribute('src') || '';
        var content = node.text || node.textContent || '';
        if (!matchesTracking(src) && !matchesTracking(content)) {
            return;
        }

        if (src) {
            queue.push({
                src: src,
                async: node.hasAttribute('async'),
                parent: node.parentNode || document.head
            });
        } else if (content) {
            queue.push({
                content: content,
                parent: node.parentNode || document.head
            });
        }

        node.type = 'text/plain';
        node.setAttribute('data-rogiq-consent', 'pending');
        if (src) {
            node.removeAttribute('src');
        }
        node.text = '';
    }

    var originalCreateElement = document.createElement.bind(document);
    document.createElement = function (tagName) {
        var el = originalCreateElement(tagName);
        if (String(tagName).toLowerCase() !== 'script') {
            return el;
        }

        var srcDescriptor = Object.getOwnPropertyDescriptor(HTMLScriptElement.prototype, 'src');
        if (!srcDescriptor || !srcDescriptor.set) {
            return el;
        }

        Object.defineProperty(el, 'src', {
            configurable: true,
            enumerable: true,
            get: function () {
                return el.getAttribute('src') || '';
            },
            set: function (value) {
                if (window.rogiqConsent && !window.rogiqConsent.granted && matchesTracking(value)) {
                    queue.push({ src: value, async: true, parent: document.head });
                    return;
                }
                srcDescriptor.set.call(el, value);
            }
        });

        return el;
    };

    function scanExistingScripts() {
        if (window.rogiqConsent && window.rogiqConsent.granted) {
            return;
        }
        var scripts = document.getElementsByTagName('script');
        var i;
        for (i = 0; i < scripts.length; i++) {
            if (isConsentInfrastructureScript(scripts[i])) {
                continue;
            }
            neutralizeScript(scripts[i]);
        }
    }

    scanExistingScripts();

    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', scanExistingScripts);
    }

    if (typeof MutationObserver !== 'undefined') {
        var observer = new MutationObserver(function (mutations) {
            if (window.rogiqConsent && window.rogiqConsent.granted) {
                return;
            }
            mutations.forEach(function (mutation) {
                mutation.addedNodes.forEach(function (node) {
                    if (node.nodeType !== 1) {
                        return;
                    }
                    if (node.tagName === 'SCRIPT') {
                        neutralizeScript(node);
                    } else if (node.querySelectorAll) {
                        node.querySelectorAll('script').forEach(neutralizeScript);
                    }
                });
            });
        });
        observer.observe(document.documentElement, { childList: true, subtree: true });
    }
})();
</script>
        
	<!-- This site is optimized with the Yoast SEO plugin v27.8 - https://yoast.com/product/yoast-seo-wordpress/ -->
	<title>Page not found - Doherty Staffing Solutions</title>
	<meta property="og:locale" content="en_US" />
	<meta property="og:title" content="Page not found - Doherty Staffing Solutions" />
	<meta property="og:site_name" content="Doherty Staffing Solutions" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/www.doherty.com\/#website","url":"https:\/\/www.doherty.com\/","name":"Doherty Staffing Solutions","description":"","publisher":{"@id":"https:\/\/www.doherty.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.doherty.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.doherty.com\/#organization","name":"Doherty Staffing Solutions","url":"https:\/\/www.doherty.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.doherty.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.doherty.com\/wp-content\/uploads\/2020\/03\/StaffingSolutions-DohertyLogo-300dpi-CMYK.png","contentUrl":"https:\/\/www.doherty.com\/wp-content\/uploads\/2020\/03\/StaffingSolutions-DohertyLogo-300dpi-CMYK.png","width":1200,"height":291,"caption":"Doherty Staffing Solutions"},"image":{"@id":"https:\/\/www.doherty.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DohertyStaffingSolutions","https:\/\/x.com\/dohertystaffing","https:\/\/www.linkedin.com\/company\/doherty-the-employment-experts","https:\/\/www.instagram.com\/dohertyjobs\/","https:\/\/www.tiktok.com\/@getajobwithdoherty","https:\/\/www.pinterest.com\/dohertystaffing\/","https:\/\/www.youtube.com\/c\/dohertyjobscareers"]}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//maps.googleapis.com' />
<link rel='dns-prefetch' href='//js.hs-scripts.com' />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />
<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' />
<link rel="alternate" type="application/rss+xml" title="Doherty Staffing Solutions &raquo; Feed" href="https://www.doherty.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Doherty Staffing Solutions &raquo; Comments Feed" href="https://www.doherty.com/comments/feed/" />

<!-- RogIQ: suppress Haley Marketing decorative cookie banner -->
<style id="rogiq-suppress-hmg-cookies">#band-cookies{display:none!important;visibility:hidden!important;height:0!important;max-height:0!important;overflow:hidden!important;pointer-events:none!important;opacity:0!important;}</style>
<script>
(function () {
    var selectors = ["#band-cookies"];
    function suppressHmgBanner() {
        var i, nodes, j;
        for (i = 0; i < selectors.length; i++) {
            try {
                nodes = document.querySelectorAll(selectors[i]);
            } catch (e) {
                continue;
            }
            for (j = 0; j < nodes.length; j++) {
                if (nodes[j] && nodes[j].parentNode) {
                    nodes[j].parentNode.removeChild(nodes[j]);
                }
            }
        }
    }
    suppressHmgBanner();
    document.documentElement.addEventListener('DOMContentLoaded', suppressHmgBanner);
    if (typeof MutationObserver !== 'undefined') {
        new MutationObserver(suppressHmgBanner).observe(document.documentElement, {
            childList: true,
            subtree: true
        });
    }
})();
</script>
        <script type="application/json" id="rogiq-consent-config">{"cookieName":"rogiq_consent","cookieValue":"accepted","deniedCookieValue":"denied","cookieDomain":".doherty.com","shareSubdomains":false,"autoShareSubdomains":true,"usesParentDomain":true,"suggestedDomain":".doherty.com","requestHost":"www.doherty.com","acceptEndpoint":"https:\/\/www.doherty.com\/wp-admin\/admin-ajax.php","acceptAction":"rogiq_accept_consent","acceptNonce":"6aa7691ae1","denyAction":"rogiq_deny_consent","denyNonce":"452a7beb4a","bannerMessage":"We use cookies to analyze site traffic and improve your experience. Click Accept All to allow analytics cookies.","policyUrl":"https:\/\/www.doherty.com\/privacy\/"}</script>
        
<!-- RogIQ Rybbit analytics -->
<script id="rogiq-rybbit-loader">
(function(){var el=document.createElement("script");el.src="https://app.rybbit.io/api/script.js";el.defer=true;el.setAttribute("data-site-id","10909");el.setAttribute("data-tag","hmg-fleet");el.setAttribute("data-skip-patterns","[&quot;/wp-admin/**&quot;,&quot;/wp-login.php&quot;]");(document.head||document.documentElement).appendChild(el);})();
</script>
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://www.doherty.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.9' media='all' />
<link rel='stylesheet' id='jet-menu-hello-css' href='https://www.doherty.com/wp-content/plugins/jet-menu/integration/themes/hello-elementor/assets/css/style.css?ver=2.4.17' media='all' />
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.doherty.com/wp-includes/css/dist/block-library/style.min.css?ver=7.0' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-icon svg){width: 24px;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */
</style>
<link rel='stylesheet' id='hmg_locations-css' href='https://www.doherty.com/wp-content/plugins/hmg-wptools-storelocator//includes/css/style.css?ver=7.0' media='all' />
<link rel='stylesheet' id='wpsl-styles-css' href='https://www.doherty.com/wp-content/plugins/wp-store-locator/css/styles.min.css?ver=2.3.2' media='all' />
<link rel='stylesheet' id='wp-rogiq-cookie-consent-css' href='https://www.doherty.com/wp-content/plugins/wp-rogiq-integration/assets/consent/consent.css?ver=1.2.148' media='all' />
<link rel='stylesheet' id='hello-elementor-child-style-css' href='https://www.doherty.com/wp-content/themes/hello-theme-child-master/style.css' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://www.doherty.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.9' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://www.doherty.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.9' media='all' />
<link rel='stylesheet' id='jet-menu-public-styles-css' href='https://www.doherty.com/wp-content/plugins/jet-menu/assets/public/css/public.css?ver=2.4.17' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.1.3' media='all' />
<style id="elementor-frontend-inline-css">
@-webkit-keyframes ha_fadeIn{0%{opacity:0}to{opacity:1}}@keyframes ha_fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes ha_zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes ha_zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes ha_rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1}}@keyframes ha_rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1}}@-webkit-keyframes ha_bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}40%,43%{-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1);-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}70%{-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05);-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0) scaleY(.95);transform:translate3d(0,0,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes ha_bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}40%,43%{-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1);-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}70%{-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05);-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}80%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0) scaleY(.95);transform:translate3d(0,0,0) scaleY(.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@-webkit-keyframes ha_bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1}}@keyframes ha_bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1}}@-webkit-keyframes ha_flipInX{0%{opacity:0;-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{opacity:1;-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg)}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}}@keyframes ha_flipInX{0%{opacity:0;-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{opacity:1;-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg)}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}}@-webkit-keyframes ha_flipInY{0%{opacity:0;-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{opacity:1;-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg)}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}}@keyframes ha_flipInY{0%{opacity:0;-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{opacity:1;-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg)}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}}@-webkit-keyframes ha_swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}}@keyframes ha_swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}}@-webkit-keyframes ha_slideInDown{0%{visibility:visible;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes ha_slideInDown{0%{visibility:visible;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes ha_slideInUp{0%{visibility:visible;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes ha_slideInUp{0%{visibility:visible;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes ha_slideInLeft{0%{visibility:visible;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes ha_slideInLeft{0%{visibility:visible;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes ha_slideInRight{0%{visibility:visible;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes ha_slideInRight{0%{visibility:visible;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.ha_fadeIn{-webkit-animation-name:ha_fadeIn;animation-name:ha_fadeIn}.ha_zoomIn{-webkit-animation-name:ha_zoomIn;animation-name:ha_zoomIn}.ha_rollIn{-webkit-animation-name:ha_rollIn;animation-name:ha_rollIn}.ha_bounce{-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-name:ha_bounce;animation-name:ha_bounce}.ha_bounceIn{-webkit-animation-name:ha_bounceIn;animation-name:ha_bounceIn;-webkit-animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*.75);animation-duration:.75s;animation-duration:calc(var(--animate-duration)*.75)}.ha_flipInX,.ha_flipInY{-webkit-animation-name:ha_flipInX;animation-name:ha_flipInX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.ha_flipInY{-webkit-animation-name:ha_flipInY;animation-name:ha_flipInY}.ha_swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:ha_swing;animation-name:ha_swing}.ha_slideInDown{-webkit-animation-name:ha_slideInDown;animation-name:ha_slideInDown}.ha_slideInUp{-webkit-animation-name:ha_slideInUp;animation-name:ha_slideInUp}.ha_slideInLeft{-webkit-animation-name:ha_slideInLeft;animation-name:ha_slideInLeft}.ha_slideInRight{-webkit-animation-name:ha_slideInRight;animation-name:ha_slideInRight}.ha-css-transform-yes{-webkit-transition-duration:var(--ha-tfx-transition-duration, .2s);transition-duration:var(--ha-tfx-transition-duration, .2s);-webkit-transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transform:translate(var(--ha-tfx-translate-x, 0),var(--ha-tfx-translate-y, 0)) scale(var(--ha-tfx-scale-x, 1),var(--ha-tfx-scale-y, 1)) skew(var(--ha-tfx-skew-x, 0),var(--ha-tfx-skew-y, 0)) rotateX(var(--ha-tfx-rotate-x, 0)) rotateY(var(--ha-tfx-rotate-y, 0)) rotateZ(var(--ha-tfx-rotate-z, 0));transform:translate(var(--ha-tfx-translate-x, 0),var(--ha-tfx-translate-y, 0)) scale(var(--ha-tfx-scale-x, 1),var(--ha-tfx-scale-y, 1)) skew(var(--ha-tfx-skew-x, 0),var(--ha-tfx-skew-y, 0)) rotateX(var(--ha-tfx-rotate-x, 0)) rotateY(var(--ha-tfx-rotate-y, 0)) rotateZ(var(--ha-tfx-rotate-z, 0))}.ha-css-transform-yes:hover{-webkit-transform:translate(var(--ha-tfx-translate-x-hover, var(--ha-tfx-translate-x, 0)),var(--ha-tfx-translate-y-hover, var(--ha-tfx-translate-y, 0))) scale(var(--ha-tfx-scale-x-hover, var(--ha-tfx-scale-x, 1)),var(--ha-tfx-scale-y-hover, var(--ha-tfx-scale-y, 1))) skew(var(--ha-tfx-skew-x-hover, var(--ha-tfx-skew-x, 0)),var(--ha-tfx-skew-y-hover, var(--ha-tfx-skew-y, 0))) rotateX(var(--ha-tfx-rotate-x-hover, var(--ha-tfx-rotate-x, 0))) rotateY(var(--ha-tfx-rotate-y-hover, var(--ha-tfx-rotate-y, 0))) rotateZ(var(--ha-tfx-rotate-z-hover, var(--ha-tfx-rotate-z, 0)));transform:translate(var(--ha-tfx-translate-x-hover, var(--ha-tfx-translate-x, 0)),var(--ha-tfx-translate-y-hover, var(--ha-tfx-translate-y, 0))) scale(var(--ha-tfx-scale-x-hover, var(--ha-tfx-scale-x, 1)),var(--ha-tfx-scale-y-hover, var(--ha-tfx-scale-y, 1))) skew(var(--ha-tfx-skew-x-hover, var(--ha-tfx-skew-x, 0)),var(--ha-tfx-skew-y-hover, var(--ha-tfx-skew-y, 0))) rotateX(var(--ha-tfx-rotate-x-hover, var(--ha-tfx-rotate-x, 0))) rotateY(var(--ha-tfx-rotate-y-hover, var(--ha-tfx-rotate-y, 0))) rotateZ(var(--ha-tfx-rotate-z-hover, var(--ha-tfx-rotate-z, 0)))}.happy-addon>.elementor-widget-container{word-wrap:break-word;overflow-wrap:break-word}.happy-addon>.elementor-widget-container,.happy-addon>.elementor-widget-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.happy-addon:not(:has(.elementor-widget-container)),.happy-addon:not(:has(.elementor-widget-container)) *{-webkit-box-sizing:border-box;box-sizing:border-box;word-wrap:break-word;overflow-wrap:break-word}.happy-addon p:empty{display:none}.happy-addon .elementor-inline-editing{min-height:auto!important}.happy-addon-pro img{max-width:100%;height:auto;-o-object-fit:cover;object-fit:cover}.ha-screen-reader-text{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);margin:-1px;padding:0;width:1px;height:1px;border:0;word-wrap:normal!important;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.ha-has-bg-overlay>.elementor-widget-container{position:relative;z-index:1}.ha-has-bg-overlay>.elementor-widget-container:before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;content:""}.ha-has-bg-overlay:not(:has(.elementor-widget-container)){position:relative;z-index:1}.ha-has-bg-overlay:not(:has(.elementor-widget-container)):before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;content:""}.ha-popup--is-enabled .ha-js-popup,.ha-popup--is-enabled .ha-js-popup img{cursor:-webkit-zoom-in!important;cursor:zoom-in!important}.mfp-wrap .mfp-arrow,.mfp-wrap .mfp-close{background-color:transparent}.mfp-wrap .mfp-arrow:focus,.mfp-wrap .mfp-close:focus{outline-width:thin}.ha-advanced-tooltip-enable{position:relative;cursor:pointer;--ha-tooltip-arrow-color:black;--ha-tooltip-arrow-distance:0}.ha-advanced-tooltip-enable .ha-advanced-tooltip-content{position:absolute;z-index:999;display:none;padding:5px 0;width:120px;height:auto;border-radius:6px;background-color:#000;color:#fff;text-align:center;opacity:0}.ha-advanced-tooltip-enable .ha-advanced-tooltip-content::after{position:absolute;border-width:5px;border-style:solid;content:""}.ha-advanced-tooltip-enable .ha-advanced-tooltip-content.no-arrow::after{visibility:hidden}.ha-advanced-tooltip-enable .ha-advanced-tooltip-content.show{display:inline-block;opacity:1}.ha-advanced-tooltip-enable.ha-advanced-tooltip-top .ha-advanced-tooltip-content,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-top .ha-advanced-tooltip-content{top:unset;right:0;bottom:calc(101% + var(--ha-tooltip-arrow-distance));left:0;margin:0 auto}.ha-advanced-tooltip-enable.ha-advanced-tooltip-top .ha-advanced-tooltip-content::after,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-top .ha-advanced-tooltip-content::after{top:100%;right:unset;bottom:unset;left:50%;border-color:var(--ha-tooltip-arrow-color) transparent transparent transparent;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ha-advanced-tooltip-enable.ha-advanced-tooltip-bottom .ha-advanced-tooltip-content,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-bottom .ha-advanced-tooltip-content{top:calc(101% + var(--ha-tooltip-arrow-distance));right:0;bottom:unset;left:0;margin:0 auto}.ha-advanced-tooltip-enable.ha-advanced-tooltip-bottom .ha-advanced-tooltip-content::after,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-bottom .ha-advanced-tooltip-content::after{top:unset;right:unset;bottom:100%;left:50%;border-color:transparent transparent var(--ha-tooltip-arrow-color) transparent;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ha-advanced-tooltip-enable.ha-advanced-tooltip-left .ha-advanced-tooltip-content,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-left .ha-advanced-tooltip-content{top:50%;right:calc(101% + var(--ha-tooltip-arrow-distance));bottom:unset;left:unset;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ha-advanced-tooltip-enable.ha-advanced-tooltip-left .ha-advanced-tooltip-content::after,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-left .ha-advanced-tooltip-content::after{top:50%;right:unset;bottom:unset;left:100%;border-color:transparent transparent transparent var(--ha-tooltip-arrow-color);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ha-advanced-tooltip-enable.ha-advanced-tooltip-right .ha-advanced-tooltip-content,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-right .ha-advanced-tooltip-content{top:50%;right:unset;bottom:unset;left:calc(101% + var(--ha-tooltip-arrow-distance));-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ha-advanced-tooltip-enable.ha-advanced-tooltip-right .ha-advanced-tooltip-content::after,body[data-elementor-device-mode=tablet] .ha-advanced-tooltip-enable.ha-advanced-tooltip-tablet-right .ha-advanced-tooltip-content::after{top:50%;right:100%;bottom:unset;left:unset;border-color:transparent var(--ha-tooltip-arrow-color) transparent transparent;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-top .ha-advanced-tooltip-content{top:unset;right:0;bottom:calc(101% + var(--ha-tooltip-arrow-distance));left:0;margin:0 auto}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-top .ha-advanced-tooltip-content::after{top:100%;right:unset;bottom:unset;left:50%;border-color:var(--ha-tooltip-arrow-color) transparent transparent transparent;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-bottom .ha-advanced-tooltip-content{top:calc(101% + var(--ha-tooltip-arrow-distance));right:0;bottom:unset;left:0;margin:0 auto}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-bottom .ha-advanced-tooltip-content::after{top:unset;right:unset;bottom:100%;left:50%;border-color:transparent transparent var(--ha-tooltip-arrow-color) transparent;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-left .ha-advanced-tooltip-content{top:50%;right:calc(101% + var(--ha-tooltip-arrow-distance));bottom:unset;left:unset;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-left .ha-advanced-tooltip-content::after{top:50%;right:unset;bottom:unset;left:100%;border-color:transparent transparent transparent var(--ha-tooltip-arrow-color);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-right .ha-advanced-tooltip-content{top:50%;right:unset;bottom:unset;left:calc(101% + var(--ha-tooltip-arrow-distance));-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}body[data-elementor-device-mode=mobile] .ha-advanced-tooltip-enable.ha-advanced-tooltip-mobile-right .ha-advanced-tooltip-content::after{top:50%;right:100%;bottom:unset;left:unset;border-color:transparent var(--ha-tooltip-arrow-color) transparent transparent;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}body.elementor-editor-active .happy-addon.ha-gravityforms .gform_wrapper{display:block!important}.ha-scroll-to-top-wrap.ha-scroll-to-top-hide{display:none}.ha-scroll-to-top-wrap.edit-mode,.ha-scroll-to-top-wrap.single-page-off{display:none!important}.ha-scroll-to-top-button{position:fixed;right:15px;bottom:15px;z-index:9999;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;width:50px;height:50px;border-radius:50px;background-color:#5636d1;color:#fff;text-align:center;opacity:1;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.ha-scroll-to-top-button i{color:#fff;font-size:16px}.ha-scroll-to-top-button:hover{background-color:#e2498a}.ha-particle-wrapper{position:absolute;top:0;left:0;width:100%;height:100%}.ha-floating-element{position:fixed;z-index:999}.ha-floating-element-align-top-left .ha-floating-element{top:0;left:0}.ha-floating-element-align-top-right .ha-floating-element{top:0;right:0}.ha-floating-element-align-top-center .ha-floating-element{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ha-floating-element-align-middle-left .ha-floating-element{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ha-floating-element-align-middle-right .ha-floating-element{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ha-floating-element-align-bottom-left .ha-floating-element{bottom:0;left:0}.ha-floating-element-align-bottom-right .ha-floating-element{right:0;bottom:0}.ha-floating-element-align-bottom-center .ha-floating-element{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ha-editor-placeholder{padding:20px;border:5px double #f1f1f1;background:#f8f8f8;text-align:center;opacity:.5}.ha-editor-placeholder-title{margin-top:0;margin-bottom:8px;font-weight:700;font-size:16px}.ha-editor-placeholder-content{margin:0;font-size:12px}.ha-p-relative{position:relative}.ha-p-absolute{position:absolute}.ha-p-fixed{position:fixed}.ha-w-1{width:1%}.ha-h-1{height:1%}.ha-w-2{width:2%}.ha-h-2{height:2%}.ha-w-3{width:3%}.ha-h-3{height:3%}.ha-w-4{width:4%}.ha-h-4{height:4%}.ha-w-5{width:5%}.ha-h-5{height:5%}.ha-w-6{width:6%}.ha-h-6{height:6%}.ha-w-7{width:7%}.ha-h-7{height:7%}.ha-w-8{width:8%}.ha-h-8{height:8%}.ha-w-9{width:9%}.ha-h-9{height:9%}.ha-w-10{width:10%}.ha-h-10{height:10%}.ha-w-11{width:11%}.ha-h-11{height:11%}.ha-w-12{width:12%}.ha-h-12{height:12%}.ha-w-13{width:13%}.ha-h-13{height:13%}.ha-w-14{width:14%}.ha-h-14{height:14%}.ha-w-15{width:15%}.ha-h-15{height:15%}.ha-w-16{width:16%}.ha-h-16{height:16%}.ha-w-17{width:17%}.ha-h-17{height:17%}.ha-w-18{width:18%}.ha-h-18{height:18%}.ha-w-19{width:19%}.ha-h-19{height:19%}.ha-w-20{width:20%}.ha-h-20{height:20%}.ha-w-21{width:21%}.ha-h-21{height:21%}.ha-w-22{width:22%}.ha-h-22{height:22%}.ha-w-23{width:23%}.ha-h-23{height:23%}.ha-w-24{width:24%}.ha-h-24{height:24%}.ha-w-25{width:25%}.ha-h-25{height:25%}.ha-w-26{width:26%}.ha-h-26{height:26%}.ha-w-27{width:27%}.ha-h-27{height:27%}.ha-w-28{width:28%}.ha-h-28{height:28%}.ha-w-29{width:29%}.ha-h-29{height:29%}.ha-w-30{width:30%}.ha-h-30{height:30%}.ha-w-31{width:31%}.ha-h-31{height:31%}.ha-w-32{width:32%}.ha-h-32{height:32%}.ha-w-33{width:33%}.ha-h-33{height:33%}.ha-w-34{width:34%}.ha-h-34{height:34%}.ha-w-35{width:35%}.ha-h-35{height:35%}.ha-w-36{width:36%}.ha-h-36{height:36%}.ha-w-37{width:37%}.ha-h-37{height:37%}.ha-w-38{width:38%}.ha-h-38{height:38%}.ha-w-39{width:39%}.ha-h-39{height:39%}.ha-w-40{width:40%}.ha-h-40{height:40%}.ha-w-41{width:41%}.ha-h-41{height:41%}.ha-w-42{width:42%}.ha-h-42{height:42%}.ha-w-43{width:43%}.ha-h-43{height:43%}.ha-w-44{width:44%}.ha-h-44{height:44%}.ha-w-45{width:45%}.ha-h-45{height:45%}.ha-w-46{width:46%}.ha-h-46{height:46%}.ha-w-47{width:47%}.ha-h-47{height:47%}.ha-w-48{width:48%}.ha-h-48{height:48%}.ha-w-49{width:49%}.ha-h-49{height:49%}.ha-w-50{width:50%}.ha-h-50{height:50%}.ha-w-51{width:51%}.ha-h-51{height:51%}.ha-w-52{width:52%}.ha-h-52{height:52%}.ha-w-53{width:53%}.ha-h-53{height:53%}.ha-w-54{width:54%}.ha-h-54{height:54%}.ha-w-55{width:55%}.ha-h-55{height:55%}.ha-w-56{width:56%}.ha-h-56{height:56%}.ha-w-57{width:57%}.ha-h-57{height:57%}.ha-w-58{width:58%}.ha-h-58{height:58%}.ha-w-59{width:59%}.ha-h-59{height:59%}.ha-w-60{width:60%}.ha-h-60{height:60%}.ha-w-61{width:61%}.ha-h-61{height:61%}.ha-w-62{width:62%}.ha-h-62{height:62%}.ha-w-63{width:63%}.ha-h-63{height:63%}.ha-w-64{width:64%}.ha-h-64{height:64%}.ha-w-65{width:65%}.ha-h-65{height:65%}.ha-w-66{width:66%}.ha-h-66{height:66%}.ha-w-67{width:67%}.ha-h-67{height:67%}.ha-w-68{width:68%}.ha-h-68{height:68%}.ha-w-69{width:69%}.ha-h-69{height:69%}.ha-w-70{width:70%}.ha-h-70{height:70%}.ha-w-71{width:71%}.ha-h-71{height:71%}.ha-w-72{width:72%}.ha-h-72{height:72%}.ha-w-73{width:73%}.ha-h-73{height:73%}.ha-w-74{width:74%}.ha-h-74{height:74%}.ha-w-75{width:75%}.ha-h-75{height:75%}.ha-w-76{width:76%}.ha-h-76{height:76%}.ha-w-77{width:77%}.ha-h-77{height:77%}.ha-w-78{width:78%}.ha-h-78{height:78%}.ha-w-79{width:79%}.ha-h-79{height:79%}.ha-w-80{width:80%}.ha-h-80{height:80%}.ha-w-81{width:81%}.ha-h-81{height:81%}.ha-w-82{width:82%}.ha-h-82{height:82%}.ha-w-83{width:83%}.ha-h-83{height:83%}.ha-w-84{width:84%}.ha-h-84{height:84%}.ha-w-85{width:85%}.ha-h-85{height:85%}.ha-w-86{width:86%}.ha-h-86{height:86%}.ha-w-87{width:87%}.ha-h-87{height:87%}.ha-w-88{width:88%}.ha-h-88{height:88%}.ha-w-89{width:89%}.ha-h-89{height:89%}.ha-w-90{width:90%}.ha-h-90{height:90%}.ha-w-91{width:91%}.ha-h-91{height:91%}.ha-w-92{width:92%}.ha-h-92{height:92%}.ha-w-93{width:93%}.ha-h-93{height:93%}.ha-w-94{width:94%}.ha-h-94{height:94%}.ha-w-95{width:95%}.ha-h-95{height:95%}.ha-w-96{width:96%}.ha-h-96{height:96%}.ha-w-97{width:97%}.ha-h-97{height:97%}.ha-w-98{width:98%}.ha-h-98{height:98%}.ha-w-99{width:99%}.ha-h-99{height:99%}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax img,.ha-w-100{width:100%}.ha-h-100{height:100%}.ha-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.ha-flex-inline{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.ha-flex-x-start{-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.ha-flex-x-end{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.ha-flex-x-between{-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.ha-flex-x-around{-ms-flex-pack:distribute;-webkit-justify-content:space-around;justify-content:space-around}.ha-flex-x-even{-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;-webkit-justify-content:space-evenly;justify-content:space-evenly}.ha-flex-x-center{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.ha-flex-y-top{-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start;-ms-flex-align:start}.ha-flex-y-center{-webkit-box-align:center;-webkit-align-items:center;align-items:center;-ms-flex-align:center}.ha-flex-y-bottom{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;-ms-flex-align:end}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax{position:absolute;display:block;background-repeat:no-repeat}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-left{left:0}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-center{left:50%}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-right{right:0}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-top{top:0}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-vcenter{top:50%}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-vcenter:not(.ha-multi-layer-parallax-center){-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-center.ha-multi-layer-parallax-vcenter{-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ha-multi-layer-parallax--yes .ha-multi-layer-parallax-bottom{bottom:0}
/*# sourceURL=elementor-frontend-inline-css */
</style>
<link rel='stylesheet' id='widget-image-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='widget-nav-menu-css' href='https://www.doherty.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=4.1.1' media='all' />
<link rel='stylesheet' id='e-sticky-css' href='https://www.doherty.com/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=4.1.1' media='all' />
<link rel='stylesheet' id='widget-icon-list-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='widget-spacer-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='widget-social-icons-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='e-apple-webkit-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='your-style-css' href='https://www.doherty.com/wp-content/plugins/hmg-wptools-elementor/assets/scss/style.css?ver=7.0' media='all' />
<link rel='stylesheet' id='e-animation-slideInRight-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='jet-blocks-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/custom-jet-blocks.css?ver=1781747851&#038;ver=1.3.21' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.49.0' media='all' />
<link rel='stylesheet' id='elementor-post-40572-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-40572.css?ver=1781747851' media='all' />
<link rel='stylesheet' id='jet-tabs-frontend-css' href='https://www.doherty.com/wp-content/plugins/jet-tabs/assets/css/jet-tabs-frontend.css?ver=2.2.12' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' />
<link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='she-header-style-css' href='https://www.doherty.com/wp-content/plugins/sticky-header-effects-for-elementor/assets/css/she-header-style.css?ver=2.1.9' media='all' />
<link rel='stylesheet' id='elementor-post-39748-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-39748.css?ver=1781747852' media='all' />
<link rel='stylesheet' id='happy-icons-css' href='https://www.doherty.com/wp-content/plugins/happy-elementor-addons/assets/fonts/style.min.css?ver=3.22.0' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0' media='all' />
<link rel='stylesheet' id='elementor-post-39751-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-39751.css?ver=1781747852' media='all' />
<link rel='stylesheet' id='elementor-post-40483-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-40483.css?ver=1781747924' media='all' />
<link rel='stylesheet' id='custom-style-css' href='https://www.doherty.com/wp-content/themes/hello-theme-child-master/style.min.css?ver=7.0' media='all' />
<link rel='stylesheet' id='eael-general-css' href='https://www.doherty.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.6.7' media='all' />
<link rel='stylesheet' id='elementor-gf-local-roboto-css' href='https://www.doherty.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1742219842' media='all' />
<link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='https://www.doherty.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1742219842' media='all' />
<link rel='stylesheet' id='elementor-gf-local-nunitosans-css' href='https://www.doherty.com/wp-content/uploads/elementor/google-fonts/css/nunitosans.css?ver=1742219843' media='all' />
<link rel='stylesheet' id='elementor-gf-local-oswald-css' href='https://www.doherty.com/wp-content/uploads/elementor/google-fonts/css/oswald.css?ver=1742219844' media='all' />
<script id="jquery-core-js" src="https://www.doherty.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
<script id="jquery-migrate-js" src="https://www.doherty.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
<script id="font-awesome-4-shim-js" src="https://www.doherty.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.1.3"></script>
<script id="she-header-js" src="https://www.doherty.com/wp-content/plugins/sticky-header-effects-for-elementor/assets/js/she-header.js?ver=2.1.9"></script>
<link rel="https://api.w.org/" href="https://www.doherty.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.doherty.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.0" />
<meta name="generator" content="Site Kit by Google 1.181.0" />                  <!-- UA  Code -->
                  <script>
                  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
                  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
                  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
                  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

                  ga('create', 'UA-41318775-1', 'auto');
                  ga('send', 'pageview');

                  </script>
                  <!-- /  UA Code -->  <!-- Google Tag Manager -->
<!--
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W2K52Z7');</script>
-->



<!-- Elementor Font Awesome Integration Fallback -->
<script src="https://kit.fontawesome.com/63cbc8b6b8.js" crossorigin="anonymous"></script>

<!-- Font Awesome Preload -->
<link rel="preload" href="/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin>			<!-- DO NOT COPY THIS SNIPPET! Start of Page Analytics Tracking for HubSpot WordPress plugin v11.3.45-->
			<script class="hsq-set-content-id" data-content-id="standard-page">
				var _hsq = _hsq || [];
				_hsq.push(["setContentType", "standard-page"]);
			</script>
			<!-- DO NOT COPY THIS SNIPPET! End of Page Analytics Tracking for HubSpot WordPress plugin -->
			<!-- SLP Custom CSS -->
<style type="text/css">
div#map.slp_map {
width:100%;
height:480px;
}
div#slp_tagline {
width:100%;
}
</style>

<!-- Stream WordPress user activity plugin v4.2.0 -->

<!--BEGIN: TRACKING CODE MANAGER (v2.6.0) BY INTELLYWP.COM IN HEAD//-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TDED49HWRZ"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-TDED49HWRZ');
</script>
<!-- Global site tag (gtag.js) - Google Ads: 10792288944 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-10792288944"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'AW-10792288944');
</script>
<!--END: https://wordpress.org/plugins/tracking-code-manager IN HEAD//-->
		<script>
		(function(h,o,t,j,a,r){
			h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
			h._hjSettings={hjid:5074126,hjsv:5};
			a=o.getElementsByTagName('head')[0];
			r=o.createElement('script');r.async=1;
			r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
			a.appendChild(r);
		})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
		</script>
		<meta name="generator" content="Elementor 4.1.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto">
<style>
.jet-menu-title {color: #003E7E !important;}
.jet-menu-title:hover {color: #B32417 !important;}
.jet-menu-title:active {color: #B32417 !important;}
</style>
<style>.wpt-clearfix::after{display:block;clear:both;content:""}.wpt-testimonial-thumb{display:block;max-width:100%;height:auto;margin:1em 0}.lSAction>a{background-image:none !important}.hmgfade{-webkit-transition:0.2s opacity ease;transition:0.2s opacity ease}.hmgfade-loading{opacity:0}.hmgfade-complete{opacity:1}</style><style class="wpcode-css-snippet">.elementor-kit-40572 .elementor-button, .elementor-kit-40572 .button, .elementor-kit-40572 button, .elementor-kit-40572 .sk-accent-2 {
    background-color: #b22726;
}</style><style class="wpcode-css-snippet">@media (max-width: 767px) {
   .eael-toggle-switch-wrap .eael-secondary-toggle-label {
        font-size: 1.3rem !important;
    }
}</style><script src="https://cdn.userway.org/widget.js" data-account="YyqBVA7TSQ"></script>
<!-- Google Tag Manager snippet added by Site Kit -->
<script>
			( function( w, d, s, l, i ) {
				w[l] = w[l] || [];
				w[l].push( {'gtm.start': new Date().getTime(), event: 'gtm.js'} );
				var f = d.getElementsByTagName( s )[0],
					j = d.createElement( s ), dl = l != 'dataLayer' ? '&l=' + l : '';
				j.async = true;
				j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
				f.parentNode.insertBefore( j, f );
			} )( window, document, 'script', 'dataLayer', 'GTM-K5W4D5' );
			
</script>

<!-- End Google Tag Manager snippet added by Site Kit -->
<style id="rogiq-faq-accordion-css">details.rogiq-faq-item{border:1px solid rgba(0,0,0,.12);border-radius:10px;margin:0 0 .75rem;padding:0;background:rgba(255,255,255,.65);}details.rogiq-faq-item summary{cursor:pointer;padding:.85rem 1rem;list-style:none;font-weight:600;outline:none;}details.rogiq-faq-item summary::-webkit-details-marker{display:none;}details.rogiq-faq-item summary::before{content:"+";display:inline-block;width:1.25rem;font-weight:700;opacity:.65;}details.rogiq-faq-item[open] summary::before{content:"−";}details.rogiq-faq-item[open] summary{border-bottom:1px solid rgba(0,0,0,.08);}details.rogiq-faq-item>p{margin:0;padding:0 1rem 1rem;}details.rogiq-faq-item>p+p{padding-top:.25rem;}h1.rogiq-featured-title{margin:.75rem 0 1rem;line-height:1.25;}</style><link rel="icon" href="https://www.doherty.com/wp-content/uploads/2021/12/cropped-Doherty-Logo-New-Circles-only-color-FINAL-2-32x32.gif" sizes="32x32" />
<link rel="icon" href="https://www.doherty.com/wp-content/uploads/2021/12/cropped-Doherty-Logo-New-Circles-only-color-FINAL-2-192x192.gif" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.doherty.com/wp-content/uploads/2021/12/cropped-Doherty-Logo-New-Circles-only-color-FINAL-2-180x180.gif" />
<meta name="msapplication-TileImage" content="https://www.doherty.com/wp-content/uploads/2021/12/cropped-Doherty-Logo-New-Circles-only-color-FINAL-2-270x270.gif" />
<style id="wp-custom-css">
.blog-categories .elementor-hmg-post-categories li a {
    color: #FFF !important;
}

@media (max-width:1024px) {
.page-header h1.entry-title {
	display:none;
}
	}
</style>

</head>
<body class="error404 wp-custom-logo wp-embed-responsive wp-theme-hello-elementor wp-child-theme-hello-theme-child-master hello-elementor-default jet-mega-menu-location elementor-default elementor-kit-40572 elementor-page-40483">


		<!-- Google Tag Manager (noscript) snippet added by Site Kit -->
		<noscript>
			<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K5W4D5" height="0" width="0" style="display:none;visibility:hidden"></iframe>
		</noscript>
		<!-- End Google Tag Manager (noscript) snippet added by Site Kit -->
		  <!-- Google Tag Manager (noscript) -->

<!--
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W2K52Z7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
-->
<!-- End Google Tag Manager (noscript) -->
<!--BEGIN: TRACKING CODE MANAGER (v2.6.0) BY INTELLYWP.COM IN BODY//-->
<script type="text/javascript"> _linkedin_partner_id = "2823810"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none" alt="" src="https://px.ads.linkedin.com/collect/?pid=2823810&fmt=gif" /> </noscript>
<!--END: https://wordpress.org/plugins/tracking-code-manager IN BODY//-->
<!-- RogIQ cookie consent styles -->
<style id="rogiq-consent-ui-css">
:root {
    --rogiq-consent-bg: #1a1a2e;
    --rogiq-consent-text: #f5f5f5;
    --rogiq-consent-link: #c8d6ff;
    --rogiq-consent-link-hover: #ffffff;
    --rogiq-consent-accept-bg: #8bc41f;
    --rogiq-consent-accept-text: #1a1a2e;
    --rogiq-consent-accept-hover-bg: #9ed428;
    --rogiq-consent-deny-text: #f5f5f5;
    --rogiq-consent-deny-text-hover: #fbfbfb;
}
#rogiq-privacy-notice.rogiq-consent-bar,
#rogiq-consent-bar.rogiq-consent-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: var(--rogiq-consent-bg, #1a1a2e);
    color: var(--rogiq-consent-text, #f5f5f5);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
}

#rogiq-privacy-notice.rogiq-consent-bar *,
#rogiq-privacy-notice.rogiq-consent-bar *::before,
#rogiq-privacy-notice.rogiq-consent-bar *::after,
#rogiq-consent-bar.rogiq-consent-bar *,
#rogiq-consent-bar.rogiq-consent-bar *::before,
#rogiq-consent-bar.rogiq-consent-bar *::after {
    box-sizing: border-box;
}

body.rogiq-consent-bar-visible {
    padding-bottom: 88px;
}

#rogiq-privacy-notice .rogiq-consent-bar__inner,
#rogiq-consent-bar .rogiq-consent-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

#rogiq-privacy-notice .rogiq-consent-bar__message,
#rogiq-consent-bar .rogiq-consent-bar__message {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

#rogiq-privacy-notice .rogiq-consent-bar__actions,
#rogiq-consent-bar .rogiq-consent-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

#rogiq-privacy-notice .rogiq-consent-bar__policy,
#rogiq-consent-bar .rogiq-consent-bar__policy {
    color: var(--rogiq-consent-link, #c8d6ff);
    text-decoration: underline;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    display: inline;
    white-space: nowrap;
}

#rogiq-privacy-notice .rogiq-consent-bar__policy:hover,
#rogiq-privacy-notice .rogiq-consent-bar__policy:focus,
#rogiq-consent-bar .rogiq-consent-bar__policy:hover,
#rogiq-consent-bar .rogiq-consent-bar__policy:focus {
    color: var(--rogiq-consent-link-hover, #ffffff);
}

#rogiq-privacy-notice .rogiq-consent-bar__accept,
#rogiq-consent-bar .rogiq-consent-bar__accept {
    appearance: none;
    border: 0;
    border-radius: 6px;
    background: var(--rogiq-consent-accept-bg, #8bc41f);
    color: var(--rogiq-consent-accept-text, #1a1a2e);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 18px;
    margin: 0;
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    box-shadow: none;
    white-space: nowrap;
}

#rogiq-privacy-notice .rogiq-consent-bar__deny,
#rogiq-consent-bar .rogiq-consent-bar__deny {
    appearance: none;
    border: 1px solid rgba(245, 245, 245, 0.45);
    border-radius: 6px;
    background: transparent;
    color: var(--rogiq-consent-deny-text, #f5f5f5);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 18px;
    margin: 0;
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    box-shadow: none;
    white-space: nowrap;
}

#rogiq-privacy-notice .rogiq-consent-bar__deny:hover,
#rogiq-privacy-notice .rogiq-consent-bar__deny:focus,
#rogiq-consent-bar .rogiq-consent-bar__deny:hover,
#rogiq-consent-bar .rogiq-consent-bar__deny:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--rogiq-consent-deny-text-hover, #ffffff);
    border-color: rgba(255, 255, 255, 0.75);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

#rogiq-privacy-notice .rogiq-consent-bar__accept:hover,
#rogiq-privacy-notice .rogiq-consent-bar__accept:focus,
#rogiq-consent-bar .rogiq-consent-bar__accept:hover,
#rogiq-consent-bar .rogiq-consent-bar__accept:focus {
    background: var(--rogiq-consent-accept-hover-bg, #9ed428);
    color: var(--rogiq-consent-accept-text, #1a1a2e);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

#rogiq-privacy-notice.rogiq-consent-bar:not(.is-hidden),
#rogiq-consent-bar.rogiq-consent-bar:not(.is-hidden) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

#rogiq-privacy-notice.rogiq-consent-bar.is-hidden,
#rogiq-consent-bar.rogiq-consent-bar.is-hidden {
    display: none !important;
}

/* Haley Marketing decorative widget — RogIQ consent replaces it when active. */
#band-cookies {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 640px) {
    #rogiq-privacy-notice.rogiq-consent-bar,
#rogiq-consent-bar.rogiq-consent-bar {
        font-size: 13px;
        line-height: 1.4;
    }

    body.rogiq-consent-bar-visible {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    #rogiq-privacy-notice .rogiq-consent-bar__inner,
#rogiq-consent-bar .rogiq-consent-bar__inner {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        padding: 10px 14px;
        gap: 8px;
    }

    #rogiq-privacy-notice .rogiq-consent-bar__message,
#rogiq-consent-bar .rogiq-consent-bar__message {
        flex: 0 1 auto;
        font-size: 13px;
        line-height: 1.35;
    }

    #rogiq-privacy-notice .rogiq-consent-bar__actions,
#rogiq-consent-bar .rogiq-consent-bar__actions {
        justify-content: space-between;
        width: 100%;
        gap: 8px;
    }

    #rogiq-privacy-notice .rogiq-consent-bar__policy,
#rogiq-consent-bar .rogiq-consent-bar__policy {
        font-size: 12px;
    }

    #rogiq-privacy-notice .rogiq-consent-bar__accept,
    #rogiq-consent-bar .rogiq-consent-bar__accept,
    #rogiq-privacy-notice .rogiq-consent-bar__deny,
    #rogiq-consent-bar .rogiq-consent-bar__deny {
        font-size: 13px;
        padding: 8px 14px;
    }
}

</style>
        <div id="rogiq-privacy-notice" class="rogiq-consent-bar" role="dialog" aria-label="RogIQ privacy notice" aria-live="polite">
            <div class="rogiq-consent-bar__inner">
                <p class="rogiq-consent-bar__message">We use cookies to analyze site traffic and improve your experience. Click Accept All to allow analytics cookies.</p>
                <div class="rogiq-consent-bar__actions">
                                            <a class="rogiq-consent-bar__policy" href="https://www.doherty.com/privacy/" target="_blank" rel="noopener noreferrer">
                            Privacy policy                        </a>
                                        <button type="button" class="rogiq-consent-bar__deny" id="rogiq-consent-deny">
                        Deny All                    </button>
                    <button type="button" class="rogiq-consent-bar__accept" id="rogiq-consent-accept">
                        Accept All                    </button>
                </div>
            </div>
        </div>
                
<!-- RogIQ cookie consent script -->
<script id="rogiq-consent-ui">
(function () {
    'use strict';

    var COOKIE_NAME = 'rogiq_consent';
    var COOKIE_VALUE = 'accepted';
    var COOKIE_DENIED_VALUE = 'denied';
    var COOKIE_MAX_AGE = 365 * 24 * 60 * 60;
    var LOG_KEY = 'rogiq_consent_audit_log';
    var LOG_MAX = 20;
    var LOG_PREFIX = '[RogIQ Cookie Consent]';

    function readConsentConfig() {
        var node = document.getElementById('rogiq-consent-config');
        if (!node || !node.textContent) {
            return {};
        }

        try {
            return JSON.parse(node.textContent);
        } catch (e) {
            return {};
        }
    }

    var consentRuntime = readConsentConfig();
    if (consentRuntime.cookieName) {
        COOKIE_NAME = consentRuntime.cookieName;
    }
    if (consentRuntime.cookieValue) {
        COOKIE_VALUE = consentRuntime.cookieValue;
    }
    if (consentRuntime.deniedCookieValue) {
        COOKIE_DENIED_VALUE = consentRuntime.deniedCookieValue;
    }

    function deriveParentDomainFromHost(hostname) {
        var host = String(hostname || '').toLowerCase();
        if (!host || host === 'localhost' || /^\d{1,3}(\.\d{1,3}){3}$/.test(host)) {
            return '';
        }

        var parts = host.split('.');
        if (parts.length < 3) {
            return '';
        }

        var tld = parts[parts.length - 1];
        if (tld.length > 3) {
            return '';
        }

        return parts.slice(-2).join('.');
    }

    function shouldUseParentDomainCookie() {
        return !!(
            consentRuntime.usesParentDomain
            || consentRuntime.shareSubdomains
            || consentRuntime.autoShareSubdomains
        );
    }

    function resolveCookieDomain() {
        if (!shouldUseParentDomainCookie()) {
            return '';
        }

        var domain = consentRuntime.cookieDomain || consentRuntime.suggestedDomain || '';
        domain = String(domain).replace(/^\./, '');

        if (!domain) {
            domain = deriveParentDomainFromHost(window.location.hostname);
        }

        return domain;
    }

    function cookieDomainAttribute() {
        var domain = resolveCookieDomain();
        return domain ? '; domain=.' + domain : '';
    }

    function readConsentCookieValue() {
        var prefix = COOKIE_NAME + '=';
        var parts = document.cookie.split(';');
        var i;

        for (i = 0; i < parts.length; i++) {
            var part = parts[i].replace(/^\s+/, '');
            if (part.indexOf(prefix) === 0) {
                return decodeURIComponent(part.substring(prefix.length));
            }
        }

        return '';
    }

    function hasConsentCookie() {
        return readConsentCookieValue() === COOKIE_VALUE;
    }

    function hasDeniedCookie() {
        return readConsentCookieValue() === COOKIE_DENIED_VALUE;
    }

    function hasConsentChoice() {
        return hasConsentCookie() || hasDeniedCookie();
    }

    function describeScript(item) {
        if (!item) {
            return null;
        }
        if (item.src) {
            return item.src;
        }
        if (item.content) {
            return '(inline) ' + String(item.content).replace(/\s+/g, ' ').trim().slice(0, 80);
        }
        return '(unknown)';
    }

    function collectBlockedScripts() {
        var seen = {};
        var list = [];
        var granted = !!(window.rogiqConsent && window.rogiqConsent.granted);
        var pending = document.querySelectorAll('script[type="text/plain"][data-rogiq-consent="pending"]');
        var i;

        function add(label, value) {
            if (!value || seen[value]) {
                return;
            }
            seen[value] = true;
            list.push({ type: label, script: value });
        }

        for (i = 0; i < pending.length; i++) {
            var node = pending[i];
            var src = node.getAttribute('src') || '';
            var content = node.text || node.textContent || '';
            if (src) {
                add('blocked', src);
            } else if (content) {
                add('blocked', '(inline) ' + String(content).replace(/\s+/g, ' ').trim().slice(0, 80));
            }
        }

        // Queue holds scripts waiting for Accept All — only count before consent.
        if (!granted && window.rogiqConsent && Array.isArray(window.rogiqConsent.queue)) {
            for (i = 0; i < window.rogiqConsent.queue.length; i++) {
                add('queued', describeScript(window.rogiqConsent.queue[i]));
            }
        }

        return list;
    }

    function isTrackingLive(node) {
        if (!node || node.tagName !== 'SCRIPT') {
            return false;
        }
        if ((node.getAttribute('type') || '').toLowerCase() === 'text/plain') {
            return false;
        }

        var src = node.getAttribute('src') || '';
        var content = node.text || node.textContent || '';
        if (window.rogiqConsent && typeof window.rogiqConsent.matchesTracking === 'function') {
            return window.rogiqConsent.matchesTracking(src) || window.rogiqConsent.matchesTracking(content);
        }

        return /googletagmanager|google-analytics|googleadservices|facebook\.net|clarity\.ms|hotjar|api\.rogiq\.ai\/tracker/i.test(
            src + ' ' + content
        );
    }

    function collectLoadedTrackingScripts() {
        var seen = {};
        var list = [];
        var nodes = document.getElementsByTagName('script');
        var i;

        for (i = 0; i < nodes.length; i++) {
            if (!isTrackingLive(nodes[i])) {
                continue;
            }

            var src = nodes[i].getAttribute('src') || '';
            var content = nodes[i].text || nodes[i].textContent || '';
            var label = src || '(inline) ' + String(content).replace(/\s+/g, ' ').trim().slice(0, 80);
            if (!label || seen[label]) {
                continue;
            }
            seen[label] = true;
            list.push(label);
        }

        return list;
    }

    function collectSnapshot(phase) {
        var blocked = collectBlockedScripts();
        var loaded = collectLoadedTrackingScripts();
        var bar = getBannerElement();

        return {
            phase: phase,
            at: new Date().toISOString(),
            cookieAccepted: hasConsentCookie(),
            cookieDenied: hasDeniedCookie(),
            trackingGranted: !!(window.rogiqConsent && window.rogiqConsent.granted),
            shareSubdomains: !!consentRuntime.shareSubdomains,
            autoShareSubdomains: !!consentRuntime.autoShareSubdomains,
            usesParentDomain: !!consentRuntime.usesParentDomain,
            cookieDomain: resolveCookieDomain(),
            requestHost: window.location.hostname,
            blockedCount: blocked.length,
            blockedScripts: blocked,
            loadedTrackingCount: loaded.length,
            loadedTrackingScripts: loaded,
            bannerInDom: !!bar,
            bannerVisible: !!(bar && !bar.classList.contains('is-hidden')),
            summary:
                phase === 'before'
                    ? 'Tracking blocked until Accept All'
                    : (phase === 'denied'
                        ? 'Tracking denied — analytics cookies remain blocked'
                        : (loaded.length > 0
                            ? 'Tracking released — ' + loaded.length + ' active tracker(s) in page'
                            : 'Consent granted but no active tracking scripts detected yet'))
        };
    }

    function readLog() {
        try {
            var raw = window.sessionStorage.getItem(LOG_KEY);
            if (!raw) {
                return [];
            }
            var parsed = JSON.parse(raw);
            return Array.isArray(parsed) ? parsed : [];
        } catch (e) {
            return [];
        }
    }

    function writeLog(entries) {
        try {
            window.sessionStorage.setItem(LOG_KEY, JSON.stringify(entries.slice(-LOG_MAX)));
        } catch (e) {
            /* ignore quota errors */
        }
    }

    function recordAudit(phase) {
        var entry = collectSnapshot(phase);
        var log = readLog();
        log.push(entry);
        writeLog(log);
        return entry;
    }

    function printAuditReport() {
        var log = readLog();
        var current = collectSnapshot(hasConsentCookie() ? 'after' : (hasDeniedCookie() ? 'denied' : 'before'));

        console.group(LOG_PREFIX + ' Audit report');
        console.log('Current state:', current);

        if (!log.length) {
            console.log('No before/after history yet for this browser tab.');
            console.log('Tip: open incognito, load the page (BEFORE), click Accept All (AFTER), then run rogiqConsentReport() again.');
        } else {
            console.log('Session history (' + log.length + ' entries):');
            console.table(log.map(function (entry, index) {
                return {
                    step: index + 1,
                    phase: entry.phase,
                    at: entry.at,
                    cookieAccepted: entry.cookieAccepted,
                    cookieDenied: entry.cookieDenied,
                    trackingGranted: entry.trackingGranted,
                    blockedCount: entry.blockedCount,
                    loadedTrackingCount: entry.loadedTrackingCount,
                    bannerVisible: entry.bannerVisible,
                    summary: entry.summary
                };
            }));

            var before = log.filter(function (entry) { return entry.phase === 'before'; }).pop();
            var after = log.filter(function (entry) { return entry.phase === 'after'; }).pop();

            if (before && after) {
                console.log(
                    'Proof: BEFORE blocked ' + before.blockedCount +
                    ' tracker(s); AFTER blocked ' + after.blockedCount +
                    ', loadedTracking=' + after.loadedTrackingCount +
                    ', trackingGranted=' + after.trackingGranted
                );
                if (after.trackingGranted && after.loadedTrackingCount === 0) {
                    console.warn(
                        LOG_PREFIX,
                        'Consent granted but no tracking scripts are active in the page. Check RogIQ Tracking scripts field and remove duplicate snippets from the theme.'
                    );
                }
            }
        }

        console.log('Commands: rogiqConsentReport()  |  rogiqConsentAudit.clear()');
        console.groupEnd();

        return { current: current, history: log };
    }

    function clearAuditLog() {
        try {
            window.sessionStorage.removeItem(LOG_KEY);
        } catch (e) {
            /* ignore */
        }
        console.info(LOG_PREFIX, 'Audit log cleared for this browser tab.');
    }

    function logToConsole(entry) {
        var blockedLabel = entry.blockedCount > 0
            ? entry.blockedCount + ' tracker(s) blocked'
            : 'no trackers still blocked';

        if (entry.phase === 'before') {
            console.info(
                LOG_PREFIX,
                'BEFORE consent — ' + blockedLabel + '. Run rogiqConsentReport() after Accept All for proof.'
            );
        } else if (entry.phase === 'denied') {
            console.info(
                LOG_PREFIX,
                'DENY consent — ' + blockedLabel + '; analytics cookies remain blocked.'
            );
        } else if (entry.trackingGranted && entry.blockedCount === 0) {
            var loadedLabel = entry.loadedTrackingCount > 0
                ? entry.loadedTrackingCount + ' active tracker(s) in page'
                : 'no active tracking scripts detected yet';
            console.info(
                LOG_PREFIX,
                'AFTER consent — tracking released. ' + blockedLabel + '; ' + loadedLabel + '.'
            );
            if (entry.loadedTrackingCount > 0 && entry.loadedTrackingScripts && entry.loadedTrackingScripts.length) {
                console.table(entry.loadedTrackingScripts.map(function (script, index) {
                    return { index: index + 1, script: script };
                }));
            }
        } else {
            console.info(
                LOG_PREFIX,
                'AFTER consent — trackingGranted=' + entry.trackingGranted + '; ' + blockedLabel + '.'
            );
        }

        if (entry.blockedCount > 0 && entry.blockedScripts && entry.blockedScripts.length) {
            console.table(entry.blockedScripts);
        }
    }

    window.rogiqConsentAudit = {
        record: recordAudit,
        report: printAuditReport,
        clear: clearAuditLog,
        getLog: readLog,
        snapshot: collectSnapshot
    };
    window.rogiqConsentReport = printAuditReport;
    window.rogiqConsentDiagnostics = function () {
        var bar = getBannerElement();
        var snapshot = collectSnapshot(
            hasConsentCookie() ? 'after' : (hasDeniedCookie() ? 'denied' : 'before')
        );
        var checks = {
            pluginConfigPresent: !!document.getElementById('rogiq-consent-config'),
            blockerPresent: !!document.getElementById('rogiq-consent-blocker'),
            bannerInDom: !!bar,
            bannerVisible: !!(bar && !bar.classList.contains('is-hidden')),
            consentCookiePresent: hasConsentCookie(),
            consentDeniedPresent: hasDeniedCookie(),
            usesParentDomain: !!consentRuntime.usesParentDomain,
            cookieDomain: resolveCookieDomain(),
            requestHost: window.location.hostname
        };
        checks.readyForNewVisitor = checks.pluginConfigPresent && checks.blockerPresent && checks.bannerInDom;
        checks.readyAfterAccept = checks.consentCookiePresent && !!(window.rogiqConsent && window.rogiqConsent.granted);
        checks.readyAfterDeny = checks.consentDeniedPresent && !(window.rogiqConsent && window.rogiqConsent.granted);
        console.table(checks);
        return { checks: checks, snapshot: snapshot };
    };

    function setChoiceCookie(value) {
        var secure = window.location.protocol === 'https:' ? '; Secure' : '';
        var domainAttr = cookieDomainAttribute();

        if (domainAttr) {
            document.cookie = COOKIE_NAME + '=; path=/; max-age=0; SameSite=Lax' + secure;
            document.cookie = COOKIE_NAME + '=; path=/; max-age=0; SameSite=Lax' + secure + domainAttr;
        }

        document.cookie = COOKIE_NAME + '=' + value + '; path=/; max-age=' + COOKIE_MAX_AGE + '; SameSite=Lax' + secure + domainAttr;
    }

    function setConsentCookie() {
        setChoiceCookie(COOKIE_VALUE);
    }

    function setDeniedCookie() {
        setChoiceCookie(COOKIE_DENIED_VALUE);
    }

    function persistConsentServer(action, nonce) {
        if (!consentRuntime.acceptEndpoint || !nonce) {
            return;
        }

        try {
            var body = new URLSearchParams();
            body.set('action', action);
            body.set('nonce', nonce);
            fetch(consentRuntime.acceptEndpoint, {
                method: 'POST',
                body: body,
                credentials: 'same-origin'
            });
        } catch (e) {
            /* ignore */
        }
    }

    function persistAcceptServer() {
        persistConsentServer(
            consentRuntime.acceptAction || 'rogiq_accept_consent',
            consentRuntime.acceptNonce
        );
    }

    function persistDenyServer() {
        persistConsentServer(
            consentRuntime.denyAction || 'rogiq_deny_consent',
            consentRuntime.denyNonce
        );
    }

    function getBannerElement() {
        return document.getElementById('rogiq-privacy-notice') || document.getElementById('rogiq-consent-bar');
    }

    function shouldResetConsentFromUrl() {
        return /[?&]rogiq_reset_consent=1(?:&|$)/.test(window.location.search);
    }

    function shouldForceBannerFromUrl() {
        return /[?&]rogiq_force_banner=1(?:&|$)/.test(window.location.search);
    }

    function clearConsentCookies() {
        var secure = window.location.protocol === 'https:' ? '; Secure' : '';
        var expired = COOKIE_NAME + '=; path=/; max-age=0; SameSite=Lax' + secure;
        var domains = {};
        var resolved = resolveCookieDomain();
        var derived = deriveParentDomainFromHost(window.location.hostname);

        document.cookie = expired;

        if (resolved) {
            domains[resolved] = true;
        }
        if (derived) {
            domains[derived] = true;
        }

        Object.keys(domains).forEach(function (domain) {
            document.cookie = expired + '; domain=.' + String(domain).replace(/^\./, '');
        });
    }

    function mountBannerToBodyEnd() {
        var bar = getBannerElement();
        if (!bar || !document.body) {
            return;
        }

        document.body.appendChild(bar);
    }

    function showBanner() {
        var bar = getBannerElement();
        if (!bar) {
            return;
        }

        bar.classList.remove('is-hidden');
        document.body.classList.add('rogiq-consent-bar-visible');
    }

    function hideBanner() {
        var bar = getBannerElement();
        if (bar) {
            bar.classList.add('is-hidden');
        }
        document.body.classList.remove('rogiq-consent-bar-visible');
    }

    function suppressHmgDecorativeBanner() {
        var selectors = ['#band-cookies'];
        var i;
        var nodes;
        var j;

        for (i = 0; i < selectors.length; i++) {
            try {
                nodes = document.querySelectorAll(selectors[i]);
            } catch (e) {
                continue;
            }
            for (j = 0; j < nodes.length; j++) {
                if (nodes[j] && nodes[j].parentNode) {
                    nodes[j].parentNode.removeChild(nodes[j]);
                }
            }
        }
    }

    function injectDeferredPayloads() {
        var node = document.getElementById('rogiq-consent-deferred-data');
        if (!node || !node.textContent) {
            return;
        }

        var payloads;
        try {
            payloads = JSON.parse(node.textContent);
        } catch (e) {
            return;
        }

        if (!Array.isArray(payloads)) {
            return;
        }

        var index = 0;
        var target = document.head || document.body;

        function injectNext() {
            if (index >= payloads.length) {
                return;
            }

            var item = payloads[index++];

            if (item.type === 'external' && item.src) {
                var external = document.createElement('script');
                external.className = 'rogiq-consent-tracking';
                external.src = item.src;
                if (item.async) {
                    external.async = true;
                }
                var advance = function () {
                    injectNext();
                };
                external.onload = advance;
                external.onerror = advance;
                target.appendChild(external);
                return;
            }

            if (item.type === 'inline' && item.content) {
                var inline = document.createElement('script');
                inline.className = 'rogiq-consent-tracking';
                inline.text = item.content;
                target.appendChild(inline);
            }

            injectNext();
        }

        injectNext();
    }

    function activatePendingScripts() {
        var pending = document.querySelectorAll('script[type="text/plain"][data-rogiq-consent="pending"]');
        pending.forEach(function (node) {
            var src = node.getAttribute('src') || '';
            var content = node.text || node.textContent || '';
            var replacement = document.createElement('script');
            replacement.className = 'rogiq-consent-tracking';

            if (src) {
                replacement.src = src;
                if (node.hasAttribute('async')) {
                    replacement.async = true;
                }
            } else if (content) {
                replacement.text = content;
            } else {
                return;
            }

            if (node.parentNode) {
                node.parentNode.replaceChild(replacement, node);
            }
        });
    }

    function denyGoogleConsentMode() {
        window.dataLayer = window.dataLayer || [];
        function gtag() {
            window.dataLayer.push(arguments);
        }
        gtag('consent', 'update', {
            ad_storage: 'denied',
            ad_user_data: 'denied',
            ad_personalization: 'denied',
            analytics_storage: 'denied',
            functionality_storage: 'denied',
            personalization_storage: 'denied'
        });
    }

    function grantGoogleConsentMode() {
        window.dataLayer = window.dataLayer || [];
        function gtag() {
            window.dataLayer.push(arguments);
        }
        gtag('consent', 'update', {
            ad_storage: 'granted',
            ad_user_data: 'granted',
            ad_personalization: 'granted',
            analytics_storage: 'granted',
            functionality_storage: 'granted',
            personalization_storage: 'granted'
        });
    }

    function releaseDeferredTracking() {
        grantGoogleConsentMode();

        var hadConfiguredPlaceholders = document.querySelectorAll('script[data-rogiq-configured="1"]').length > 0;

        if (window.rogiqConsent) {
            window.rogiqConsent.granted = true;
            if (typeof window.rogiqConsent.replay === 'function') {
                window.rogiqConsent.replay();
            }
        }

        activatePendingScripts();

        if (!hadConfiguredPlaceholders) {
            injectDeferredPayloads();
        }
    }

    function logAfterChoice(phase) {
        window.setTimeout(function () {
            var entry = recordAudit(phase);
            logToConsole(entry);
        }, phase === 'after' ? 1000 : 0);
    }

    function acceptAll() {
        setConsentCookie();
        persistAcceptServer();
        releaseDeferredTracking();
        hideBanner();
        logAfterChoice('after');

        try {
            window.dispatchEvent(new CustomEvent('rogiqConsentAccepted'));
        } catch (e) {
            /* ignore */
        }
    }

    function denyAll() {
        setDeniedCookie();
        persistDenyServer();
        denyGoogleConsentMode();
        hideBanner();
        logAfterChoice('denied');

        try {
            window.dispatchEvent(new CustomEvent('rogiqConsentDenied'));
        } catch (e) {
            /* ignore */
        }
    }

    function scheduleBeforeConsentLog() {
        window.setTimeout(function () {
            if (hasConsentChoice()) {
                return;
            }
            var entry = recordAudit('before');
            logToConsole(entry);
        }, 800);
    }

    function ensureBannerPresent() {
        if (getBannerElement()) {
            return;
        }

        var message = consentRuntime.bannerMessage
            || 'We use cookies to analyze site traffic and improve your experience. Click Accept All to allow analytics cookies, or Deny All to continue without them.';
        var policyUrl = consentRuntime.policyUrl || '';
        var bar = document.createElement('div');
        bar.id = 'rogiq-privacy-notice';
        bar.className = 'rogiq-consent-bar';
        bar.setAttribute('role', 'dialog');
        bar.setAttribute('aria-label', 'RogIQ privacy notice');
        bar.setAttribute('aria-live', 'polite');

        var policyLink = policyUrl
            ? '<a class="rogiq-consent-bar__policy" href="' + policyUrl + '" target="_blank" rel="noopener noreferrer">Privacy policy</a>'
            : '';

        bar.innerHTML =
            '<div class="rogiq-consent-bar__inner">' +
                '<p class="rogiq-consent-bar__message"></p>' +
                '<div class="rogiq-consent-bar__actions">' +
                    policyLink +
                    '<button type="button" class="rogiq-consent-bar__deny" id="rogiq-consent-deny">Deny All</button>' +
                    '<button type="button" class="rogiq-consent-bar__accept" id="rogiq-consent-accept">Accept All</button>' +
                '</div>' +
            '</div>';

        bar.querySelector('.rogiq-consent-bar__message').textContent = message;
        document.body.appendChild(bar);
    }

    function init() {
        suppressHmgDecorativeBanner();

        if (shouldResetConsentFromurl(https://www.doherty.com/wp-content/uploads/elementor/css/)) {
            clearConsentCookies();
        }

        ensureBannerPresent();
        mountBannerToBodyEnd();

        var forceBanner = shouldForceBannerFromUrl();
        var hasCookie = hasConsentCookie();

        if (!forceBanner) {
            if (hasCookie) {
                hideBanner();
                console.info(
                    LOG_PREFIX,
                    'Banner hidden because consent cookie is already set. Test in incognito or add ?rogiq_reset_consent=1 to the URL.'
                );
                releaseDeferredTracking();
                logAfterChoice('after');
                return;
            }

            if (hasDeniedCookie()) {
                hideBanner();
                console.info(
                    LOG_PREFIX,
                    'Banner hidden because analytics cookies were denied. Test in incognito or add ?rogiq_reset_consent=1 to the URL.'
                );
                return;
            }
        }

        showBanner();
        scheduleBeforeConsentLog();
    }

    function bindConsentHandlers() {
        document.addEventListener('click', function (event) {
            var target = event.target;
            if (!target || typeof target.closest !== 'function') {
                return;
            }

            if (target.closest('#rogiq-consent-accept, .rogiq-consent-bar__accept')) {
                event.preventDefault();
                acceptAll();
                return;
            }

            if (target.closest('#rogiq-consent-deny, .rogiq-consent-bar__deny')) {
                event.preventDefault();
                denyAll();
            }
        });
    }

    bindConsentHandlers();

    if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', init);
    } else {
        init();
    }
})();

</script>
		<header data-elementor-type="header" data-elementor-id="39748" class="elementor elementor-39748 elementor-location-header" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-5f15d477 elementor-section-content-middle elementor-section-stretched ang-section-padding-no elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="5f15d477" data-element_type="section" data-e-type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;animation&quot;:&quot;none&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;4e34883&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;sticky&quot;:&quot;top&quot;,&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky_effects_offset&quot;:80,&quot;_ha_eqh_enable&quot;:false,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-no">
					<header class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-106a17d0 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="106a17d0" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a032318 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-html" data-id="a032318" data-element_type="widget" data-e-type="widget" data-widget_type="html.default">
				<div class="elementor-widget-container">
					<a class="skip-maincontent" href="#maincontent">Skip to main content</a>				</div>
				</div>
				<div class="elementor-element elementor-element-7b10820d elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-theme-site-logo elementor-widget-image" data-id="7b10820d" data-element_type="widget" data-e-type="widget" data-widget_type="theme-site-logo.default">
				<div class="elementor-widget-container">
											<a href="https://www.doherty.com">
			<picture class="attachment-full size-full wp-image-41486">
<source type="image/webp" srcset="https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK.png.webp 1200w, https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK-300x73.png.webp 300w, https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK-1024x248.png.webp 1024w, https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK-768x186.png.webp 768w" sizes="(max-width: 1200px) 100vw, 1200px"/>
<img width="1200" height="291" src="https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK.png" alt="Doherty Staffing Solutions Logo" srcset="https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK.png 1200w, https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK-300x73.png 300w, https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK-1024x248.png 1024w, https://www.doherty.com/wp-content/uploads/2020/03/StaffingSolutions-DohertyLogo-300dpi-CMYK-768x186.png 768w" sizes="(max-width: 1200px) 100vw, 1200px"/>
</picture>
				</a>
											</div>
				</div>
					</div>
		</header>
				<nav class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-19c9fe17 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="19c9fe17" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-339a0ee elementor-nav-menu__align-end elementor-hidden-tablet elementor-hidden-mobile elementor-widget__width-auto elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger ha-has-bg-overlay elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-nav-menu" data-id="339a0ee" data-element_type="widget" data-e-type="widget" data-settings="{&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;&quot;},&quot;layout&quot;:&quot;horizontal&quot;,&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-background e--animation-sweep-down">
				<ul id="menu-1-339a0ee" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-40212"><a target="_blank" href="https://jobs.doherty.com/" class="elementor-item">Find Work</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-40213"><a target="_blank" href="https://doherty.myavionte.com/staff/login.aspx" class="elementor-item">Login</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42083"><a href="https://www.doherty.com/temporary-staffing/map/" class="elementor-item">Our Offices</a></li>
</ul>			</nav>
					<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
			<i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i>		</div>
					<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-339a0ee" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-40212"><a target="_blank" href="https://jobs.doherty.com/" class="elementor-item" tabindex="-1">Find Work</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-40213"><a target="_blank" href="https://doherty.myavionte.com/staff/login.aspx" class="elementor-item" tabindex="-1">Login</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42083"><a href="https://www.doherty.com/temporary-staffing/map/" class="elementor-item" tabindex="-1">Our Offices</a></li>
</ul>			</nav>
						</div>
				</div>
				<div class="elementor-element elementor-element-cb88add elementor-widget__width-auto elementor-hidden-phone elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-jet-search" data-id="cb88add" data-element_type="widget" data-e-type="widget" data-widget_type="jet-search.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-search jet-blocks"><div class="jet-search"><div class="jet-search__popup jet-search__popup--full-screen jet-search__popup--move-up-effect">
	<div class="jet-search__popup-content"><form role="search" method="get" class="jet-search__form" action="https://www.doherty.com/">
	<label class="jet-search__label">
		<span class="screen-reader-text">Search the site &hellip;</span>
		<input type="search" class="jet-search__field"  placeholder="Search the site &hellip;" value="" name="s" aria-label="Search the site &hellip;" />
	</label>
		<button type="submit" class="jet-search__submit" aria-label="Search"><span class="jet-search__submit-icon jet-blocks-icon"><i aria-hidden="true" class="fas fa-search"></i></span><div class="jet-search__submit-label">Search</div></button>
			</form><button type="button" class="jet-search__popup-close" aria-label="Search the site &hellip;"><span class="jet-search__popup-close-icon jet-blocks-icon"><i aria-hidden="true" class="fas fa-times"></i></span></button></div>
</div>
<div class="jet-search__popup-trigger-container">
	<button type="button" class="jet-search__popup-trigger" title="Search the site &hellip;"><span class="jet-search__popup-trigger-icon jet-blocks-icon"><i aria-hidden="true" class="fas fa-search"></i></span></button>
</div></div></div>				</div>
				</div>
				<div class="elementor-element elementor-element-0c3b16f elementor-hidden-tablet elementor-hidden-mobile elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-jet-mega-menu" data-id="0c3b16f" data-element_type="widget" data-e-type="widget" data-widget_type="jet-mega-menu.default">
				<div class="elementor-widget-container">
					<div class="jet-mega-menu jet-mega-menu--layout-horizontal jet-mega-menu--sub-position-right jet-mega-menu--dropdown-layout-default jet-mega-menu--dropdown-position-right jet-mega-menu--animation-none jet-mega-menu--location-elementor    jet-mega-menu--fill-svg-icons" data-settings='{"menuId":"3","menuUniqId":"6a3350d85024d","rollUp":false,"megaAjaxLoad":false,"layout":"horizontal","subEvent":"hover","subCloseBehavior":"mouseleave","mouseLeaveDelay":500,"subTrigger":"item","subPosition":"right","megaWidthType":"container","megaWidthSelector":"","breakpoint":768,"signatures":{"template_40710":{"id":40710,"signature":"af4c3132feb8c6d22236368c7de2af29"},"template_42103":{"id":42103,"signature":"1d1e15ff869bcd9bd98777e76e7527b4"},"template_40746":{"id":40746,"signature":"72c09388076a246d756e6d74b8a625df"},"template_40747":{"id":40747,"signature":"470e5ab980e50c36f5480192fee9d82b"}}}'><div class="jet-mega-menu-toggle" role="button" tabindex="0" aria-label="Open/Close Menu"><div class="jet-mega-menu-toggle-icon jet-mega-menu-toggle-icon--default-state"><i class="fas fa-bars"></i></div><div class="jet-mega-menu-toggle-icon jet-mega-menu-toggle-icon--opened-state"><i class="fas fa-times"></i></div></div><nav class="jet-mega-menu-container" aria-label="Main nav"><ul class="jet-mega-menu-list"><li id="jet-mega-menu-item-40709" class="jet-mega-menu-item jet-mega-menu-item-type-post_type jet-mega-menu-item-object-page jet-mega-menu-item--mega jet-mega-menu-item-has-children jet-mega-menu-item--top-level jet-mega-menu-item-40709"><div class="jet-mega-menu-item__inner" role="button" tabindex="0" aria-haspopup="true" aria-expanded="false" aria-label="For Employers"><a href="https://www.doherty.com/temporary-staffing-services/" class="jet-mega-menu-item__link jet-mega-menu-item__link--top-level"><div class="jet-mega-menu-item__title"><div class="jet-mega-menu-item__label">For Employers</div></div></a><div class="jet-mega-menu-item__dropdown"><i class="fas fa-angle-down"></i></div></div><div class="jet-mega-menu-mega-container" data-template-id="40710" data-template-content="elementor" data-position="default"><div class="jet-mega-menu-mega-container__inner"><style>.elementor-40710 .elementor-element.elementor-element-ec69345 .elementor-repeater-item-39a24be.jet-parallax-section__layout .jet-parallax-section__image{background-size:auto;}.elementor-40710 .elementor-element.elementor-element-17205bb:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-40710 .elementor-element.elementor-element-17205bb > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-61f008de-bf15-4f5a-a29c-14bb41fbd955);background-position:top center;background-size:cover;}.elementor-40710 .elementor-element.elementor-element-17205bb > .elementor-element-populated >  .elementor-background-overlay{background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 38%, #003E7E96 100%);opacity:0.78;}.elementor-40710 .elementor-element.elementor-element-17205bb > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-block-end:0px;}.elementor-40710 .elementor-element.elementor-element-17205bb > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-40710 .elementor-element.elementor-element-17205bb > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-40710 .elementor-element.elementor-element-336d3f7 > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-40710 .elementor-element.elementor-element-336d3f7 .elementor-heading-title{font-size:1.1rem;line-height:1.3em;}.elementor-40710 .elementor-element.elementor-element-7b349f7 .elementor-button:hover, .elementor-40710 .elementor-element.elementor-element-7b349f7 .elementor-button:focus{background-color:var( --e-global-color-primary );color:var( --e-global-color-55fb9e77 );}.elementor-40710 .elementor-element.elementor-element-7b349f7 > .elementor-widget-container{margin:0px 32px 32px 32px;}.elementor-40710 .elementor-element.elementor-element-7b349f7 .elementor-button:hover svg, .elementor-40710 .elementor-element.elementor-element-7b349f7 .elementor-button:focus svg{fill:var( --e-global-color-55fb9e77 );}.elementor-40710 .elementor-element.elementor-element-080d5c4:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-40710 .elementor-element.elementor-element-080d5c4 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-70119745 );}.elementor-40710 .elementor-element.elementor-element-080d5c4 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-40710 .elementor-element.elementor-element-080d5c4 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-40710 .elementor-element.elementor-element-080d5c4 > .elementor-element-populated.elementor-element-populated.elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-40710 .elementor-element.elementor-element-79131a7 > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main .elementor-item.elementor-item{color:var( --e-global-color-primary );}.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main .elementor-item:hover,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main .elementor-item.elementor-item-active,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main .elementor-item.highlighted,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main .elementor-item:focus{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after{background-color:var( --e-global-color-secondary );}.elementor-40710 .elementor-element.elementor-element-79131a7 .e--pointer-framed .elementor-item:before,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .e--pointer-framed .elementor-item:after{border-color:var( --e-global-color-secondary );}.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main .elementor-item.elementor-item-active{color:var( --e-global-color-secondary );}.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:before,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:after{background-color:var( --e-global-color-secondary );}.elementor-40710 .elementor-element.elementor-element-79131a7 .e--pointer-framed .elementor-item.elementor-item-active:before,
					.elementor-40710 .elementor-element.elementor-element-79131a7 .e--pointer-framed .elementor-item.elementor-item-active:after{border-color:var( --e-global-color-secondary );}.elementor-40710 .elementor-element.elementor-element-ec69345{box-shadow:5px 5px 10px 0px rgba(0, 0, 0, 0.25);}body.elementor-page-40710{--ang-classes-border:rgba(79, 122, 233, 0.58);--ang-classes-label:#406DE1;--ang-css-border:rgba(211, 0, 0, 0.35);}@media(min-width:768px){.elementor-40710 .elementor-element.elementor-element-17205bb{width:60%;}.elementor-40710 .elementor-element.elementor-element-080d5c4{width:40%;}}</style>		<div data-elementor-type="wp-post" data-elementor-id="40710" class="elementor elementor-40710" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="jet-menu">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-ec69345 elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="ec69345" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;39a24be&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-17205bb elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="17205bb" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
					<div class="elementor-background-overlay"></div>
						<div class="elementor-element elementor-element-336d3f7 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-heading" data-id="336d3f7" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-default">Doherty customizes every staffing and recruiting solution to your unique needs. </div>				</div>
				</div>
				<div class="elementor-element elementor-element-7b349f7 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-button" data-id="7b349f7" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.doherty.com/temporary-staffing-services/hiring-solutions/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Learn More</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-080d5c4 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="080d5c4" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-79131a7 elementor-nav-menu--dropdown-none elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-nav-menu" data-id="79131a7" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
				<ul id="menu-1-79131a7" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40803"><a href="https://www.doherty.com/temporary-staffing-services/hiring-solutions/" class="elementor-item">All Hiring Solutions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44286"><a href="https://www.doherty.com/temporary-staffing-services/ai-recruiting/" class="elementor-item">Our AI Virtual Recruiter</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42061"><a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/" class="elementor-item">Focus Areas</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42571"><a href="https://www.doherty.com/temporary-staffing-services/technology-to-optimize-your-workforce/" class="elementor-item">Mobile Technology</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41710"><a href="https://www.doherty.com/temporary-staffing-services/workforce-management/" class="elementor-item">On-site Workforce Management</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41908"><a href="https://www.doherty.com/temporary-staffing-services/payrolling/" class="elementor-item">Payrolling/EOR Service</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43175"><a href="https://www.doherty.com/resources/" class="elementor-item">Resources</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40806"><a href="https://www.doherty.com/temporary-staffing-services/why-doherty/" class="elementor-item">Why Doherty?</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43201"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-item">Workforce Compliance</a></li>
</ul>			</nav>
						<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-79131a7" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40803"><a href="https://www.doherty.com/temporary-staffing-services/hiring-solutions/" class="elementor-item" tabindex="-1">All Hiring Solutions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44286"><a href="https://www.doherty.com/temporary-staffing-services/ai-recruiting/" class="elementor-item" tabindex="-1">Our AI Virtual Recruiter</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42061"><a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/" class="elementor-item" tabindex="-1">Focus Areas</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42571"><a href="https://www.doherty.com/temporary-staffing-services/technology-to-optimize-your-workforce/" class="elementor-item" tabindex="-1">Mobile Technology</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41710"><a href="https://www.doherty.com/temporary-staffing-services/workforce-management/" class="elementor-item" tabindex="-1">On-site Workforce Management</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41908"><a href="https://www.doherty.com/temporary-staffing-services/payrolling/" class="elementor-item" tabindex="-1">Payrolling/EOR Service</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43175"><a href="https://www.doherty.com/resources/" class="elementor-item" tabindex="-1">Resources</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40806"><a href="https://www.doherty.com/temporary-staffing-services/why-doherty/" class="elementor-item" tabindex="-1">Why Doherty?</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43201"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-item" tabindex="-1">Workforce Compliance</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</div></div></li>
<li id="jet-mega-menu-item-42102" class="jet-mega-menu-item jet-mega-menu-item-type-post_type jet-mega-menu-item-object-page jet-mega-menu-item--mega jet-mega-menu-item-has-children jet-mega-menu-item--top-level jet-mega-menu-item-42102"><div class="jet-mega-menu-item__inner" role="button" tabindex="0" aria-haspopup="true" aria-expanded="false" aria-label="For Job Seekers"><a href="https://www.doherty.com/job-seekers/" class="jet-mega-menu-item__link jet-mega-menu-item__link--top-level"><div class="jet-mega-menu-item__title"><div class="jet-mega-menu-item__label">For Job Seekers</div></div></a><div class="jet-mega-menu-item__dropdown"><i class="fas fa-angle-down"></i></div></div><div class="jet-mega-menu-mega-container" data-template-id="42103" data-template-content="elementor" data-position="default"><div class="jet-mega-menu-mega-container__inner"><style>.elementor-42103 .elementor-element.elementor-element-8df8fe2:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-42103 .elementor-element.elementor-element-8df8fe2 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-e5266540-700c-4c04-9603-6fe59c8f5f56);background-size:cover;}.elementor-42103 .elementor-element.elementor-element-8df8fe2 > .elementor-element-populated >  .elementor-background-overlay{background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 38%, #003E7E 100%);opacity:0.79;}.elementor-42103 .elementor-element.elementor-element-8df8fe2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-block-end:0px;}.elementor-42103 .elementor-element.elementor-element-8df8fe2 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-42103 .elementor-element.elementor-element-8df8fe2 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-42103 .elementor-element.elementor-element-b6ec8a9 > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-42103 .elementor-element.elementor-element-cf983fb:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-42103 .elementor-element.elementor-element-cf983fb > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F1F1F1;}.elementor-42103 .elementor-element.elementor-element-cf983fb > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-42103 .elementor-element.elementor-element-cf983fb > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-42103 .elementor-element.elementor-element-cf983fb > .elementor-element-populated.elementor-element-populated.elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-42103 .elementor-element.elementor-element-6b39f0d > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main .elementor-item.elementor-item{color:#003E7E;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main .elementor-item:hover,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main .elementor-item.elementor-item-active,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main .elementor-item.highlighted,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main .elementor-item:focus{color:#B32317;fill:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after{background-color:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .e--pointer-framed .elementor-item:before,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .e--pointer-framed .elementor-item:after{border-color:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main .elementor-item.elementor-item-active{color:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:before,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:after{background-color:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .e--pointer-framed .elementor-item.elementor-item-active:before,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .e--pointer-framed .elementor-item.elementor-item-active:after{border-color:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a:hover,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a:focus,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a.elementor-item-active,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a.highlighted,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-menu-toggle:hover,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-menu-toggle:focus{color:#B32317;}.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a:hover,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a:focus,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a.elementor-item-active,
					.elementor-42103 .elementor-element.elementor-element-6b39f0d .elementor-nav-menu--dropdown a.highlighted{background-color:#B32317;}body.elementor-page-42103{--ang-classes-border:rgba(79, 122, 233, 0.58);--ang-classes-label:#406DE1;--ang-css-border:rgba(211, 0, 0, 0.35);}@media(min-width:768px){.elementor-42103 .elementor-element.elementor-element-8df8fe2{width:59.332%;}.elementor-42103 .elementor-element.elementor-element-cf983fb{width:40%;}}</style>		<div data-elementor-type="wp-post" data-elementor-id="42103" class="elementor elementor-42103" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="jet-menu">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-832fe94 elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="832fe94" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-8df8fe2 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="8df8fe2" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
					<div class="elementor-background-overlay"></div>
						<div class="elementor-element elementor-element-b6ec8a9 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-heading" data-id="b6ec8a9" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-default">Whether you're looking for temporary work, a contract-to-hire job, or a permanent position, Doherty can help you find your next job opportunity. </div>				</div>
				</div>
				<div class="elementor-element elementor-element-11cb28f elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-button" data-id="11cb28f" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.doherty.com/job-seekers/" target="_blank">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Learn More</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-cf983fb elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="cf983fb" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6b39f0d elementor-nav-menu__align-start elementor-nav-menu--dropdown-none elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-nav-menu" data-id="6b39f0d" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
				<ul id="menu-1-6b39f0d" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42069"><a href="https://jobs.doherty.com" class="elementor-item">Search Jobs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43997"><a href="https://www.doherty.com/job-seekers/how-to-apply/" class="elementor-item">How to Apply</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43987"><a href="https://www.doherty.com/job-seekers/support-for-your-job-search/" class="elementor-item">Support for Your Job Search</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42118"><a href="https://www.doherty.com/job-seekers/app/" class="elementor-item">Doherty Jobs Mobile App</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42064"><a href="https://www.doherty.com/job-seekers/review-us/" class="elementor-item">Review Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42063"><a href="https://www.doherty.com/job-seekers/refer/" class="elementor-item">Refer A Friend</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42065"><a href="https://www.doherty.com/job-seekers/events/" class="elementor-item">Hiring Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44407"><a href="https://www.doherty.com/temporary-staffing-services/dohertys-ai-recruiter/" class="elementor-item">Doherty’s AI Recruiter</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42066"><a href="https://www.doherty.com/job-seekers/faqs/" class="elementor-item">Frequently Asked Questions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42067"><a href="https://www.doherty.com/job-seekers/employee-benefits/" class="elementor-item">Employee Benefits and Perks</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43167"><a href="https://www.doherty.com/resources/job-seekers/" class="elementor-item">Resources</a></li>
</ul>			</nav>
						<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-6b39f0d" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42069"><a href="https://jobs.doherty.com" class="elementor-item" tabindex="-1">Search Jobs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43997"><a href="https://www.doherty.com/job-seekers/how-to-apply/" class="elementor-item" tabindex="-1">How to Apply</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43987"><a href="https://www.doherty.com/job-seekers/support-for-your-job-search/" class="elementor-item" tabindex="-1">Support for Your Job Search</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42118"><a href="https://www.doherty.com/job-seekers/app/" class="elementor-item" tabindex="-1">Doherty Jobs Mobile App</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42064"><a href="https://www.doherty.com/job-seekers/review-us/" class="elementor-item" tabindex="-1">Review Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42063"><a href="https://www.doherty.com/job-seekers/refer/" class="elementor-item" tabindex="-1">Refer A Friend</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42065"><a href="https://www.doherty.com/job-seekers/events/" class="elementor-item" tabindex="-1">Hiring Events</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44407"><a href="https://www.doherty.com/temporary-staffing-services/dohertys-ai-recruiter/" class="elementor-item" tabindex="-1">Doherty’s AI Recruiter</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42066"><a href="https://www.doherty.com/job-seekers/faqs/" class="elementor-item" tabindex="-1">Frequently Asked Questions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42067"><a href="https://www.doherty.com/job-seekers/employee-benefits/" class="elementor-item" tabindex="-1">Employee Benefits and Perks</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43167"><a href="https://www.doherty.com/resources/job-seekers/" class="elementor-item" tabindex="-1">Resources</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</div></div></li>
<li id="jet-mega-menu-item-40742" class="jet-mega-menu-item jet-mega-menu-item-type-post_type jet-mega-menu-item-object-page jet-mega-menu-item--mega jet-mega-menu-item-has-children jet-mega-menu-item--top-level jet-mega-menu-item-40742"><div class="jet-mega-menu-item__inner" role="button" tabindex="0" aria-haspopup="true" aria-expanded="false" aria-label="About"><a href="https://www.doherty.com/talent-acquisition-services/" class="jet-mega-menu-item__link jet-mega-menu-item__link--top-level"><div class="jet-mega-menu-item__title"><div class="jet-mega-menu-item__label">About</div></div></a><div class="jet-mega-menu-item__dropdown"><i class="fas fa-angle-down"></i></div></div><div class="jet-mega-menu-mega-container" data-template-id="40746" data-template-content="elementor" data-position="default"><div class="jet-mega-menu-mega-container__inner"><style>.elementor-40746 .elementor-element.elementor-element-177cf157 .elementor-repeater-item-39a24be.jet-parallax-section__layout .jet-parallax-section__image{background-size:auto;}.elementor-40746 .elementor-element.elementor-element-21dbc3f2:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-40746 .elementor-element.elementor-element-21dbc3f2 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-7980593b-3fd9-442a-961e-8fa697f22910);background-position:top center;background-size:cover;}.elementor-40746 .elementor-element.elementor-element-21dbc3f2 > .elementor-element-populated >  .elementor-background-overlay{background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 38%, #003E7E96 100%);opacity:0.78;}.elementor-40746 .elementor-element.elementor-element-21dbc3f2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-block-end:0px;}.elementor-40746 .elementor-element.elementor-element-21dbc3f2 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-40746 .elementor-element.elementor-element-21dbc3f2 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-40746 .elementor-element.elementor-element-7b7d6b6a > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-40746 .elementor-element.elementor-element-7b7d6b6a .elementor-heading-title{font-size:1.1rem;line-height:1.3em;}.elementor-40746 .elementor-element.elementor-element-3d4340b9 .elementor-button:hover, .elementor-40746 .elementor-element.elementor-element-3d4340b9 .elementor-button:focus{background-color:var( --e-global-color-primary );color:var( --e-global-color-55fb9e77 );}.elementor-40746 .elementor-element.elementor-element-3d4340b9 > .elementor-widget-container{margin:0px 32px 32px 32px;}.elementor-40746 .elementor-element.elementor-element-3d4340b9 .elementor-button:hover svg, .elementor-40746 .elementor-element.elementor-element-3d4340b9 .elementor-button:focus svg{fill:var( --e-global-color-55fb9e77 );}.elementor-40746 .elementor-element.elementor-element-4a49603:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-40746 .elementor-element.elementor-element-4a49603 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-70119745 );}.elementor-40746 .elementor-element.elementor-element-4a49603 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-40746 .elementor-element.elementor-element-4a49603 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-40746 .elementor-element.elementor-element-4a49603 > .elementor-element-populated.elementor-element-populated.elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-40746 .elementor-element.elementor-element-2f97c3bc > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main .elementor-item.elementor-item{color:var( --e-global-color-primary );}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main .elementor-item:hover,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main .elementor-item.elementor-item-active,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main .elementor-item.highlighted,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main .elementor-item:focus{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after{background-color:var( --e-global-color-secondary );}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .e--pointer-framed .elementor-item:before,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .e--pointer-framed .elementor-item:after{border-color:var( --e-global-color-secondary );}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main .elementor-item.elementor-item-active{color:var( --e-global-color-secondary );}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:before,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:after{background-color:var( --e-global-color-secondary );}.elementor-40746 .elementor-element.elementor-element-2f97c3bc .e--pointer-framed .elementor-item.elementor-item-active:before,
					.elementor-40746 .elementor-element.elementor-element-2f97c3bc .e--pointer-framed .elementor-item.elementor-item-active:after{border-color:var( --e-global-color-secondary );}.elementor-40746 .elementor-element.elementor-element-177cf157{box-shadow:5px 5px 10px 0px rgba(0, 0, 0, 0.25);}body.elementor-page-40746{--ang-classes-border:rgba(79, 122, 233, 0.58);--ang-classes-label:#406DE1;--ang-css-border:rgba(211, 0, 0, 0.35);}@media(min-width:768px){.elementor-40746 .elementor-element.elementor-element-21dbc3f2{width:60%;}.elementor-40746 .elementor-element.elementor-element-4a49603{width:40%;}}</style>		<div data-elementor-type="wp-post" data-elementor-id="40746" class="elementor elementor-40746" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="jet-menu">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-177cf157 elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="177cf157" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;39a24be&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-21dbc3f2 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="21dbc3f2" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
					<div class="elementor-background-overlay"></div>
						<div class="elementor-element elementor-element-7b7d6b6a elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-heading" data-id="7b7d6b6a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-default">Learn more about what makes us the Midwest’s trusted staffing and recruiting agency. </div>				</div>
				</div>
				<div class="elementor-element elementor-element-3d4340b9 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-button" data-id="3d4340b9" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.doherty.com/talent-acquisition-services/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Learn More</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4a49603 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="4a49603" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-2f97c3bc elementor-nav-menu--dropdown-none elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-nav-menu" data-id="2f97c3bc" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
				<ul id="menu-1-2f97c3bc" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41190"><a href="https://www.doherty.com/talent-acquisition-services/diversity-inclusion-commitment/" class="elementor-item">Diversity &#038; Inclusion Commitment</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41475"><a href="https://www.doherty.com/talent-acquisition-services/doherty-family-foundation/" class="elementor-item">Family Foundation</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40853"><a href="https://www.doherty.com/talent-acquisition-services/mission-values/" class="elementor-item">Mission &#038; Values</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41186"><a href="https://www.doherty.com/talent-acquisition-services/the-doherty-story/" class="elementor-item">Our Story</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42318"><a href="https://www.doherty.com/talent-acquisition-services/testimonials/" class="elementor-item">Testimonials</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40856"><a href="https://www.doherty.com/talent-acquisition-services/woman-owned/" class="elementor-item">Woman Owned</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40857"><a href="https://www.doherty.com/talent-acquisition-services/work-at-doherty/" class="elementor-item">Work At Doherty</a></li>
</ul>			</nav>
						<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-2f97c3bc" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41190"><a href="https://www.doherty.com/talent-acquisition-services/diversity-inclusion-commitment/" class="elementor-item" tabindex="-1">Diversity &#038; Inclusion Commitment</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41475"><a href="https://www.doherty.com/talent-acquisition-services/doherty-family-foundation/" class="elementor-item" tabindex="-1">Family Foundation</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40853"><a href="https://www.doherty.com/talent-acquisition-services/mission-values/" class="elementor-item" tabindex="-1">Mission &#038; Values</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41186"><a href="https://www.doherty.com/talent-acquisition-services/the-doherty-story/" class="elementor-item" tabindex="-1">Our Story</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42318"><a href="https://www.doherty.com/talent-acquisition-services/testimonials/" class="elementor-item" tabindex="-1">Testimonials</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40856"><a href="https://www.doherty.com/talent-acquisition-services/woman-owned/" class="elementor-item" tabindex="-1">Woman Owned</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40857"><a href="https://www.doherty.com/talent-acquisition-services/work-at-doherty/" class="elementor-item" tabindex="-1">Work At Doherty</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</div></div></li>
<li id="jet-mega-menu-item-40741" class="jet-mega-menu-item jet-mega-menu-item-type-post_type jet-mega-menu-item-object-page jet-mega-menu-item--mega jet-mega-menu-item-has-children jet-mega-menu-item--top-level jet-mega-menu-item-40741"><div class="jet-mega-menu-item__inner" role="button" tabindex="0" aria-haspopup="true" aria-expanded="false" aria-label="Resources"><a href="https://www.doherty.com/resources/" class="jet-mega-menu-item__link jet-mega-menu-item__link--top-level"><div class="jet-mega-menu-item__title"><div class="jet-mega-menu-item__label">Resources</div></div></a><div class="jet-mega-menu-item__dropdown"><i class="fas fa-angle-down"></i></div></div><div class="jet-mega-menu-mega-container" data-template-id="40747" data-template-content="elementor" data-position="default"><div class="jet-mega-menu-mega-container__inner"><style>.elementor-40747 .elementor-element.elementor-element-1041c757 .elementor-repeater-item-39a24be.jet-parallax-section__layout .jet-parallax-section__image{background-size:auto;}.elementor-40747 .elementor-element.elementor-element-246f64b2:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-40747 .elementor-element.elementor-element-246f64b2 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:var(--wpr-bg-870478bd-d744-402e-b76f-5b3d191f1ff5);background-position:top center;background-size:cover;}.elementor-40747 .elementor-element.elementor-element-246f64b2 > .elementor-element-populated >  .elementor-background-overlay{background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 38%, #003E7E96 100%);opacity:0.78;}.elementor-40747 .elementor-element.elementor-element-246f64b2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-block-end:0px;}.elementor-40747 .elementor-element.elementor-element-246f64b2 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-40747 .elementor-element.elementor-element-246f64b2 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-40747 .elementor-element.elementor-element-4daad505 > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-40747 .elementor-element.elementor-element-4daad505 .elementor-heading-title{font-size:1.1rem;line-height:1.3em;}.elementor-40747 .elementor-element.elementor-element-291224ec > .elementor-widget-container{margin:0px 32px 32px 32px;}.elementor-40747 .elementor-element.elementor-element-560ff21c:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-40747 .elementor-element.elementor-element-560ff21c > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-70119745 );}.elementor-40747 .elementor-element.elementor-element-560ff21c > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-40747 .elementor-element.elementor-element-560ff21c > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-40747 .elementor-element.elementor-element-560ff21c > .elementor-element-populated.elementor-element-populated.elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-40747 .elementor-element.elementor-element-36f1a70 > .elementor-widget-container{margin:32px 32px 32px 32px;}.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main .elementor-item.elementor-item{color:var( --e-global-color-primary );}.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main .elementor-item:hover,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main .elementor-item.elementor-item-active,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main .elementor-item.highlighted,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main .elementor-item:focus{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after{background-color:var( --e-global-color-secondary );}.elementor-40747 .elementor-element.elementor-element-36f1a70 .e--pointer-framed .elementor-item:before,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .e--pointer-framed .elementor-item:after{border-color:var( --e-global-color-secondary );}.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main .elementor-item.elementor-item-active{color:var( --e-global-color-secondary );}.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:before,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item.elementor-item-active:after{background-color:var( --e-global-color-secondary );}.elementor-40747 .elementor-element.elementor-element-36f1a70 .e--pointer-framed .elementor-item.elementor-item-active:before,
					.elementor-40747 .elementor-element.elementor-element-36f1a70 .e--pointer-framed .elementor-item.elementor-item-active:after{border-color:var( --e-global-color-secondary );}.elementor-40747 .elementor-element.elementor-element-1041c757{box-shadow:5px 5px 10px 0px rgba(0, 0, 0, 0.25);}body.elementor-page-40747{--ang-classes-border:rgba(79, 122, 233, 0.58);--ang-classes-label:#406DE1;--ang-css-border:rgba(211, 0, 0, 0.35);}@media(min-width:768px){.elementor-40747 .elementor-element.elementor-element-246f64b2{width:60%;}.elementor-40747 .elementor-element.elementor-element-560ff21c{width:40%;}}</style>		<div data-elementor-type="wp-post" data-elementor-id="40747" class="elementor elementor-40747" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="jet-menu">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-1041c757 elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="1041c757" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;39a24be&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-246f64b2 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="246f64b2" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
					<div class="elementor-background-overlay"></div>
						<div class="elementor-element elementor-element-4daad505 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-heading" data-id="4daad505" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-default">Information for employers about working with Doherty Staffing Solutions.  </div>				</div>
				</div>
				<div class="elementor-element elementor-element-291224ec elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-button" data-id="291224ec" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.doherty.com/resources/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Learn More</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-560ff21c elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="560ff21c" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-36f1a70 elementor-nav-menu--dropdown-none elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-nav-menu" data-id="36f1a70" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-underline e--animation-fade">
				<ul id="menu-1-36f1a70" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41184"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/" class="elementor-item">Case Studies</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42319"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/podcast/" class="elementor-item">Deep Dive Podcast</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40863"><a href="https://www.doherty.com/resources/discover-doherty/" class="elementor-item">eMagazines</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41213"><a href="https://www.doherty.com/resources/employment-income-verification/" class="elementor-item">Employment &#038; Income Verification</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43607"><a href="https://www.doherty.com/resources/fundamentalsfoundry/" class="elementor-item">Fundamentals Foundry</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42915"><a href="https://www.doherty.com/resources/wage-guides/" class="elementor-item">Wage Guides</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42261"><a href="https://www.doherty.com/resources/webinars/" class="elementor-item">Webinars</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43073"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-item">Workforce Compliance</a></li>
</ul>			</nav>
						<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-36f1a70" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41184"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/" class="elementor-item" tabindex="-1">Case Studies</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42319"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/podcast/" class="elementor-item" tabindex="-1">Deep Dive Podcast</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-40863"><a href="https://www.doherty.com/resources/discover-doherty/" class="elementor-item" tabindex="-1">eMagazines</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41213"><a href="https://www.doherty.com/resources/employment-income-verification/" class="elementor-item" tabindex="-1">Employment &#038; Income Verification</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43607"><a href="https://www.doherty.com/resources/fundamentalsfoundry/" class="elementor-item" tabindex="-1">Fundamentals Foundry</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42915"><a href="https://www.doherty.com/resources/wage-guides/" class="elementor-item" tabindex="-1">Wage Guides</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42261"><a href="https://www.doherty.com/resources/webinars/" class="elementor-item" tabindex="-1">Webinars</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43073"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-item" tabindex="-1">Workforce Compliance</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		</div></div></li>
<li id="jet-mega-menu-item-40743" class="jet-mega-menu-item jet-mega-menu-item-type-post_type jet-mega-menu-item-object-page jet-mega-menu-item--default jet-mega-menu-item--top-level jet-mega-menu-item-40743"><div class="jet-mega-menu-item__inner"><a href="https://www.doherty.com/our-blog/" class="jet-mega-menu-item__link jet-mega-menu-item__link--top-level"><div class="jet-mega-menu-item__title"><div class="jet-mega-menu-item__label">Blog</div></div></a></div></li>
<li id="jet-mega-menu-item-40732" class="jet-mega-menu-item jet-mega-menu-item-type-post_type jet-mega-menu-item-object-page jet-mega-menu-item--default jet-mega-menu-item--top-level jet-mega-menu-item-40732"><div class="jet-mega-menu-item__inner"><a href="https://www.doherty.com/temporary-staffing/" class="jet-mega-menu-item__link jet-mega-menu-item__link--top-level"><div class="jet-mega-menu-item__title"><div class="jet-mega-menu-item__label">Contact</div></div></a></div></li>
</ul></nav></div>				</div>
				</div>
				<div class="elementor-element elementor-element-92553dc elementor-nav-menu__align-end elementor-widget__width-auto elementor-nav-menu--stretch elementor-hidden-desktop elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger ha-has-bg-overlay elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-nav-menu" data-id="92553dc" data-element_type="widget" data-e-type="widget" data-settings="{&quot;full_width&quot;:&quot;stretch&quot;,&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-background e--animation-sweep-down">
				<ul id="menu-1-92553dc" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-41589"><a href="https://www.doherty.com/temporary-staffing-services/" class="elementor-item">For Employers</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41592"><a href="https://www.doherty.com/temporary-staffing-services/hiring-solutions/" class="elementor-sub-item">All Hiring Solutions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41600"><a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/" class="elementor-sub-item">Focus Areas</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43203"><a href="https://www.doherty.com/temporary-staffing-services/technology-to-optimize-your-workforce/" class="elementor-sub-item">Mobile Technology</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41747"><a href="https://www.doherty.com/temporary-staffing-services/workforce-management/" class="elementor-sub-item">On-site Workforce Management</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41909"><a href="https://www.doherty.com/temporary-staffing-services/payrolling/" class="elementor-sub-item">Payrolling/EOR Service</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43202"><a href="https://www.doherty.com/resources/" class="elementor-sub-item">Resources</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41596"><a href="https://www.doherty.com/temporary-staffing-services/why-doherty/" class="elementor-sub-item">Why Doherty?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43204"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-sub-item">Workforce Compliance</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-42073"><a href="https://www.doherty.com/job-seekers/" class="elementor-item">For Job Seekers</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42081"><a href="https://jobs.doherty.com" class="elementor-sub-item">Search Jobs</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43205"><a href="https://www.doherty.com/job-seekers/app/" class="elementor-sub-item">Doherty Jobs Mobile App</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42074"><a href="https://www.doherty.com/job-seekers/review-us/" class="elementor-sub-item">Review Us</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42075"><a href="https://www.doherty.com/job-seekers/refer/" class="elementor-sub-item">Refer A Friend</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42076"><a href="https://www.doherty.com/job-seekers/events/" class="elementor-sub-item">Hiring Events</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42078"><a href="https://www.doherty.com/job-seekers/faqs/" class="elementor-sub-item">Frequently Asked Questions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42079"><a href="https://www.doherty.com/job-seekers/employee-benefits/" class="elementor-sub-item">Employee Benefits and Perks</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42080"><a href="https://www.doherty.com/resources/job-seekers/" class="elementor-sub-item">Resources</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-41604"><a href="https://www.doherty.com/talent-acquisition-services/" class="elementor-item">About</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41613"><a href="https://www.doherty.com/talent-acquisition-services/diversity-inclusion-commitment/" class="elementor-sub-item">Diversity &#038; Inclusion Commitment</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41612"><a href="https://www.doherty.com/talent-acquisition-services/doherty-family-foundation/" class="elementor-sub-item">Family Foundation</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41606"><a href="https://www.doherty.com/talent-acquisition-services/mission-values/" class="elementor-sub-item">Mission &#038; Values</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41609"><a href="https://www.doherty.com/talent-acquisition-services/the-doherty-story/" class="elementor-sub-item">Our Story</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41608"><a href="https://www.doherty.com/talent-acquisition-services/testimonials/" class="elementor-sub-item">Testimonials</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41610"><a href="https://www.doherty.com/talent-acquisition-services/woman-owned/" class="elementor-sub-item">Woman Owned</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41611"><a href="https://www.doherty.com/talent-acquisition-services/work-at-doherty/" class="elementor-sub-item">Work At Doherty</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-41614"><a href="https://www.doherty.com/resources/" class="elementor-item">Resources</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41621"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/" class="elementor-sub-item">Case Studies</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42317"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/podcast/" class="elementor-sub-item">Deep Dive Podcast</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41615"><a href="https://www.doherty.com/resources/discover-doherty/" class="elementor-sub-item">eMagazines</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41620"><a href="https://www.doherty.com/resources/employment-income-verification/" class="elementor-sub-item">Employment &#038; Income Verification</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43606"><a href="https://www.doherty.com/resources/fundamentalsfoundry/" class="elementor-sub-item">Learning Center</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43206"><a href="https://www.doherty.com/resources/wage-guides/" class="elementor-sub-item">Wage Guides</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42262"><a href="https://www.doherty.com/resources/webinars/" class="elementor-sub-item">Webinars</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43207"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-sub-item">Workforce Compliance</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42084"><a href="https://www.doherty.com/temporary-staffing/map/" class="elementor-item">Our Offices</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41624"><a href="https://www.doherty.com/temporary-staffing/" class="elementor-item">Contact</a></li>
</ul>			</nav>
					<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
			<i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i>		</div>
					<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-92553dc" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-41589"><a href="https://www.doherty.com/temporary-staffing-services/" class="elementor-item" tabindex="-1">For Employers</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41592"><a href="https://www.doherty.com/temporary-staffing-services/hiring-solutions/" class="elementor-sub-item" tabindex="-1">All Hiring Solutions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41600"><a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/" class="elementor-sub-item" tabindex="-1">Focus Areas</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43203"><a href="https://www.doherty.com/temporary-staffing-services/technology-to-optimize-your-workforce/" class="elementor-sub-item" tabindex="-1">Mobile Technology</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41747"><a href="https://www.doherty.com/temporary-staffing-services/workforce-management/" class="elementor-sub-item" tabindex="-1">On-site Workforce Management</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41909"><a href="https://www.doherty.com/temporary-staffing-services/payrolling/" class="elementor-sub-item" tabindex="-1">Payrolling/EOR Service</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43202"><a href="https://www.doherty.com/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41596"><a href="https://www.doherty.com/temporary-staffing-services/why-doherty/" class="elementor-sub-item" tabindex="-1">Why Doherty?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43204"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-sub-item" tabindex="-1">Workforce Compliance</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-42073"><a href="https://www.doherty.com/job-seekers/" class="elementor-item" tabindex="-1">For Job Seekers</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-42081"><a href="https://jobs.doherty.com" class="elementor-sub-item" tabindex="-1">Search Jobs</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43205"><a href="https://www.doherty.com/job-seekers/app/" class="elementor-sub-item" tabindex="-1">Doherty Jobs Mobile App</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42074"><a href="https://www.doherty.com/job-seekers/review-us/" class="elementor-sub-item" tabindex="-1">Review Us</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42075"><a href="https://www.doherty.com/job-seekers/refer/" class="elementor-sub-item" tabindex="-1">Refer A Friend</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42076"><a href="https://www.doherty.com/job-seekers/events/" class="elementor-sub-item" tabindex="-1">Hiring Events</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42078"><a href="https://www.doherty.com/job-seekers/faqs/" class="elementor-sub-item" tabindex="-1">Frequently Asked Questions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42079"><a href="https://www.doherty.com/job-seekers/employee-benefits/" class="elementor-sub-item" tabindex="-1">Employee Benefits and Perks</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42080"><a href="https://www.doherty.com/resources/job-seekers/" class="elementor-sub-item" tabindex="-1">Resources</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-41604"><a href="https://www.doherty.com/talent-acquisition-services/" class="elementor-item" tabindex="-1">About</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41613"><a href="https://www.doherty.com/talent-acquisition-services/diversity-inclusion-commitment/" class="elementor-sub-item" tabindex="-1">Diversity &#038; Inclusion Commitment</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41612"><a href="https://www.doherty.com/talent-acquisition-services/doherty-family-foundation/" class="elementor-sub-item" tabindex="-1">Family Foundation</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41606"><a href="https://www.doherty.com/talent-acquisition-services/mission-values/" class="elementor-sub-item" tabindex="-1">Mission &#038; Values</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41609"><a href="https://www.doherty.com/talent-acquisition-services/the-doherty-story/" class="elementor-sub-item" tabindex="-1">Our Story</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41608"><a href="https://www.doherty.com/talent-acquisition-services/testimonials/" class="elementor-sub-item" tabindex="-1">Testimonials</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41610"><a href="https://www.doherty.com/talent-acquisition-services/woman-owned/" class="elementor-sub-item" tabindex="-1">Woman Owned</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41611"><a href="https://www.doherty.com/talent-acquisition-services/work-at-doherty/" class="elementor-sub-item" tabindex="-1">Work At Doherty</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-41614"><a href="https://www.doherty.com/resources/" class="elementor-item" tabindex="-1">Resources</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41621"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/" class="elementor-sub-item" tabindex="-1">Case Studies</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42317"><a href="https://www.doherty.com/talent-acquisition-services/case-studies/podcast/" class="elementor-sub-item" tabindex="-1">Deep Dive Podcast</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41615"><a href="https://www.doherty.com/resources/discover-doherty/" class="elementor-sub-item" tabindex="-1">eMagazines</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41620"><a href="https://www.doherty.com/resources/employment-income-verification/" class="elementor-sub-item" tabindex="-1">Employment &#038; Income Verification</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43606"><a href="https://www.doherty.com/resources/fundamentalsfoundry/" class="elementor-sub-item" tabindex="-1">Learning Center</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43206"><a href="https://www.doherty.com/resources/wage-guides/" class="elementor-sub-item" tabindex="-1">Wage Guides</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42262"><a href="https://www.doherty.com/resources/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43207"><a href="https://www.doherty.com/resources/workforce-compliance/" class="elementor-sub-item" tabindex="-1">Workforce Compliance</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42084"><a href="https://www.doherty.com/temporary-staffing/map/" class="elementor-item" tabindex="-1">Our Offices</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41624"><a href="https://www.doherty.com/temporary-staffing/" class="elementor-item" tabindex="-1">Contact</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</nav>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-5df93bf elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="5df93bf" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-34222e8 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="34222e8" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
							</div>
		</div>
					</div>
		</section>
				</header>
				<div data-elementor-type="single" data-elementor-id="40483" class="elementor elementor-40483 elementor-location-single" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-4cd51b41 elementor-section-stretched elementor-section-height-full ang-section-padding-no elementor-section-boxed elementor-section-height-default elementor-section-items-middle elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="4cd51b41" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;67e5b05&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<header class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4975970e elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="4975970e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5c964132 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-invisible elementor-widget elementor-widget-heading" data-id="5c964132" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;slideInRight&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">404 error</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-3640b12 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-heading" data-id="3640b12" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;none&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Doggone it, someone dropped the ball. </h2>				</div>
				</div>
				<div class="elementor-element elementor-element-0148dbc elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-text-editor" data-id="0148dbc" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<h5><span style="color: #ffffff;">We&#8217;re working on it. In the meantime&#8230;</span></h5>								</div>
				</div>
					</div>
		</header>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5240011 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="5240011" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-69da1b5 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-jet-search" data-id="69da1b5" data-element_type="widget" data-e-type="widget" data-widget_type="jet-search.default">
				<div class="elementor-widget-container">
					<div class="elementor-jet-search jet-blocks"><div class="jet-search"><form role="search" method="get" class="jet-search__form" action="https://www.doherty.com/">
	<label class="jet-search__label">
		<span class="screen-reader-text">Search Site</span>
		<input type="search" class="jet-search__field"  placeholder="Search Site" value="" name="s" aria-label="Search Site" />
	</label>
		<button type="submit" class="jet-search__submit" aria-label="submit search"><span class="jet-search__submit-icon jet-blocks-icon"><i aria-hidden="true" class="fas fa-search"></i></span></button>
			</form></div></div>				</div>
				</div>
				<div class="elementor-element elementor-element-dd68c98 elementor-align-center elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-button" data-id="dd68c98" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="https://www.doherty.com/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Go to Homepage</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-473e6fe elementor-align-center elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-button" data-id="473e6fe" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="https://www.doherty.jobs">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Looking for a Job?</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
				<footer data-elementor-type="footer" data-elementor-id="39751" class="elementor elementor-39751 elementor-location-footer" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-cdf5d6a elementor-section-stretched ang-section-padding-no elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="cdf5d6a" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;919d600&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<nav class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-36bcf34 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="36bcf34" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-2589a87 elementor-align-start elementor-icon-list--layout-inline elementor-mobile-align-start footer-menu elementor-list-item-link-full_width elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-list" data-id="2589a87" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/">

											<span class="elementor-icon-list-text">FOR EMPLOYERS</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/ai-recruiting/">

											<span class="elementor-icon-list-text">AI Recruiting</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/hiring-solutions/">

											<span class="elementor-icon-list-text">All Hiring Solutions</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/">

											<span class="elementor-icon-list-text">Focus Areas</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/technology-to-optimize-your-workforce/">

											<span class="elementor-icon-list-text">Mobile Technology</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/workforce-management/">

											<span class="elementor-icon-list-text">On-site Management</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/payrolling/">

											<span class="elementor-icon-list-text">Payrolling/EOR Services</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing-services/why-doherty/">

											<span class="elementor-icon-list-text">Why Doherty?</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/workforce-compliance/">

											<span class="elementor-icon-list-text">Workforce Compliance</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
				<div class="elementor-element elementor-element-55d3ad0 elementor-align-start elementor-icon-list--layout-inline elementor-mobile-align-start footer-menu elementor-list-item-link-full_width elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-list" data-id="55d3ad0" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/">

											<span class="elementor-icon-list-text">FOR JOB SEEKERS</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://jobs.doherty.com">

											<span class="elementor-icon-list-text">Search Jobs</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/how-to-apply/">

											<span class="elementor-icon-list-text">How to Apply</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/app/">

											<span class="elementor-icon-list-text">Mobile App</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/review-us/">

											<span class="elementor-icon-list-text">Review Us</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/refer/">

											<span class="elementor-icon-list-text">Refer Friends</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/events/">

											<span class="elementor-icon-list-text">Hiring Events</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/faqs/">

											<span class="elementor-icon-list-text">FAQs</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/job-seekers/employee-benefits/">

											<span class="elementor-icon-list-text">Benefits &amp; Perks</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/job-seekers/">

											<span class="elementor-icon-list-text">Resources</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
				<div class="elementor-element elementor-element-a73eb31 elementor-align-start elementor-icon-list--layout-inline elementor-mobile-align-start footer-menu elementor-list-item-link-full_width elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-list" data-id="a73eb31" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/">

											<span class="elementor-icon-list-text">ABOUT</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/mission-values/diversity-inclusion-commitment/">

											<span class="elementor-icon-list-text">Diversity &amp; Inclusion</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/doherty-family-foundation/">

											<span class="elementor-icon-list-text">Family Foundation</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/mission-values/">

											<span class="elementor-icon-list-text">Mission &amp; Values</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/woman-owned/">

											<span class="elementor-icon-list-text">Woman Owned</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/the-doherty-story/">

											<span class="elementor-icon-list-text">Our Family Story</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/work-at-doherty/">

											<span class="elementor-icon-list-text">Join Our Team</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/testimonials/">

											<span class="elementor-icon-list-text">Testimonials</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
				<div class="elementor-element elementor-element-fdb3af3 elementor-align-start elementor-icon-list--layout-inline elementor-mobile-align-start footer-menu elementor-list-item-link-full_width elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-list" data-id="fdb3af3" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/">

											<span class="elementor-icon-list-text">RESOURCES</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/case-studies/">

											<span class="elementor-icon-list-text">Case Studies</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/discover-doherty/" target="_blank">

											<span class="elementor-icon-list-text">eMagazines</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/talent-acquisition-services/case-studies/podcast/" target="_blank">

											<span class="elementor-icon-list-text">Deep Dive Podcast</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/employment-income-verification/">

											<span class="elementor-icon-list-text">Employment Verification</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/wage-guides/">

											<span class="elementor-icon-list-text">Wage Guides</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/webinars/">

											<span class="elementor-icon-list-text">Webinars</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/resources/workforce-compliance/">

											<span class="elementor-icon-list-text">Workforce Compliance</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
				<div class="elementor-element elementor-element-16da5bb elementor-align-start elementor-icon-list--layout-inline elementor-mobile-align-start footer-menu elementor-list-item-link-full_width elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-list" data-id="16da5bb" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items elementor-inline-items">
							<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/our-blog/">

											<span class="elementor-icon-list-text">BLOG</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing/">

											<span class="elementor-icon-list-text">CONTACT US</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://www.doherty.com/temporary-staffing/map/">

											<span class="elementor-icon-list-text">OFFICE MAP</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://jobs.doherty.com/index.smpl?arg=jb_apply_quick">

											<span class="elementor-icon-list-text">APPLY NOW</span>
											</a>
									</li>
								<li class="elementor-icon-list-item elementor-inline-item">
											<a href="https://doherty.myavionte.com/staff/login.aspx?">

											<span class="elementor-icon-list-text">LOGIN</span>
											</a>
									</li>
						</ul>
						</div>
				</div>
				<div class="elementor-element elementor-element-d100d06 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-spacer" data-id="d100d06" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-f083933 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-text-editor" data-id="f083933" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em><span style="color: #ffffff;">Meet our sister company, <span style="text-decoration: underline;"><a style="color: #ffffff; text-decoration: underline;" href="https://www.dahlconsulting.com/">Dahl Consulting.</a></span></span></em></p>								</div>
				</div>
					</div>
		</nav>
				<section class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-66bd994 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="66bd994" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-4ddb287 elementor-shape-square e-grid-align-left e-grid-align-mobile-left e-grid-align-tablet-left elementor-grid-0 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-social-icons" data-id="4ddb287" data-element_type="widget" data-e-type="widget" data-widget_type="social-icons.default">
				<div class="elementor-widget-container">
							<div class="elementor-social-icons-wrapper elementor-grid" role="list">
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-0a1ea4e" href="https://www.facebook.com/DohertyStaffingSolutions " target="_blank">
						<span class="elementor-screen-only">Facebook-f</span>
						<i aria-hidden="true" class="fab fa-facebook-f"></i>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-5a54d69" href="https://www.linkedin.com/company/doherty-the-employment-experts" target="_blank">
						<span class="elementor-screen-only">Linkedin-in</span>
						<i aria-hidden="true" class="fab fa-linkedin-in"></i>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-f902dea" href="https://www.instagram.com/dohertyjobs/ " target="_blank">
						<span class="elementor-screen-only">Instagram</span>
						<i aria-hidden="true" class="fab fa-instagram"></i>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-tiktok elementor-repeater-item-b06bffc" href="https://www.tiktok.com/@getajobwithdoherty" target="_blank">
						<span class="elementor-screen-only">Tiktok</span>
						<i aria-hidden="true" class="fab fa-tiktok"></i>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-x logo elementor-repeater-item-30225ae" href="https://twitter.com/dohertystaffing" target="_blank">
						<span class="elementor-screen-only">X Logo</span>
						<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 1200 1227" style="enable-background:new 0 0 1200 1227;" xml:space="preserve"> <style type="text/css"> .st0{fill:#003E7E;} </style> <path class="st0" d="M714.2,519.3L1160.9,0H1055L667.1,450.9L357.3,0H0l468.5,681.8L0,1226.4h105.9l409.6-476.2l327.2,476.2H1200 L714.2,519.3L714.2,519.3z M569.2,687.8l-47.5-67.9L144,79.7h162.6l304.8,436l47.5,67.9l396.2,566.7H892.5L569.2,687.8L569.2,687.8z "></path> </svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-pinterest elementor-repeater-item-3b11508" href="https://www.pinterest.com/dohertystaffing/ " target="_blank">
						<span class="elementor-screen-only">Pinterest</span>
						<i aria-hidden="true" class="fab fa-pinterest"></i>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-bf0f3f9" href="https://www.youtube.com/c/dohertyjobscareers" target="_blank">
						<span class="elementor-screen-only">Youtube</span>
						<i aria-hidden="true" class="fab fa-youtube"></i>					</a>
				</span>
					</div>
						</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-514bcda elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="514bcda" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;3675bf1&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-39fd4c3 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="39fd4c3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-bef1825 external_elementor-repeater-item-none_external elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-image" data-id="bef1825" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.glassdoor.com/Overview/Working-at-Doherty-The-Employment-Experts-EI_IE138406.11,41.htm " target="_blank">
							<picture class="attachment-thumbnail size-thumbnail wp-image-40893" loading="lazy">
<source type="image/webp" srcset="https://www.doherty.com/wp-content/uploads/2019/03/Glassdoor_logo-1.png.webp"/>
<img width="94" height="32" src="https://www.doherty.com/wp-content/uploads/2019/03/Glassdoor_logo-1.png" alt="Glassdoor logo" loading="lazy"/>
</picture>
								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-fb02e78 external_elementor-repeater-item-none_external elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-image" data-id="fb02e78" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.indeed.com/cmp/Doherty-Staffing-Solutions" target="_blank">
							<picture class="attachment-thumbnail size-thumbnail wp-image-40894" loading="lazy">
<source type="image/webp" srcset="https://www.doherty.com/wp-content/uploads/2019/03/Indeed_logo.png.webp"/>
<img width="88" height="25" src="https://www.doherty.com/wp-content/uploads/2019/03/Indeed_logo.png" alt="Indeed logo" loading="lazy"/>
</picture>
								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-9c161c0 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="9c161c0" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-17e1f29 external_elementor-repeater-item-none_external elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-image" data-id="17e1f29" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.google.com/search?q=doherty+staffing+edina&#038;rlz=1C1GCEB_enUS935US935&#038;oq=doherty+staffing+edina+&#038;aqs=chrome..69i57j46i175i199i512j0i512j0i22i30.4577j0j7&#038;sourceid=chrome&#038;ie=UTF-8#lrd=0x87f623ef2574ea01:0x8890d32e51d67456,1,,," target="_blank">
							<picture class="attachment-full size-full wp-image-40922" loading="lazy">
<source type="image/webp" srcset="https://www.doherty.com/wp-content/uploads/2019/03/google-reviews.png.webp"/>
<img width="125" height="52" src="https://www.doherty.com/wp-content/uploads/2019/03/google-reviews.png" alt="" loading="lazy"/>
</picture>
								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
					</div>
		</section>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-b9465ea elementor-section-height-min-height elementor-section-content-middle elementor-section-stretched ang-section-padding-no elementor-section-boxed elementor-section-height-default elementor-section-items-middle elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="b9465ea" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;33c0f67&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-741f06b5 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="741f06b5" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-b5b7c6e content-align-center elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-Site Credits" data-id="b5b7c6e" data-element_type="widget" data-e-type="widget" data-widget_type="Site Credits.default">
				<div class="elementor-widget-container">
					
    <!--  ' . $settings['show_search'] . '   -->


    <div class="elementor-hmg-footer-site-credits text underlinelinks-yes showprivacy showcredits showterms directionrow">
      <div class="sub-footer">© 2026 Doherty Staffing Solutions</div>
      <div class="divider divone">|</div><div class="privacy-link"><a href="/privacy/">Privacy </a></div>
      <div class="divider divtwo">|</div>
        
      
      
      <div class="terms-link"><a href="https://www.doherty.com/accessibility/"> Accessibility </a></div>    
    
    
    
      <div class="divider divthree">|</div><div class="sitecredits">
        <a href="#site_credits_text" id="site_credits" class="text-nowrap">Site Credits</a>
			  <span id="site_credits_text" style="display: none;"><a href="https://www.haleymarketing.com/services/web-development/" target="_blank">Staffing Websites</a> by <a href="https://www.haleymarketing.com" target="_blank" class="text-nowrap">Haley Marketing</a></span>
      </div>
    </div>


    <script>
      jQuery(function() {
        jQuery('#site_credits').click(function(e) {
          e.preventDefault();
          jQuery(this).hide().next('#site_credits_text').fadeIn();
        });
      });
    </script>


    <style>

    </style>
    
    				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-f790923 elementor-section-stretched elementor-section-full_width footer-mobile-menu elementor-hidden-desktop elementor-hidden-tablet ang-section-padding-no elementor-hidden-mobile elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="f790923" data-element_type="section" data-e-type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;d413c7e&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f47147a elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="f47147a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-14d9ee6 elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-template" data-id="14d9ee6" data-element_type="widget" data-e-type="widget" data-widget_type="template.default">
				<div class="elementor-widget-container">
							<div class="elementor-template">
					<div data-elementor-type="section" data-elementor-id="40515" class="elementor elementor-40515 elementor-location-footer" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-2fa98c4 elementor-section-stretched elementor-section-full_width ang-section-padding-no elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="2fa98c4" data-element_type="section" data-e-type="section" data-settings="{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;ce615e0&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c2cf344 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="c2cf344" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-d2138bb elementor-section-boxed ang-section-padding-initial elementor-section-height-default elementor-section-height-default elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="d2138bb" data-element_type="section" data-e-type="section" data-settings="{&quot;jet_parallax_layout_list&quot;:[{&quot;jet_parallax_layout_image&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;_id&quot;:&quot;eb525ff&quot;,&quot;jet_parallax_layout_image_tablet&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_image_mobile&quot;:{&quot;url&quot;:&quot;&quot;,&quot;id&quot;:&quot;&quot;,&quot;size&quot;:&quot;&quot;},&quot;jet_parallax_layout_speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;jet_parallax_layout_type&quot;:&quot;scroll&quot;,&quot;jet_parallax_layout_direction&quot;:&quot;1&quot;,&quot;jet_parallax_layout_fx_direction&quot;:null,&quot;jet_parallax_layout_z_index&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x&quot;:50,&quot;jet_parallax_layout_bg_x_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_x_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y&quot;:50,&quot;jet_parallax_layout_bg_y_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_y_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size&quot;:&quot;auto&quot;,&quot;jet_parallax_layout_bg_size_tablet&quot;:&quot;&quot;,&quot;jet_parallax_layout_bg_size_mobile&quot;:&quot;&quot;,&quot;jet_parallax_layout_animation_prop&quot;:&quot;transform&quot;,&quot;jet_parallax_layout_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}],&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-400838f elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="400838f" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-4eb3d59 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-box" data-id="4eb3d59" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="https://www.doherty.com/temporary-staffing-services/" class="elementor-icon" tabindex="-1" aria-label="Services">
				<i aria-hidden="true" class="far fa-search"></i>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://www.doherty.com/temporary-staffing-services/" >
							Services						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-50ac43f elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="50ac43f" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6d6b3b8 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-box" data-id="6d6b3b8" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/" class="elementor-icon" tabindex="-1" aria-label="Specialties">
				<i aria-hidden="true" class="fas fa-user-plus"></i>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://www.doherty.com/temporary-staffing-services/specialized-staffing/" >
							Specialties						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-55046a8 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="55046a8" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ae1dc40 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-box" data-id="ae1dc40" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="https://www.doherty.com/our-blog/" class="elementor-icon" tabindex="-1" aria-label="Blog">
				<i aria-hidden="true" class="far fa-newspaper"></i>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://www.doherty.com/our-blog/" >
							Blog						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-8f48a11 elementor-repeater-item-none elementor-repeater-item-none_hover" data-id="8f48a11" data-element_type="column" data-e-type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-be6d73f elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-repeater-item-none elementor-repeater-item-none_hover elementor-widget elementor-widget-icon-box" data-id="be6d73f" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="https://www.doherty.com/temporary-staffing/" class="elementor-icon" tabindex="-1" aria-label="Contact Us">
				<i aria-hidden="true" class="fas fa-phone"></i>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://www.doherty.com/temporary-staffing/" >
							Contact Us						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
					</div>
		</div>
					</div>
		</section>
				</div>
				</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</footer>
		
<script type="speculationrules">
{"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/hello-theme-child-master/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<div class="gtranslate_wrapper" id="gt-wrapper-31519838"></div>  <script>
	/*
	// fix menus roles
	jQuery("#primary-menu").attr("role", "menu");
	jQuery("#primary-menu").children().each(function() {
		jQuery(this).attr("role", "menuitem");
	});
	
	// fix possible missing h tags
	jQuery("h1,h2,h3").each(function() {
		var tag = this.tagName.toLowerCase();
		var $this = jQuery(this);
		var $next = $this.next();
		var nextTag = "h2";
		if(tag == "h2") {
			nextTag = "h3";
		}
		else if(tag == "h3") {
			nextTag = "h4";
		}
		if($next.length > 0 && $next.attr("id") != "jbspan") {
			var text = jQuery.trim($next.text());
			if(text != "" && $next[0].tagName.toLowerCase() == "p") {
				jQuery($next[0].outerHTML.replace('<p', '<' + nextTag).replace('<\/p', '</' + nextTag)).insertBefore($next);
			}
			var $n = $next.next();
			$next.remove();
			$next = $n;
			if(nextTag == "h3") {
				nextTag = "h4";
			}
			else if(tag == "h4") {
				nextTag = "h5";
			}
			if($next.length > 0 && $next.attr("id") != "jbspan") {
				var text = $next.text();
				if(text != "" && $next[0].tagName.toLowerCase() == "p") {
					jQuery($next[0].outerHTML.replace('<p', '<' + nextTag).replace('<\/p', '</' + nextTag)).insertBefore($next);
				}
				$next.remove();
			}
		}
	});
	
	// Fix H1, H2, H3 order
	var tagArr = {};
	jQuery("h1,h2,h3,h4").each(function() {
		var tag = this.tagName.toLowerCase();
		var $this = jQuery(this);
		if(tag == "h1") {
			if(typeof tagArr["h2"] !== "undefined" || typeof tagArr["h3"] !== "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h1', '<h2')));
			}
		}
		else if(tag == "h2") {
			if(typeof tagArr["h1"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h2', '<h1')));
			}
			else if(typeof tagArr["h3"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h2', '<h3')));
			}
		}
		else if(tag == "h3") {
			if(typeof tagArr["h1"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h3', '<h1')));
			}
			else if(typeof tagArr["h2"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h3', '<h2')));
			}
		}
		else if(tag == "h4") {
			if(typeof tagArr["h1"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h4', '<h1')));
			}
			else if(typeof tagArr["h2"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h4', '<h2')));
			}
			else if(typeof tagArr["h3"] === "undefined") {
				$this.replaceWith(jQuery(this.outerHTML.replace('<h4', '<h3')));
			}
		}
		tagArr[tag] = "1";
	});	
	jQuery(".footer-widgets h4").each(function() {
		var $this = jQuery(this);
		jQuery($this[0].outerHTML.replace('<h4', '<h3').replace('<\/h4', '</h3')).insertBefore($this);
	});

	// replace empty p tags because they are expected to be h tags
	jQuery("p").each(function() {
		var $this = jQuery(this);
		var html = jQuery.trim($this.html());
		if(html == "") {
			jQuery('<br />').insertBefore($this);
			$this.remove();
		}
	});

	*/
	
	// Fix toggle button with no text
	jQuery(".toggle-button").append('<div style="width:0; overflow:hidden;">toggle</span>');
			
	// remove no script tags
	jQuery("noscript").each(function() {
		jQuery(this).remove();
	});
	
	jQuery(function() {
		setTimeout(function () {
			// Skip Main Content Link Fix
			var $skipMainContent = jQuery(".skip-maincontent");
			if($skipMainContent.length > 0) {
				jQuery('<a class="skip-maincontent" href="#maincontent" onclick="location.href=\"#\' + jQuery(\'article\').attr(\'id\'); return false;">Skip to main content</a>').insertBefore($skipMainContent);
				$skipMainContent.remove();
			}
			
			// Fix empty labels
			var idx = 0;
			jQuery("label").each(function() {
				var $this = jQuery(this);
				var foratt = $this.attr("for");
				if(typeof foratt == "undefined" || foratt == "") {
					var $chld = $this.find("input,textarea,select");
					var forId = "formel" + idx;
					if($chld.length == 0) {
						jQuery('<input type="hidden" id="' + forId + '" />').insertBefore($this.parent()); 
					}
					else {
						var chldId = $chld.attr("id");
						if(typeof chldId == "undefined" || chldId == "") {
							$chld.attr("id", forId);
						}
						else {
							forId = chldId;
						}
					}
					$this.attr("for", forId);
				}
				else if(foratt == "wpf_sidebar_filter_open" || foratt == "wpf_sidebar_filter_low") {
					$this.remove();
				}
				var text = jQuery.trim($this.text());
				if(text == "") {
					var fr = $this.attr("for");
					console.log("for: " + fr);
					if(typeof fr != "undefined") {
						var $elem = jQuery("#" + fr);
						if($elem.length > 0) {
							var placeholder = $elem.attr("placeholder");
							if(typeof placeholder != "undefined") {
								jQuery('<span style="display:block; float:left; width:0; height:0; overflow:hidden;">' + placeholder + '</span>').appendTo($this);
							}
							else {
								jQuery('<span style="display:block; float:left; width:0; height:0; overflow:hidden;">' + fr + '</span>').appendTo($this);
							}
						}
					}
				}
				idx++;
			});

			// Fix form elements without labels
			jQuery("input, select, textarea").each(function() {
				var $this = jQuery(this);
				if($this.attr("type") != "hidden" && $this.attr("type") != "submit") {
					var id = $this.attr("id");
					if(typeof id == "undefined") {
						id = $this.attr("name");
						if(typeof id == "undefined") {
							id = $this.val().replace(/ /g, "");
						}
						$this.attr("id", id);
					}
					var $form = $this.parents("form");
					if($form.find("label[for=" + id + "]").length == 0) {
						//jQuery('<label for="' + id + '" style="display:block; width:0; height:0; overflow:hidden;">' + id + '</label>').insertBefore($this);
					}
					if(typeof $this.attr("aria-label") == "undefined") {
						$this.attr("aria-label", id);
					}
				}
			});

			jQuery(".jbForm #keywords, .jbForm #location, .jbForm #category").each(function() {
				var $this = jQuery(this);
				var id = $this.attr("id");
				jQuery('<label for="' + id + '" style="display:block; width:0; height:0; overflow:hidden;">' + id + '</label>').insertBefore($this);
			});

			// fix duplicate title with text by removing redundant title attribute
			jQuery("*[title]").each(function() {
				var $this = jQuery(this);
				if(jQuery.trim($this.attr("title")) == jQuery.trim($this.text())) {
					$this.removeAttr("title");
				}
			});
			
			// Fix duplicate links (redundant)
			var aArr = {}
			// Fix anchor tags  where the text is empty
			var atags = document.getElementsByTagName("a");

			for(var aIdx = 0; aIdx < atags.length; aIdx++)
			{
				var tag = atags[aIdx];
				var $this = jQuery(tag);
				var text = jQuery.trim(tag.innerText);
				var href = jQuery.trim($this.attr("href"));
				if(text == "") {
					var html = jQuery.trim(tag.innerHTML);
					if(html == "" && tag.title) {
						tag.innerText = tag.title;
					}
					else {
						var text = "";
						var hrefArr = href.split("/");
						if(hrefArr.length > 3) {
							if(hrefArr.length == 4){
								text = hrefArr[3];
							}
							else {
								text = hrefArr[hrefArr.length - 1];
								if(text == "") {
									text = hrefArr[hrefArr.length - 2];
								}
							}
						}
					}
					text = jQuery.trim(text.replace(/-/g, " "));
					if(text == "" || text.indexOf("#") > -1) {
						text = "Home" + aIdx;
					}
					if(text != "") {
						jQuery('<span style="display:block; float:left; width:0; height:0; overflow:hidden;">' + text + '</span>').appendTo(jQuery(tag));
					}
				}

				// Looks for redundant links and appends a # sign with an index
				/*
				4/22/2020 - REMOVED THIS AS IT WAS CAUSING OTHER PROBLEMS
				var anIdx = 0;
				while(typeof aArr[href] !== "undefined") {
					if(anIdx == 0 && href.indexOf("#") == -1) {
						href += "#";
					}
					else {
						href += anIdx;
					}
					anIdx++;
				}
				*/
				aArr[href] = "1";
				if(href.indexOf("#") == 0) {
					if(jQuery(href).length == 0) {
						href = "#";
					}
				}
				$this.attr("href", href);
				$this.css("cursor", "pointer");
				/*
				if(text.indexOf("MORE") > -1 || text.indexOf("More") > -1 || text.indexOf("more") > -1) {
					text = text.replace(" MORE", "").replace(" More", "").replace(" more", "");
					$this.text(text);
				}
				*/
				// Fix more links with ARIA LABELs
				if($this.hasClass("more-link") || $this.hasClass("excerpt-more") || text.indexOf("MORE") > -1 || text.indexOf("More") > -1 || text.indexOf("more") > -1) {
					if($this.parent().find(".elementor-post__title").length > 0) {
						title = $this.parent().find(".elementor-post__title").text();
					} 
					else if($this.parent().hasClass("rpwe-summary")) {
						title = $this.parent().prev().find("a").text();
					}
					else {
						title = $this.parents(".entry-content").prev().find(".entry-title a").text();
					}
					$this.attr("aria-label", "Read about " + title);
					// Remove more as it shows as suspicious link
					//$this.text($this.text().replace(" MORE", "").replace(" More", "").replace(" more", ""));
				}
			}
			
			// Get rid of empty h tags
			jQuery("h1,h2,h3,h4").each(function() {
				var $this = jQuery(this);
				if($this.text() == "") {
					$this.remove();
				}
			});
	
			// Fix img tags with duplicate alt info or missing alt attribute
			var idx = 0;
			var altArr = {};
			jQuery("img").each(function() {
				var $this = jQuery(this);
				var alt = jQuery.trim($this.attr("alt"));
				var oldalt = alt;
				var title = $this.attr("title");
				var src = $this.attr("src");
				var text = $this.text().toLowerCase();

				// fix missing alt tags
				if(typeof alt == "undefined" || alt == "") {
					var srcArr = src.split(".");
					var srcArr = srcArr[srcArr.length-2].split("/");
					$this.attr("alt", "This is " + srcArr[srcArr.length - 1].replace(/-/g, " "));
				}
				
				// Fix img tags where the alt tags are the same			
				var alt1 = alt.toLowerCase().replace(/ /g, "-");
				if(src.toLowerCase().indexOf(alt1) > -1) {
					alt = "This is " + alt;
				}
				if(title == alt) {
					$this.removeAttr("title");
				}
				if(alt1.indexOf(text) > -1 || text.indexOf(alt1) > -1) {
					alt = alt + " 1"
				}
				if(typeof altArr[alt] !== "undefined") {
					alt = alt + idx;
				}
				altArr[alt] = "1";
				if(alt != oldalt) {
					$this.attr("alt", alt);
				}
				idx++;
			});
			
			// Replace underline content
			jQuery("u").each(function() {
				var $this = jQuery(this);
				jQuery($this[0].outerHTML.replace('<u', '<span').replace('<\/u', '</span')).insertBefore($this);
				$this.remove();
			});
			
			// Replace p tags that should be h3 tags
			jQuery("p.elementor-icon-box-title").each(function() {
				var $this = jQuery(this);
				if(jQuery.trim($this.text()) != "") {
					jQuery($this[0].outerHTML.replace('<p', '<h3').replace('<\/p', '</h3')).insertBefore($this);
				}
				$this.remove();
			});
			
			// fix aria-labelledby and aria-describedby references
			jQuery("*[aria-labelledby], *[aria-describedby]").each(function() {
				var $this = jQuery(this);
				var labelby = $this.attr("aria-labelledby");
				var describeby = $this.attr("aria-describedby");
				if(typeof labelby != "undefined" && jQuery.trim(labelby) != "") {
					jQuery('<div id="' + labelby + '" style="display:none;></div>"').appendTo($this);
				}
				else if(typeof describeby != "undefined" && jQuery.trim(describeby) != "") {
					jQuery('<div id="' + describeby + '" style="display:none;"></div>').appendTo($this);
				}
			});
			
			//fix empty buttons
			jQuery("button").each(function() {
				var $this = jQuery(this);
				if(typeof $this.attr("aria-label") !== "undefined") return;
				var text = jQuery.trim($this.text());
				if(text == "") {
					text = $this.attr("title");
					if(typeof text !== "undefined" && text != "") {
						jQuery('<span style="display:block; float:left; width:0; height:0; overflow:hidden;">' + text + '</span>').appendTo($this);
					}
				}
				console.log(text)
				$this.attr("aria-label", "Click here to go to the " + text + " page");
			});
			
			jQuery(".elementor-button").each(function() {
				var $this = jQuery(this);
				var $parent = $this.parents(".elementor-widget-button");
				console.log($parent.length);
				if(typeof $this.attr("aria-label") !== "undefined" || typeof $parent.attr("aria-label") !== "undefined") return;
				var $text = $this.find(".elementor-button-text");
				var text = jQuery.trim(($text.length > 0)? $text.text() : $this.text());
				console.log(text)
				if(text == "") { 
					text = $this.attr("title");
					if(typeof text !== "undefined" && text != "") {
						jQuery('<span style="display:block; float:left; width:0; height:0; overflow:hidden;">' + text + '</span>').appendTo($this);
					}
				}
				$this.attr("aria-label", "Click here to go to the " + text + " page");
			});
			
		}, 300);
	});
	

	// Set nav items to active on Job Boards and Resource Centers 
	jQuery('body.page-remote-job-board-template .elementor-nav-menu .menu-item a:contains("Search Jobs")').addClass('elementor-item-active');
	jQuery('body.page-job-board-template .elementor-nav-menu .menu-item a:contains("Search Jobs")').addClass('elementor-item-active');
	jQuery('body.remote-hml-company-template .elementor-nav-menu .menu-item a:contains("Resources")').addClass('elementor-item-active');
	jQuery('body.remote-hml-default-template .elementor-nav-menu .menu-item a:contains("Resources")').addClass('elementor-item-active');
    jQuery('body.remote-hml-referral-template .elementor-nav-menu .menu-item a:contains("Resources")').addClass('elementor-item-active');

</script>

<!--BEGIN: TRACKING CODE MANAGER (v2.6.0) BY INTELLYWP.COM IN FOOTER//-->
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/7973261.js"></script>
<!-- End of HubSpot Embed Code -->
<!--END: https://wordpress.org/plugins/tracking-code-manager IN FOOTER//--><script>
              (function(e){
                  var el = document.createElement('script');
                  el.setAttribute('data-account', 'YyqBVA7TSQ');
                  el.setAttribute('src', 'https://cdn.userway.org/widget.js');
                  document.body.appendChild(el);
                })();
              </script>					<script type="text/x-template" id="mobile-menu-item-template"><li
	:id="'jet-mobile-menu-item-'+itemDataObject.itemId"
	:class="itemClasses"
>
	<div
		class="jet-mobile-menu__item-inner"
		tabindex="0"
		:aria-label="itemDataObject.name"
        aria-expanded="false"
		v-on:click="itemSubHandler"
		v-on:keyup.enter="itemSubHandler"
	>
		<a
			:class="itemLinkClasses"
			:href="itemDataObject.url"
			:rel="itemDataObject.xfn"
			:title="itemDataObject.attrTitle"
			:target="itemDataObject.target"
		>
			<div class="jet-menu-item-wrapper">
				<div
					class="jet-menu-icon"
					v-if="isIconVisible"
					v-html="itemIconHtml"
				></div>
				<div class="jet-menu-name">
					<span
						class="jet-menu-label"
						v-if="isLabelVisible"
						v-html="itemDataObject.name"
					></span>
					<small
						class="jet-menu-desc"
						v-if="isDescVisible"
						v-html="itemDataObject.description"
					></small>
				</div>
				<div
					class="jet-menu-badge"
					v-if="isBadgeVisible"
				>
					<div class="jet-menu-badge__inner" v-html="itemDataObject.badgeContent"></div>
				</div>
			</div>
		</a>
		<span
			class="jet-dropdown-arrow"
			v-if="isSub && !templateLoadStatus"
			v-html="dropdownIconHtml"
			v-on:click="markerSubHandler"
		>
		</span>
		<div
			class="jet-mobile-menu__template-loader"
			v-if="templateLoadStatus"
		>
			<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="24px" height="25px" viewBox="0 0 128 128" xml:space="preserve">
				<g>
					<linearGradient :id="'linear-gradient-'+itemDataObject.itemId">
						<stop offset="0%" :stop-color="loaderColor" stop-opacity="0"/>
						<stop offset="100%" :stop-color="loaderColor" stop-opacity="1"/>
					</linearGradient>
				<path d="M63.85 0A63.85 63.85 0 1 1 0 63.85 63.85 63.85 0 0 1 63.85 0zm.65 19.5a44 44 0 1 1-44 44 44 44 0 0 1 44-44z" :fill="'url(#linear-gradient-'+itemDataObject.itemId+')'" fill-rule="evenodd"/>
				<animateTransform attributeName="transform" type="rotate" from="0 64 64" to="360 64 64" dur="1080ms" repeatCount="indefinite"></animateTransform>
				</g>
			</svg>
		</div>
	</div>

	<transition name="menu-container-expand-animation">
		<mobile-menu-list
			v-if="isDropdownLayout && subDropdownVisible"
			:depth="depth+1"
			:children-object="itemDataObject.children"
		></mobile-menu-list>
	</transition>

</li>
					</script>					<script type="text/x-template" id="mobile-menu-list-template"><div
	class="jet-mobile-menu__list"
	role="navigation"
>
	<ul class="jet-mobile-menu__items">
		<mobile-menu-item
			v-for="(item, index) in childrenObject"
			:key="item.id"
			:item-data-object="item"
			:depth="depth"
		></mobile-menu-item>
	</ul>
</div>
					</script>					<script type="text/x-template" id="mobile-menu-template"><div
	:class="instanceClass"
	v-on:keyup.esc="escapeKeyHandler"
>
	<div
		class="jet-mobile-menu__toggle"
		role="button"
		ref="toggle"
		tabindex="0"
		aria-label="Open/Close Menu"
        aria-expanded="false"
		v-on:click="menuToggle"
		v-on:keyup.enter="menuToggle"
	>
		<div
			class="jet-mobile-menu__template-loader"
			v-if="toggleLoaderVisible"
		>
			<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="24px" height="25px" viewBox="0 0 128 128" xml:space="preserve">
				<g>
					<linearGradient :id="'linear-gradient-'+itemDataObject.itemId">
						<stop offset="0%" :stop-color="loaderColor" stop-opacity="0"/>
						<stop offset="100%" :stop-color="loaderColor" stop-opacity="1"/>
					</linearGradient>
				<path d="M63.85 0A63.85 63.85 0 1 1 0 63.85 63.85 63.85 0 0 1 63.85 0zm.65 19.5a44 44 0 1 1-44 44 44 44 0 0 1 44-44z" :fill="'url(#linear-gradient-'+itemDataObject.itemId+')'" fill-rule="evenodd"/>
				<animateTransform attributeName="transform" type="rotate" from="0 64 64" to="360 64 64" dur="1080ms" repeatCount="indefinite"></animateTransform>
				</g>
			</svg>
		</div>

		<div
			class="jet-mobile-menu__toggle-icon"
			v-if="!menuOpen && !toggleLoaderVisible"
			v-html="toggleClosedIcon"
		></div>
		<div
			class="jet-mobile-menu__toggle-icon"
			v-if="menuOpen && !toggleLoaderVisible"
			v-html="toggleOpenedIcon"
		></div>
		<span
			class="jet-mobile-menu__toggle-text"
			v-if="toggleText"
			v-html="toggleText"
		></span>

	</div>

	<transition name="cover-animation">
		<div
			class="jet-mobile-menu-cover"
			v-if="menuContainerVisible && coverVisible"
			v-on:click="closeMenu"
		></div>
	</transition>

	<transition :name="showAnimation">
		<div
			class="jet-mobile-menu__container"
			v-if="menuContainerVisible"
		>
			<div
				class="jet-mobile-menu__container-inner"
			>
				<div
					class="jet-mobile-menu__header-template"
					v-if="headerTemplateVisible"
				>
					<div
						class="jet-mobile-menu__header-template-content"
						ref="header-template-content"
						v-html="headerContent"
					></div>
				</div>

				<div
					class="jet-mobile-menu__controls"
                    v-if="isBreadcrumbs || isBack || isClose"
				>
					<div
						class="jet-mobile-menu__breadcrumbs"
						v-if="isBreadcrumbs"
					>
						<div
							class="jet-mobile-menu__breadcrumb"
							v-for="(item, index) in breadcrumbsPathData"
							:key="index"
						>
							<div
								class="breadcrumb-label"
								v-on:click="breadcrumbHandle(index+1)"
								v-html="item"
							></div>
							<div
								class="breadcrumb-divider"
								v-html="breadcrumbIcon"
								v-if="(breadcrumbIcon && index !== breadcrumbsPathData.length-1)"
							></div>
						</div>
					</div>
					<div
						class="jet-mobile-menu__back"
						role="button"
						ref="back"
						tabindex="0"
						aria-label="Close Menu"
                        aria-expanded="false"
						v-if="!isBack && isClose"
						v-html="closeIcon"
						v-on:click="menuToggle"
						v-on:keyup.enter="menuToggle"
					></div>
					<div
						class="jet-mobile-menu__back"
						role="button"
						ref="back"
						tabindex="0"
						aria-label="Back to Prev Items"
                        aria-expanded="false"
						v-if="isBack"
						v-html="backIcon"
						v-on:click="goBack"
						v-on:keyup.enter="goBack"
					></div>
				</div>

				<div
					class="jet-mobile-menu__before-template"
					v-if="beforeTemplateVisible"
				>
					<div
						class="jet-mobile-menu__before-template-content"
						ref="before-template-content"
						v-html="beforeContent"
					></div>
				</div>

				<div
					class="jet-mobile-menu__body"
				>
					<transition :name="animation">
						<mobile-menu-list
							v-if="!templateVisible"
							:key="depth"
							:depth="depth"
							:children-object="itemsList"
						></mobile-menu-list>
						<div
							class="jet-mobile-menu__template"
							ref="template-content"
							v-if="templateVisible"
						>
							<div
								class="jet-mobile-menu__template-content"
								v-html="itemTemplateContent"
							></div>
						</div>
					</transition>
				</div>

				<div
					class="jet-mobile-menu__after-template"
					v-if="afterTemplateVisible"
				>
					<div
						class="jet-mobile-menu__after-template-content"
						ref="after-template-content"
						v-html="afterContent"
					></div>
				</div>

			</div>
		</div>
	</transition>
</div>
					</script>			<script>
				;
				(function($, w) {
					'use strict';
					let $window = $(w);

					$(document).ready(function() {

						let isEnable = "";
						let isEnableLazyMove = "";
						let speed = isEnableLazyMove ? '0.7' : '0.2';

						if( !isEnable ) {
							return;
						}

						if (typeof haCursor == 'undefined' || haCursor == null) {
							initiateHaCursorObject(speed);
						}

						setTimeout(function() {
							let targetCursor = $('.ha-cursor');
							if (targetCursor) {
								if (!isEnable) {
									$('body').removeClass('hm-init-default-cursor-none');
									$('.ha-cursor').addClass('ha-init-hide');
								} else {
									$('body').addClass('hm-init-default-cursor-none');
									$('.ha-cursor').removeClass('ha-init-hide');
								}
							}
						}, 500);

					});

				}(jQuery, window));
			</script>
		
		<style class="wpcode-css-snippet">.hmg-ai-faq-label-a {
    color: #b22727;
}</style><style class="wpcode-css-snippet">.hmg-ai-faq-label-q {
    color: #1c427c;
}</style><link rel='stylesheet' id='elementor-post-40710-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-40710.css?ver=1718681856' media='all' />
<link rel='stylesheet' id='elementor-post-42103-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-42103.css?ver=1718681856' media='all' />
<link rel='stylesheet' id='elementor-post-40746-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-40746.css?ver=1718681856' media='all' />
<link rel='stylesheet' id='elementor-post-40747-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-40747.css?ver=1718681873' media='all' />
<link rel='stylesheet' id='elementor-post-40515-css' href='https://www.doherty.com/wp-content/uploads/elementor/css/post-40515.css?ver=1781747853' media='all' />
<link rel='stylesheet' id='widget-icon-box-css' href='https://www.doherty.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.1.3' media='all' />
<link rel='stylesheet' id='jet-elements-css' href='https://www.doherty.com/wp-content/plugins/jet-elements/assets/css/jet-elements.css?ver=2.7.12.1' media='all' />
<script id="leadin-script-loader-js-js-extra">
var leadin_wordpress = {"userRole":"visitor","pageType":"other","leadinPluginVersion":"11.3.45"};
</script>
<script id="jet-menu-public-scripts-js-extra">
var jetMenuPublicSettings = {"version":"2.4.17","ajaxUrl":"https://www.doherty.com/wp-admin/admin-ajax.php","isMobile":"false","getElementorTemplateApiUrl":"https://www.doherty.com/wp-json/jet-menu-api/v2/get-elementor-template-content","getBlocksTemplateApiUrl":"https://www.doherty.com/wp-json/jet-menu-api/v2/get-blocks-template-content","menuItemsApiUrl":"https://www.doherty.com/wp-json/jet-menu-api/v2/get-menu-items","restNonce":"69a35f53cf","devMode":"false","wpmlLanguageCode":"","menuSettings":{"jetMenuRollUp":"false","jetMenuMouseleaveDelay":500,"jetMenuMegaWidthType":"container","jetMenuMegaWidthSelector":"","jetMenuMegaOpenSubType":"hover","jetMenuMegaAjax":"false"}};
var CxCollectedCSS = {"type":"text/css","title":"cx-collected-dynamic-style","css":".jet-mega-menu-item-40709 \u003E .jet-mega-menu-item__inner \u003E a .jet-mega-menu-item__icon {color:#FFFFFF !important;; }.jet-mega-menu-item-40742 \u003E .jet-mega-menu-item__inner \u003E a .jet-mega-menu-item__icon {color:#FFFFFF !important;; }.jet-mega-menu-item-40741 \u003E .jet-mega-menu-item__inner \u003E a .jet-mega-menu-item__icon {color:#FFFFFF !important;; }.jet-mega-menu-item-40732 \u003E .jet-mega-menu-item__inner \u003E a .jet-mega-menu-item__icon {color:#FFFFFF !important;; }"};
</script>
<script id="elementor-frontend-js-extra">
var EAELImageMaskingConfig = {"svg_dir_url":"https://www.doherty.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/img/image-masking/svg-shapes/"};
</script>
<script id="happy-elementor-addons-js-extra">
var HappyLocalize = {"ajax_url":"https://www.doherty.com/wp-admin/admin-ajax.php","nonce":"a6e920d2f1","pdf_js_lib":"https://www.doherty.com/wp-content/plugins/happy-elementor-addons/assets/vendor/pdfjs/lib"};
</script>
<script id="happy-addons-pro-js-extra">
var HappyProLocalize = {"ajax_url":"https://www.doherty.com/wp-admin/admin-ajax.php","nonce":"a63b8fa0a9"};
</script>
<script id="eael-general-js-extra">
var localize = {"ajaxurl":"https://www.doherty.com/wp-admin/admin-ajax.php","nonce":"e5d6c1821f","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"","cart_redirectition":"","cart_page_url":"","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"ParticleThemesData":{"default":"{\"particles\":{\"number\":{\"value\":160,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":true,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"repulse\"},\"onclick\":{\"enable\":true,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nasa":"{\"particles\":{\"number\":{\"value\":250,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":1,\"random\":true,\"anim\":{\"enable\":true,\"speed\":1,\"opacity_min\":0,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":4,\"size_min\":0.3,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":1,\"direction\":\"none\",\"random\":true,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":600}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":250,\"size\":0,\"duration\":2,\"opacity\":0,\"speed\":3},\"repulse\":{\"distance\":400,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","bubble":"{\"particles\":{\"number\":{\"value\":15,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#1b1e34\"},\"shape\":{\"type\":\"polygon\",\"stroke\":{\"width\":0,\"color\":\"#000\"},\"polygon\":{\"nb_sides\":6},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":50,\"random\":false,\"anim\":{\"enable\":true,\"speed\":10,\"size_min\":40,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":200,\"color\":\"#ffffff\",\"opacity\":1,\"width\":2},\"move\":{\"enable\":true,\"speed\":8,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":false,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","snow":"{\"particles\":{\"number\":{\"value\":450,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#fff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":500,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":2},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"bottom\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":0.5}},\"bubble\":{\"distance\":400,\"size\":4,\"duration\":0.3,\"opacity\":1,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nyan_cat":"{\"particles\":{\"number\":{\"value\":150,\"density\":{\"enable\":false,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"star\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"http://wiki.lexisnexis.com/academic/images/f/fb/Itunes_podcast_icon_300.jpg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":4,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":14,\"direction\":\"left\",\"random\":false,\"straight\":true,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":200,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}"},"eael_login_nonce":"8730822293","eael_register_nonce":"1479cf728a","eael_lostpassword_nonce":"ee39f7d3da","eael_resetpassword_nonce":"8ad20e722a"};
</script>
<script src='https://www.doherty.com/wp-admin/load-scripts.php?c=0&amp;load%5Bchunk_0%5D=wp-hooks,jquery-ui-core&amp;ver=7.0'></script>
<script id="google-map-js" src="https://www.doherty.com/wp-content/plugins/hmg-wptools-storelocator//includes/js/map.js?ver=1.0.0"></script>
<script id="google-api-js" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB46NyOuMu-39dB_WGZVEKcEyg-_hspKsM"></script>
<script id="leadin-script-loader-js-js" src="https://js.hs-scripts.com/7973261.js?integration=WordPress&#038;ver=11.3.45"></script>
<script id="jet-vue-js" src="https://www.doherty.com/wp-content/plugins/jet-menu/assets/public/lib/vue/vue.min.js?ver=2.6.11"></script>
<script id="jet-menu-public-scripts-js" src="https://www.doherty.com/wp-content/plugins/jet-menu/assets/public/js/jet-menu-public-scripts.js?ver=2.4.17"></script>
<script id="jet-menu-public-scripts-js-after">
function CxCSSCollector(){"use strict";var t,e=window.CxCollectedCSS;void 0!==e&&((t=document.createElement("style")).setAttribute("title",e.title),t.setAttribute("type",e.type),t.textContent=e.css,document.head.appendChild(t))}CxCSSCollector();
//# sourceURL=jet-menu-public-scripts-js-after
</script>
<script id="elementor-webpack-runtime-js" src="https://www.doherty.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.1.3"></script>
<script id="elementor-frontend-modules-js" src="https://www.doherty.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.1.3"></script>
<script id="elementor-frontend-js-before">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.1.3","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"theme_builder_v2":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.doherty.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.doherty.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.doherty.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"0cf3424411","atomicFormsSendForm":"7376996b53"},"swiperClass":"swiper","settings":{"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","ha_rpb_enable":"no"},"post":{"id":0,"title":"Page not found - Doherty Staffing Solutions","excerpt":""}};
//# sourceURL=elementor-frontend-js-before
</script>
<script id="elementor-frontend-js" src="https://www.doherty.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.1.3"></script>
<script id="smartmenus-js" src="https://www.doherty.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1"></script>
<script id="e-sticky-js" src="https://www.doherty.com/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=4.1.1"></script>
<script id="your-script-js" src="https://www.doherty.com/wp-content/plugins/hmg-wptools-elementor/assets/js/hmg.js?ver=7.0"></script>
<script id="happy-elementor-addons-js" src="https://www.doherty.com/wp-content/plugins/happy-elementor-addons/assets/js/happy-addons.min.js?ver=3.22.0"></script>
<script id="happy-addons-pro-js" src="https://www.doherty.com/wp-content/plugins/happy-elementor-addons-pro/assets/js/happy-addons-pro.js?ver=3.4.0"></script>
<script id="page-links-to-js" src="https://www.doherty.com/wp-content/plugins/page-links-to/dist/new-tab.js?ver=3.4.1"></script>
<script id="happy-reading-progress-bar-js" src="https://www.doherty.com/wp-content/plugins/happy-elementor-addons/assets/js/extension-reading-progress-bar.min.js?ver=3.22.0"></script>
<script id="eael-general-js" src="https://www.doherty.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.6.7"></script>
<script id="gt_widget_script_31519838-js-before">
window.gtranslateSettings = /* document.write */ window.gtranslateSettings || {};window.gtranslateSettings['31519838'] = {"default_language":"en","languages":["en","hmn","so","es"],"url_structure":"none","flag_style":"2d","flag_size":24,"wrapper_selector":"#gt-wrapper-31519838","alt_flags":{"en":"usa","es":"mexico"},"switcher_open_direction":"top","switcher_horizontal_position":"left","switcher_vertical_position":"bottom","switcher_text_color":"#666","switcher_arrow_color":"#666","switcher_border_color":"#ccc","switcher_background_color":"#fff","switcher_background_shadow_color":"#efefef","switcher_background_hover_color":"#fff","dropdown_text_color":"#000","dropdown_hover_color":"#fff","dropdown_background_color":"#eee","custom_css":".gt_selected a, .gt_option a { color:#000 !important; }","flags_location":"\/wp-content\/plugins\/gtranslate\/flags\/"};
//# sourceURL=gt_widget_script_31519838-js-before
</script><script src="https://www.doherty.com/wp-content/plugins/gtranslate/js/dwf.js?ver=3.1.1" data-no-optimize="1" data-no-minify="1" data-gt-orig-url="/wp-content/uploads/elementor/css/post-40746.css" data-gt-orig-domain="www.doherty.com" data-gt-widget-id="31519838" defer></script><script id="elementor-pro-webpack-runtime-js" src="https://www.doherty.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=4.1.1"></script>
<script id="wp-i18n-js" src="https://www.doherty.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="elementor-pro-frontend-js-before">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.doherty.com\/wp-admin\/admin-ajax.php","nonce":"bb36e8cb3c","urls":{"assets":"https:\/\/www.doherty.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.doherty.com\/wp-json\/"},"settings":{"lazy_load_background_images":false},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.doherty.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
//# sourceURL=elementor-pro-frontend-js-before
</script>
<script id="elementor-pro-frontend-js" src="https://www.doherty.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=4.1.1"></script>
<script id="pro-elements-handlers-js" src="https://www.doherty.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=4.1.1"></script>
<script id="jet-blocks-jsticky-js" src="https://www.doherty.com/wp-content/plugins/jet-blocks/assets/js/lib/jsticky/jquery.jsticky.min.js?ver=1.1.0"></script>
<script id="jet-blocks-js-extra">
var jetBlocksData = {"recaptchaConfig":""};
var JetHamburgerPanelSettings = {"ajaxurl":"https://www.doherty.com/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://www.doherty.com/wp-json/jet-blocks-api/v1/elementor-template","devMode":"false","restNonce":"69a35f53cf"};
//# sourceURL=jet-blocks-js-extra
</script>
<script id="jet-blocks-js" src="https://www.doherty.com/wp-content/plugins/jet-blocks/assets/js/jet-blocks.min.js?ver=1.3.21"></script>
<script id="jet-elements-js-extra">
var jetElements = {"ajaxUrl":"https://www.doherty.com/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://www.doherty.com/wp-json/jet-elements-api/v1/elementor-template","devMode":"false","messages":{"invalidMail":"Please specify a valid e-mail"}};
//# sourceURL=jet-elements-js-extra
</script>
<script id="jet-elements-js" src="https://www.doherty.com/wp-content/plugins/jet-elements/assets/js/jet-elements.min.js?ver=2.7.12.1"></script>
<script id="jet-menu-elementor-widgets-scripts-js" src="https://www.doherty.com/wp-content/plugins/jet-menu/includes/elementor/assets/public/js/widgets-scripts.js?ver=2.4.17"></script>
<script id="jet-tabs-frontend-js-extra">
var JetTabsSettings = {"ajaxurl":"https://www.doherty.com/wp-admin/admin-ajax.php","isMobile":"false","templateApiUrl":"https://www.doherty.com/wp-json/jet-tabs-api/v1/elementor-template","devMode":"false","isSelfRequest":""};
//# sourceURL=jet-tabs-frontend-js-extra
</script>
<script id="jet-tabs-frontend-js" src="https://www.doherty.com/wp-content/plugins/jet-tabs/assets/js/jet-tabs-frontend.min.js?ver=2.2.12"></script>
<script id="font-awesome-pro-js" src="https://kit.fontawesome.com/63cbc8b6b8.js?ver=4.1.1"></script>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/7973261.js"></script>
<!-- End of HubSpot Embed Code -->
</body>
</html>
